diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dd8f49ed4b..a5db9ae27e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,9 +1,34 @@ -Please see [contribution-guide.org](http://www.contribution-guide.org/) for steps we expect from contributors before submitting an issue or bug report. Be as concrete as possible, include relevant logs, package versions etc. +# How to submit an issue? -Please check the [Gensim FAQ](https://github.com/RaRe-Technologies/gensim/wiki/Recipes-&-FAQ) page before posting. +First, please see [contribution-guide.org](http://www.contribution-guide.org/) for the steps we expect from contributors before submitting an issue or bug report. Be as concrete as possible, include relevant logs, package versions etc. -**The proper place for open-ended questions is the [gensim mailing list](https://groups.google.com/forum/#!forum/gensim).** Github is not the right place for research discussions or feature requests. +Also, please check the [Gensim FAQ](https://github.com/RaRe-Technologies/gensim/wiki/Recipes-&-FAQ) page before posting. -For developers: see our [Developer Page](https://github.com/piskvorky/gensim/wiki/Developer-page#code-style) for details on code style, testing and similar. +**The proper place for open-ended questions is the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim).** Github is not the right place for research discussions or feature requests. -Thanks! +# How to add a new feature or create a pull request? + +1. Fork the Gensim repository +2. Clone your fork: `git clone https://github.com//gensim.git` +3. Create a new branch based on `develop`: `git checkout -b my-feature develop` +4. Setup your Python enviroment + - Create a new [virtual environment](https://virtualenv.pypa.io/en/stable/): `pip install virtualenv; virtualenv gensim_env; source gensim_env/bin/activate` + - Install Gensim and its test dependencies in [editable mode](https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs): + - For linux: `pip install -e .[test]` + - For windows: `pip install -e .[test-win]` +5. Implement your changes +6. Check that everything's OK in your branch: + - Check it for PEP8: `tox -e flake8` + - Build its documentation (works only for MacOS/Linux): `tox -e docs` (documentation stored in `docs/src/_build`) + - Run unit tests: `tox -e py{version}-{os}`, for example `tox -e py27-linux` or `tox -e py36-win` where + - `{version}` is one of `27`, `35`, `36` + - `{os}` is either `win` or `linux` +7. Add files, commit and push: `git add ... ; git commit -m "my commit message"; git push origin my-feature` +8. [Create a PR](https://help.github.com/articles/creating-a-pull-request/) on Github. Write a **clear description** for your PR, including all the context and relevant information, such as: + - The issue that you fixed, e.g. `Fixes #123` + - Motivation: why did you create this PR? What functionality did you set out to improve? What was the problem + an overview of how you fixed it? Whom does it affect and how should people use it? + - Any other useful information: links to other related Github or mailing list issues and discussions, benchmark graphs, academic papers… + +P.S. for developers: see our [Developer Page](https://github.com/piskvorky/gensim/wiki/Developer-page#code-style) for details on the Gensim code style, CI, testing and similar. + +**Thanks and let's improve the open source world together!** diff --git a/docs/notebooks/Poincare Evaluation.ipynb b/docs/notebooks/Poincare Evaluation.ipynb index 839e54c760..cffd7c8491 100644 --- a/docs/notebooks/Poincare Evaluation.ipynb +++ b/docs/notebooks/Poincare Evaluation.ipynb @@ -41,14 +41,14 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "/home/jayant/projects/gensim\n" + "/home/jayant/Projects/gensim/gensim\n" ] } ], @@ -58,24 +58,17 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 1, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/home/jayant/projects/gensim/docs/notebooks\n" - ] - } - ], + "outputs": [], "source": [ - "% cd docs/notebooks/" + "# Some libraries need to be installed that are not part of Gensim\n", + "! pip install click>=6.7 nltk>=3.2.5 prettytable>=0.7.2 pygtrie>=2.2" ] }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 71, "metadata": {}, "outputs": [ { @@ -92,7 +85,7 @@ "True" ] }, - "execution_count": 63, + "execution_count": 71, "metadata": {}, "output_type": "execute_result" } @@ -100,6 +93,7 @@ "source": [ "import csv\n", "from collections import OrderedDict\n", + "from IPython.display import display, HTML\n", "import logging\n", "import os\n", "import pickle\n", @@ -123,19 +117,29 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Note that not all the above libraries are part of the gensim dependencies, so they might need to be installed separately. These requirements are listed in the poincare [requirements.txt](poincare/requirements.txt)" + "Please set the variable `parent_directory` below to change the directory to which the repositories are cloned." ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 11, "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/jayant/Projects/gensim/gensim/docs/notebooks\n" + ] + } + ], "source": [ - "Please set the variable `parent_directory` below to change the directory to which the repositories are cloned." + "% cd docs/notebooks/" ] }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -144,7 +148,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -158,14 +162,14 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "/home/jayant/projects/gensim/docs/notebooks/poincare\n" + "/home/jayant/Projects/gensim/gensim/docs/notebooks/poincare\n" ] } ], @@ -192,7 +196,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -246,7 +250,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -265,7 +269,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -280,11 +284,14 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "# Prepare the WordNet data\n", + "# Can also be downloaded directly from -\n", + "# https://github.com/jayantj/gensim/raw/wordnet_data/docs/notebooks/poincare/data/wordnet_noun_hypernyms.tsv\n", + "\n", "wordnet_file = os.path.join(data_directory, 'wordnet_noun_hypernyms.tsv')\n", "if not os.path.exists(wordnet_file):\n", " ! python {parent_directory}/{cpp_repo_name}/scripts/create_wordnet_noun_hierarchy.py {wordnet_file}" @@ -292,7 +299,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 20, "metadata": { "scrolled": true }, @@ -349,7 +356,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ @@ -395,7 +402,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ @@ -407,6 +414,7 @@ " 'eps': 1e-6,\n", " 'burn_in': 0,\n", " 'batch_size': 10,\n", + " 'reg': 0.0\n", "}\n", "\n", "non_default_params = {\n", @@ -418,7 +426,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 23, "metadata": { "scrolled": true }, @@ -470,7 +478,7 @@ " elif implementation == 'gensim':\n", " train_gensim_model(\n", " train_file, output_file, model_size, params['epochs'],\n", - " params['neg'], params['burn_in'], params['batch_size'], seed=0)\n", + " params['neg'], params['burn_in'], params['batch_size'], params['reg'], seed=0)\n", " else:\n", " raise ValueError('Given implementation %s not found' % implementation)\n", " files[model_size] = output_file\n", @@ -479,7 +487,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -520,7 +528,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -529,7 +537,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ @@ -595,17 +603,17 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ "def gensim_model_name_from_params(params, prefix):\n", - " param_keys = ['neg', 'epochs', 'burn_in', 'batch_size']\n", + " param_keys = ['neg', 'epochs', 'burn_in', 'batch_size', 'reg']\n", " name = ['%s_%s' % (key, params[key]) for key in sorted(param_keys)]\n", " return '%s_%s' % (prefix, '_'.join(name))\n", "\n", "def train_gensim_model(\n", - " data_file, output_file, dim, epochs, neg, burn_in, batch_size, seed=0):\n", + " data_file, output_file, dim, epochs, neg, burn_in, batch_size, reg, seed=0):\n", " \"\"\"Train a poincare embedding using gensim implementation\n", " \n", " Args:\n", @@ -616,6 +624,7 @@ " neg (int): Number of negative samples to use\n", " burn_in (int): Number of epochs to use for burn-in initialization\n", " batch_size (int): Size of batch to use for training\n", + " reg (float): Coefficient used for l2-regularization while training\n", " \n", " Notes: \n", " If `output_file` already exists, skips training\n", @@ -624,22 +633,23 @@ " print('File %s exists, skipping' % output_file)\n", " return\n", " train_data = PoincareRelations(data_file)\n", - " model = PoincareModel(train_data, size=dim, negative=neg, burn_in=burn_in)\n", + " model = PoincareModel(train_data, size=dim, negative=neg, burn_in=burn_in, regularization_coeff=reg)\n", " model.train(epochs=epochs, batch_size=batch_size)\n", " model.save(output_file)" ] }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ - "non_default_params_gensim = {\n", - " 'neg': [10],\n", - " 'burn_in': [10],\n", - " 'batch_size': [50]\n", - "}" + "non_default_params_gensim = [\n", + " {'neg': 10,},\n", + " {'burn_in': 10,},\n", + " {'batch_size': 50,},\n", + " {'neg': 10, 'reg': 1, 'burn_in': 10, 'epochs': 200},\n", + "]" ] }, { @@ -655,14 +665,13 @@ "for dim, filepath in files.items():\n", " model_files['gensim'][model_name][dim] = filepath\n", "# Train models with non-default params\n", - "for param, values in non_default_params_gensim.items():\n", + "for new_params in non_default_params_gensim:\n", " params = default_params.copy()\n", - " for value in values:\n", - " params[param] = value\n", - " model_name, files = train_model_with_params(params, wordnet_file, model_sizes, 'gensim_model', 'gensim')\n", - " model_files['gensim'][model_name] = {}\n", - " for dim, filepath in files.items():\n", - " model_files['gensim'][model_name][dim] = filepath" + " params.update(new_params)\n", + " model_name, files = train_model_with_params(params, wordnet_file, model_sizes, 'gensim_model', 'gensim')\n", + " model_files['gensim'][model_name] = {}\n", + " for dim, filepath in files.items():\n", + " model_files['gensim'][model_name][dim] = filepath" ] }, { @@ -674,7 +683,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -796,7 +805,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 176, "metadata": {}, "outputs": [], "source": [ @@ -808,33 +817,46 @@ " results (dict): mapping between embeddings and corresponding results\n", " \n", " \"\"\"\n", - " data = PrettyTable()\n", - " data.field_names = [\"Model Description\", \"Metric\"] + [str(dim) for dim in sorted(model_sizes)]\n", + " result_table = PrettyTable()\n", + " result_table.field_names = [\"Model Description\", \"Metric\"] + [str(dim) for dim in sorted(model_sizes)]\n", " for model_name, model_results in results.items():\n", " metrics = [metric for metric in model_results.keys()]\n", " dims = sorted([dim for dim in model_results[metrics[0]].keys()])\n", - " row = [model_name, '\\n'.join(metrics) + '\\n']\n", + " description = model_description_from_name(model_name)\n", + " row = [description, '\\n'.join(metrics) + '\\n']\n", " for dim in dims:\n", " scores = ['%.2f' % model_results[metric][dim] for metric in metrics]\n", " row.append('\\n'.join(scores))\n", - " data.add_row(row)\n", - " data.align = 'r'\n", - " data_cols = data.get_string().split('\\n')[0].split('+')[1:-1]\n", - " col_lengths = [len(col) for col in data_cols]\n", - " header_col_1_length = col_lengths[0] + col_lengths[1] - 1\n", - " header_col_2_length = sum(col_lengths[2:]) + len(col_lengths[2:-1]) - 2\n", + " result_table.add_row(row)\n", + " result_table.align = 'r'\n", + " result_html = result_table.get_html_string()\n", + " search = \"\"\n", + " insert_at = result_html.index(search) + len(search)\n", + " new_row = \"\"\"\n", + " \n", + " \n", + " \n", + " \n", + " \"\"\" % (task_name, len(model_sizes))\n", + " result_html = result_html[:insert_at] + new_row + result_html[insert_at:]\n", + " display(HTML(result_html))\n", " \n", - " header_col_2_content = \"Model Dimensions\"\n", - " header_col_2_left_margin = (header_col_2_length - len(header_col_2_content)) // 2\n", - " header_col_2_right_margin = header_col_2_length - len(header_col_2_content) - header_col_2_left_margin\n", - " header_col_2_string = \"%s%s%s\" % (\n", - " \" \" * header_col_2_left_margin, header_col_2_content, \" \" * header_col_2_right_margin)\n", - " header = PrettyTable()\n", - " header.field_names = [\" \" * header_col_1_length, header_col_2_string]\n", - " header_lines = header.get_string(start=0, end=0).split(\"\\n\")[:2]\n", - " print('Results for %s task' % task_name)\n", - " print(\"\\n\".join(header_lines))\n", - " print(data) " + "def model_description_from_name(model_name):\n", + " if model_name.startswith('gensim'):\n", + " implementation = 'Gensim'\n", + " elif model_name.startswith('cpp'):\n", + " implementation = 'C++'\n", + " elif model_name.startswith('np'):\n", + " implementation = 'Numpy'\n", + " else:\n", + " raise ValueError('Unsupported implementation for model: %s' % model_name)\n", + " description = []\n", + " for param_key in sorted(default_params.keys()):\n", + " pattern = '%s_([^_]*)_?' % param_key\n", + " match = re.search(pattern, model_name)\n", + " if match:\n", + " description.append(\"%s=%s\" % (param_key, match.groups()[0]))\n", + " return \"%s: %s\" % (implementation, \", \".join(description))" ] }, { @@ -844,9 +866,18 @@ "### 4.1 WordNet reconstruction" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For this task, embeddings are learnt using the entire transitive closure of the WordNet noun hypernym hierarchy. Subsequently, for every hypernym pair `(u, v)`, the rank of `v` amongst all nodes that do not have a positive edge with `v` is computed. The final metric `mean_rank` is the average of all these ranks. The `MAP` metric is the mean of the Average Precision of the rankings for all positive nodes for a given node `u`.\n", + "\n", + "Note that this task tests representation capacity of the learnt embeddings, and not the generalization ability." + ] + }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -880,54 +911,160 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 148, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Results for WordNet Reconstruction task\n", - "+-----------------------------------------------------------------------+----------------------------------------------------------+\n", - "| | Model Dimensions |\n", - "+-----------------------------------------------------------+-----------+----------+---------+---------+---------+--------+--------+\n", - "| Model Description | Metric | 5 | 10 | 20 | 50 | 100 | 200 |\n", - "+-----------------------------------------------------------+-----------+----------+---------+---------+---------+--------+--------+\n", - "| cpp_model_burn_in_10_epochs_50_eps_1e-06_neg_20_threads_8 | mean_rank | 252.86 | 195.73 | 182.57 | 165.33 | 157.37 | 155.78 |\n", - "| | MAP | 0.26 | 0.32 | 0.34 | 0.36 | 0.36 | 0.36 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_0_epochs_50_eps_1e-06_neg_20_threads_8 | mean_rank | 265.72 | 116.94 | 90.81 | 59.47 | 55.14 | 54.31 |\n", - "| | MAP | 0.28 | 0.41 | 0.49 | 0.56 | 0.58 | 0.59 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_0_epochs_50_eps_1e-06_neg_10_threads_8 | mean_rank | 280.17 | 129.46 | 92.06 | 80.41 | 71.42 | 69.30 |\n", - "| | MAP | 0.27 | 0.40 | 0.49 | 0.53 | 0.56 | 0.56 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_0_epochs_200_eps_1e-06_neg_20_threads_8 | mean_rank | 191.69 | 97.65 | 72.07 | 55.48 | 46.76 | 49.62 |\n", - "| | MAP | 0.34 | 0.43 | 0.51 | 0.57 | 0.59 | 0.59 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_0_epochs_50_neg_20 | mean_rank | 154.41 | 62.77 | 27.32 | 20.22 | 16.15 | 13.20 |\n", - "| | MAP | 0.40 | 0.63 | 0.72 | 0.77 | 0.78 | 0.79 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_50_burn_in_0_epochs_50_neg_20 | mean_rank | 148.51 | 63.67 | 28.36 | 20.23 | 15.75 | 13.59 |\n", - "| | MAP | 0.38 | 0.62 | 0.72 | 0.76 | 0.78 | 0.79 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_10_epochs_50_neg_20 | mean_rank | 108.01 | 100.73 | 97.38 | 94.49 | 94.68 | 89.66 |\n", - "| | MAP | 0.37 | 0.47 | 0.48 | 0.49 | 0.48 | 0.49 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_0_epochs_50_neg_10 | mean_rank | 211.71 | 54.42 | 24.90 | 21.42 | 15.80 | 15.13 |\n", - "| | MAP | 0.33 | 0.60 | 0.72 | 0.76 | 0.78 | 0.79 |\n", - "| | | | | | | | |\n", - "| np_model_epochs_50_neg_20 | mean_rank | 10169.24 | 5602.84 | 3631.57 | 1088.31 | 537.43 | 345.45 |\n", - "| | MAP | 0.14 | 0.16 | 0.20 | 0.25 | 0.30 | 0.36 |\n", - "| | | | | | | | |\n", - "+-----------------------------------------------------------+-----------+----------+---------+---------+---------+--------+--------+\n" - ] + "data": { + "text/html": [ + "
%s Dimensions
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
WordNet Reconstruction Dimensions
Model DescriptionMetric5102050100200
C++: burn_in=0, epochs=200, eps=1e-06, neg=20, threads=8mean_rank
MAP
191.69
0.34
97.65
0.43
72.07
0.51
55.48
0.57
46.76
0.59
49.62
0.59
C++: burn_in=0, epochs=50, eps=1e-06, neg=10, threads=8mean_rank
MAP
280.17
0.27
129.46
0.40
92.06
0.49
80.41
0.53
71.42
0.56
69.30
0.56
C++: burn_in=0, epochs=50, eps=1e-06, neg=20, threads=8mean_rank
MAP
265.72
0.28
116.94
0.41
90.81
0.49
59.47
0.56
55.14
0.58
54.31
0.59
C++: burn_in=10, epochs=50, eps=1e-06, neg=20, threads=8mean_rank
MAP
252.86
0.26
195.73
0.32
182.57
0.34
165.33
0.36
157.37
0.36
155.78
0.36
Gensim: batch_size=10, burn_in=10, epochs=50, neg=20, reg=0.0mean_rank
MAP
108.01
0.37
100.73
0.47
97.38
0.48
94.49
0.49
94.68
0.48
89.66
0.49
Gensim: batch_size=10, burn_in=0, epochs=50, neg=20, reg=0.0mean_rank
MAP
154.41
0.40
62.77
0.63
27.32
0.72
20.22
0.77
16.15
0.78
13.20
0.79
Gensim: batch_size=10, burn_in=0, epochs=50, neg=10, reg=0.0mean_rank
MAP
211.71
0.33
54.42
0.60
24.90
0.72
21.42
0.76
15.80
0.78
15.13
0.79
Gensim: batch_size=50, burn_in=0, epochs=50, neg=20, reg=0.0mean_rank
MAP
148.51
0.38
63.67
0.62
28.36
0.72
20.23
0.76
15.75
0.78
13.59
0.79
Gensim: batch_size=10, burn_in=10, epochs=200, neg=10, reg=1mean_rank
MAP
61.48
0.38
54.70
0.41
53.02
0.41
50.80
0.42
49.58
0.42
48.56
0.43
Numpy: epochs=50, neg=20mean_rank
MAP
9617.57
0.14
5902.65
0.16
3868.78
0.19
1117.77
0.25
529.92
0.30
377.45
0.35
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" } ], "source": [ "display_results('WordNet Reconstruction', reconstruction_results)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Results from the paper -\n", + "![Reconstruction Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/reconstruction_paper.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The figures above illustrate a few things - \n", + "1. The gensim implementation does significantly better for all model sizes and hyperparameters than both the other implementations.\n", + "2. The results from the original paper have not been achieved by our implementation. Especially for models with lower dimensions, the paper mentions significantly better mean rank and MAP for the reconstruction task.\n", + "3. Using burn-in and regularization leads to much better results with low model sizes, however the results do not improve significantly with increasing model size. This might have to do with tuning the regularization coefficient, which the paper does not mention." + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -935,6 +1072,15 @@ "### 4.2 WordNet link prediction" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This task is similar to the reconstruction task described above, except that the list of relations is split into a training and testing set, and the mean rank reported is for the edges in the test set.\n", + "\n", + "Therefore, this tests the ability of the model to predict unseen edges between nodes, i.e. generalization ability, as opposed to the representation capacity tested in the Reconstruction task" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -944,7 +1090,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 58, "metadata": {}, "outputs": [], "source": [ @@ -1008,7 +1154,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 59, "metadata": {}, "outputs": [], "source": [ @@ -1042,7 +1188,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 63, "metadata": {}, "outputs": [ { @@ -1066,7 +1212,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 64, "metadata": {}, "outputs": [], "source": [ @@ -1124,14 +1270,13 @@ "for dim, filepath in files.items():\n", " lp_model_files['gensim'][model_name][dim] = filepath\n", "# Train models with non-default params\n", - "for param, values in non_default_params_gensim.items():\n", + "for new_params in non_default_params_gensim:\n", " params = default_params.copy()\n", - " for value in values:\n", - " params[param] = value\n", - " model_name, files = train_model_with_params(params, wordnet_train_file, model_sizes, 'gensim_lp_model', 'gensim')\n", - " lp_model_files['gensim'][model_name] = {}\n", - " for dim, filepath in files.items():\n", - " lp_model_files['gensim'][model_name][dim] = filepath" + " params.update(new_params)\n", + " model_name, files = train_model_with_params(params, wordnet_file, model_sizes, 'gensim_lp_model', 'gensim')\n", + " lp_model_files['gensim'][model_name] = {}\n", + " for dim, filepath in files.items():\n", + " lp_model_files['gensim'][model_name][dim] = filepath" ] }, { @@ -1143,7 +1288,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 89, "metadata": {}, "outputs": [], "source": [ @@ -1173,54 +1318,162 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": 149, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Results for WordNet Link Prediction task\n", - "+--------------------------------------------------------------------------+------------------------------------------------------------+\n", - "| | Model Dimensions |\n", - "+--------------------------------------------------------------+-----------+----------+---------+---------+---------+---------+---------+\n", - "| Model Description | Metric | 5 | 10 | 20 | 50 | 100 | 200 |\n", - "+--------------------------------------------------------------+-----------+----------+---------+---------+---------+---------+---------+\n", - "| cpp_lp_model_burn_in_0_epochs_200_eps_1e-06_neg_20_threads_8 | mean_rank | 218.26 | 99.09 | 60.50 | 52.24 | 60.81 | 69.13 |\n", - "| | MAP | 0.15 | 0.24 | 0.31 | 0.35 | 0.36 | 0.36 |\n", - "| | | | | | | | |\n", - "| cpp_lp_model_burn_in_0_epochs_50_eps_1e-06_neg_10_threads_8 | mean_rank | 230.34 | 123.24 | 75.62 | 65.97 | 55.33 | 56.89 |\n", - "| | MAP | 0.14 | 0.22 | 0.28 | 0.31 | 0.33 | 0.34 |\n", - "| | | | | | | | |\n", - "| cpp_lp_model_burn_in_0_epochs_50_eps_1e-06_neg_20_threads_8 | mean_rank | 687.48 | 281.88 | 72.95 | 57.37 | 52.56 | 61.42 |\n", - "| | MAP | 0.12 | 0.15 | 0.31 | 0.35 | 0.36 | 0.36 |\n", - "| | | | | | | | |\n", - "| cpp_lp_model_burn_in_10_epochs_50_eps_1e-06_neg_20_threads_8 | mean_rank | 236.31 | 214.85 | 193.30 | 180.27 | 169.00 | 163.22 |\n", - "| | MAP | 0.10 | 0.13 | 0.14 | 0.15 | 0.16 | 0.16 |\n", - "| | | | | | | | |\n", - "| gensim_lp_model_batch_size_10_burn_in_0_epochs_50_neg_10 | mean_rank | 141.52 | 58.89 | 31.66 | 22.13 | 21.29 | 19.38 |\n", - "| | MAP | 0.18 | 0.34 | 0.46 | 0.51 | 0.52 | 0.53 |\n", - "| | | | | | | | |\n", - "| gensim_lp_model_batch_size_10_burn_in_0_epochs_50_neg_20 | mean_rank | 121.42 | 52.51 | 24.61 | 19.96 | 20.44 | 19.55 |\n", - "| | MAP | 0.19 | 0.37 | 0.46 | 0.52 | 0.50 | 0.54 |\n", - "| | | | | | | | |\n", - "| gensim_lp_model_batch_size_10_burn_in_10_epochs_50_neg_20 | mean_rank | 154.95 | 138.12 | 122.06 | 117.96 | 112.99 | 110.84 |\n", - "| | MAP | 0.16 | 0.21 | 0.24 | 0.26 | 0.25 | 0.26 |\n", - "| | | | | | | | |\n", - "| gensim_lp_model_batch_size_50_burn_in_0_epochs_50_neg_20 | mean_rank | 144.19 | 53.65 | 25.21 | 20.68 | 21.32 | 18.97 |\n", - "| | MAP | 0.19 | 0.35 | 0.47 | 0.52 | 0.51 | 0.53 |\n", - "| | | | | | | | |\n", - "| np_lp_model_epochs_50_neg_20 | mean_rank | 14100.99 | 7538.02 | 5297.38 | 2365.27 | 1552.72 | 1741.87 |\n", - "| | MAP | 0.00 | 0.02 | 0.03 | 0.08 | 0.10 | 0.13 |\n", - "| | | | | | | | |\n", - "+--------------------------------------------------------------+-----------+----------+---------+---------+---------+---------+---------+\n" - ] + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
WordNet Link Prediction Dimensions
Model DescriptionMetric5102050100200
C++: burn_in=0, epochs=200, eps=1e-06, neg=20, threads=8mean_rank
MAP
218.26
0.15
99.09
0.24
60.50
0.31
52.24
0.35
60.81
0.36
69.13
0.36
C++: burn_in=0, epochs=50, eps=1e-06, neg=20, threads=8mean_rank
MAP
687.48
0.12
281.88
0.15
72.95
0.31
57.37
0.35
52.56
0.36
61.42
0.36
C++: burn_in=0, epochs=50, eps=1e-06, neg=10, threads=8mean_rank
MAP
230.34
0.14
123.24
0.22
75.62
0.28
65.97
0.31
55.33
0.33
56.89
0.34
C++: burn_in=10, epochs=50, eps=1e-06, neg=20, threads=8mean_rank
MAP
236.31
0.10
214.85
0.13
193.30
0.14
180.27
0.15
169.00
0.16
163.22
0.16
Gensim: batch_size=10, burn_in=0, epochs=50, neg=10, reg=0.0mean_rank
MAP
141.52
0.18
58.89
0.34
31.66
0.46
22.13
0.51
21.29
0.52
19.38
0.53
Gensim: batch_size=10, burn_in=0, epochs=50, neg=20, reg=0.0mean_rank
MAP
121.42
0.19
52.51
0.37
24.61
0.46
19.96
0.52
20.44
0.50
19.55
0.54
Gensim: batch_size=50, burn_in=0, epochs=50, neg=20, reg=0.0mean_rank
MAP
144.19
0.19
53.65
0.35
25.21
0.47
20.68
0.52
21.32
0.51
18.97
0.53
Gensim: batch_size=10, burn_in=10, epochs=50, neg=20, reg=0.0mean_rank
MAP
154.95
0.16
138.12
0.21
122.06
0.24
117.96
0.26
112.99
0.25
110.84
0.26
Gensim: batch_size=10, burn_in=10, epochs=200, neg=10, reg=1mean_rank
MAP
51.72
0.22
39.85
0.28
38.60
0.29
36.55
0.30
35.32
0.31
34.66
0.31
Numpy: epochs=50, neg=20mean_rank
MAP
14526.67
0.01
8411.10
0.02
5749.57
0.04
1873.12
0.07
1639.50
0.10
1350.13
0.13
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" } ], "source": [ "display_results('WordNet Link Prediction', lp_results)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Results from the paper -\n", + "![Link Prediction Paper](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/link_prediction_paper.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "These results follow similar trends as the reconstruction results. Repeating here for ease of reading - \n", + "1. The gensim implementation does significantly better for all model sizes and hyperparameters than both the other implementations.\n", + "2. The results from the original paper have not been achieved by our implementation. Especially for models with lower dimensions, the paper mentions significantly better mean rank and MAP for the link prediction task.\n", + "4. Using burn-in and regularization leads to better results with low model sizes, however the results do not improve significantly with increasing model size.\n", + "\n", + "The main difference from the reconstruction results is that mean ranks for link prediction are slightly worse most of the time than the corresponding reconstruction results. This is to be expected, as link prediction is performed on a held-out test set." + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -1228,9 +1481,22 @@ "### 4.3 HyperLex Lexical Entailment" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The Lexical Entailment task is performed using the HyperLex dataset, a collection of 2163 noun pairs and scores that denote \"To what degree is noun A a type of noun Y\". For example - \n", + " \n", + "`girl person 9.85`\n", + "\n", + "These scores are out of 10.\n", + "\n", + "The [spearman's correlation score](https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient) is computed for the predicted and actual similarity scores, with the models trained on the entire WordNet noun hierarchy.\n" + ] + }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 168, "metadata": {}, "outputs": [], "source": [ @@ -1241,7 +1507,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "scrolled": true + }, "outputs": [], "source": [ "for implementation, models in sorted(model_files.items()):\n", @@ -1258,39 +1526,136 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 170, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Results for Lexical Entailment (HyperLex) task\n", - "+----------------------------------------------------------------------+-----------------------------------------+\n", - "| | Model Dimensions |\n", - "+-----------------------------------------------------------+----------+------+------+------+------+------+------+\n", - "| Model Description | Metric | 5 | 10 | 20 | 50 | 100 | 200 |\n", - "+-----------------------------------------------------------+----------+------+------+------+------+------+------+\n", - "| cpp_model_burn_in_0_epochs_50_eps_1e-06_neg_20_threads_8 | spearman | 0.45 | 0.44 | 0.47 | 0.44 | 0.46 | 0.45 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_10_epochs_50_eps_1e-06_neg_20_threads_8 | spearman | 0.42 | 0.42 | 0.44 | 0.44 | 0.44 | 0.45 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_0_epochs_50_eps_1e-06_neg_10_threads_8 | spearman | 0.42 | 0.43 | 0.44 | 0.43 | 0.44 | 0.44 |\n", - "| | | | | | | | |\n", - "| cpp_model_burn_in_0_epochs_200_eps_1e-06_neg_20_threads_8 | spearman | 0.45 | 0.46 | 0.45 | 0.46 | 0.45 | 0.47 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_0_epochs_50_neg_10 | spearman | 0.46 | 0.47 | 0.46 | 0.47 | 0.48 | 0.48 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_50_burn_in_0_epochs_50_neg_20 | spearman | 0.47 | 0.47 | 0.47 | 0.47 | 0.48 | 0.48 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_10_epochs_50_neg_20 | spearman | 0.45 | 0.46 | 0.45 | 0.46 | 0.45 | 0.46 |\n", - "| | | | | | | | |\n", - "| gensim_model_batch_size_10_burn_in_0_epochs_50_neg_20 | spearman | 0.47 | 0.46 | 0.47 | 0.48 | 0.48 | 0.48 |\n", - "| | | | | | | | |\n", - "| np_model_epochs_50_neg_20 | spearman | 0.15 | 0.20 | 0.21 | 0.21 | 0.25 | 0.27 |\n", - "| | | | | | | | |\n", - "+-----------------------------------------------------------+----------+------+------+------+------+------+------+\n" - ] + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Lexical Entailment (HyperLex) Dimensions
Model DescriptionMetric5102050100200
C++: burn_in=0, epochs=200, eps=1e-06, neg=20, threads=8spearman
0.450.460.450.450.450.46
C++: burn_in=0, epochs=50, eps=1e-06, neg=10, threads=8spearman
0.420.410.430.420.430.43
C++: burn_in=0, epochs=50, eps=1e-06, neg=20, threads=8spearman
0.440.430.470.440.450.44
C++: burn_in=10, epochs=50, eps=1e-06, neg=20, threads=8spearman
0.430.420.440.440.440.45
Gensim: batch_size=10, burn_in=10, epochs=50, neg=20, reg=0.0spearman
0.450.460.450.460.450.46
Gensim: batch_size=10, burn_in=0, epochs=50, neg=20, reg=0.0spearman
0.470.450.470.470.480.47
Gensim: batch_size=10, burn_in=0, epochs=50, neg=10, reg=0.0spearman
0.460.460.450.470.470.48
Gensim: batch_size=50, burn_in=0, epochs=50, neg=20, reg=0.0spearman
0.460.460.470.470.480.47
Gensim: batch_size=10, burn_in=10, epochs=200, neg=10, reg=1spearman
0.520.510.510.510.520.51
Numpy: epochs=50, neg=20spearman
0.150.190.200.200.240.26
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" } ], "source": [ @@ -1301,17 +1666,49 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### 4.4 Link Prediction for collaboration networks\n" + "Results from paper (for Poincaré Embeddings, as well as other embeddings from previous papers) - \n", + "![LE Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/entailment_paper.png)" ] }, { - "cell_type": "code", - "execution_count": 68, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Some observations - \n", + "1. We achieve a max spearman score of 0.48, fairly close to the spearman score of 0.512 mentioned in the paper.\n", + "2. The best results are obtained with 20 negative examples, a batch size of 10, and no burn-in, however the differences are too low to make a meaningful conclusion.\n", + "\n", + "However, there are a few ambiguities and caveats - \n", + "1. The paper does not mention which hyperparameters and model size have been used for the above mentioned result. Hence it is possible that the results are achieved with a significantly lower model size than the one we use, which would imply that our implementation still has some way to go.\n", + "2. The same word can have multiple nodes in the WordNet dataset for different senses of the word, and it is unclear in the paper how to decide which node to pick. For the above results, we have gone with the sane default of picking the particular sense that has the maximum similarity score with the target word.\n", + "3. Certain words in the HyperLex dataset seem to be absent from the WordNet data - the paper does not mention any such thing. Pairs containing missing words have been omitted from the evaluation (182/2163).\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.4 Link Prediction on Collaboration Networks\n", + "\n", + "The paper also describes a variant of the Poincaré model to learn embeddings of nodes in a symmetric graph, unlike the WordNet noun hierarchy, which is directed and asymmetric. The datasets used in the paper for this model are scientific collaboration networks, in which the nodes are researchers and an edge represents that the two researchers have co-authored a paper.\n", + "\n", + "This variant has not been implemented yet, and is therefore not a part of our experiments." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 5. Next Steps" + ] + }, + { + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "# TODO - quite tricky, since the loss function used for training the model on this network is different\n", - "# Will require changes to how gradients are calculated in C++ code" + "1. The model can be investigated further to understand why it doesn't produce results as good as the paper. It is possible that this might be due to training details not present in the paper, or due to us incorrectly interpreting some ambiguous parts of the paper. We have not been able to clarify all such ambiguitities in communication with the authors.\n", + "2. Optimizing the training process further - with a model size of 50 dimensions and a dataset with ~700k relations and ~80k nodes, the Gensim implementation takes around 45 seconds to complete an epoch (~15k relations per second), whereas the open source C++ implementation takes around 1/6th the time (~95k relations per second).\n", + "3. Implementing the variant of the model mentioned in the paper for symmetric graphs and evaluating on the scientific collaboration datasets described earlier in the report." ] } ], @@ -1331,7 +1728,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.2" + "version": "3.5.4" } }, "nbformat": 4, diff --git a/docs/notebooks/Poincare Tutorial.ipynb b/docs/notebooks/Poincare Tutorial.ipynb index 88eff23862..c7eeb23b3f 100644 --- a/docs/notebooks/Poincare Tutorial.ipynb +++ b/docs/notebooks/Poincare Tutorial.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "This notebook discusses the motivation and idea behind Poincaré embeddings and demonstrates what kind of operations can be done with them. It also presents quantitative evaluation results on evaluation tasks mentioned in the [original paper](https://arxiv.org/pdf/1705.08039.pdf), and compares them to results obtained from other, non-gensim implementations. Lastly, it tries to provide some intuition behind the nature of the embeddings and hyperbolic space through visualizations." + "This notebook discusses the basic ideas and use-cases for Poincaré embeddings and demonstrates what kind of operations can be done with them. For more comprehensive technical details and results, this [blog post](https://rare-technologies.com/implementing-poincare-embeddings) may be a more appropriate resource." ] }, { @@ -35,7 +35,7 @@ "\n", "The paper also describes a variant of the Poincaré model to learn embeddings of nodes in a symmetric graph, unlike the WordNet noun hierarchy, which is directed and asymmetric. The datasets used in the paper for this model are scientific collaboration networks, in which the nodes are researchers and an edge represents that the two researchers have co-authored a paper.\n", "\n", - "This variant has not been implemented yet, and is therefore not a part of our experiments.\n", + "This variant has not been implemented yet, and is therefore not a part of our tutorial and experiments.\n", "\n", "\n", "### 1.2 Motivation\n", @@ -44,7 +44,7 @@ " \n", " ![Example tree](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/example_tree.png)\n", "\n", - "Here, the positions of nodes represent their position in 2-D euclidean space. Ideally, the distances between the nodes `(A, D)` should be the same as that between `(D, H)` and as that between `H` and its child nodes. Similarly, all the child nodes of `H` must be equally far away from node `A`. It becomes progressively hard to accurately preserve these distances in Euclidean space as the degree and depth of the tree grows larger. Hierarchical structures may also have cross-connections (effectively a directed graph).\n", + "Here, the positions of nodes represent the positions of their vectors in 2-D euclidean space. Ideally, the distances between the vectors for nodes `(A, D)` should be the same as that between `(D, H)` and as that between `H` and its child nodes. Similarly, all the child nodes of `H` must be equally far away from node `A`. It becomes progressively hard to accurately preserve these distances in Euclidean space as the degree and depth of the tree grows larger. Hierarchical structures may also have cross-connections (effectively a directed graph), making this harder.\n", "\n", "There is no representation of this simple tree in 2-dimensional Euclidean space which can reflect these distances correctly. This can be solved by adding more dimensions, but this becomes computationally infeasible as the number of required dimensions grows exponentially. \n", "Hyperbolic space is a metric space in which distances aren't straight lines - they are curves, and this allows such tree-like hierarchical structures to have a representation that captures the distances more accurately even in low dimensions." @@ -71,7 +71,6 @@ } ], "source": [ - "# Import required modules and train an example embedding\n", "% cd ../.." ] }, @@ -668,106886 +667,16 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## 4. Evaluation" + "## 4. Useful Links" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "The following section presents the results of Poincaré models trained using some open-source implementations of the model, as well as the Gensim implementation. Original results as mentioned in the paper are also provided for reference." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following two external, open-source implementations are used - \n", - "1. [C++](https://github.com/TatsuyaShirakawa/poincare-embedding)\n", - "2. [Numpy](https://github.com/nishnik/poincare_embeddings)\n", - "\n", - "This is the list of tasks from the paper that have been evaluated - \n", - "1. WordNet reconstruction\n", - "2. WordNet link prediction\n", - "4. Lexical entailment on HyperLex" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 4.1 WordNet Reconstruction" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For this task, embeddings are learnt using the entire transitive closure of the WordNet noun hypernym hierarchy. Subsequently, for every hypernym pair `(u, v)`, the rank of `v` amongst all nodes that do not have a positive edge with `v` is computed. The final metric `mean_rank` is the average of all these ranks. The `MAP` metric is the mean of the Average Precision of the rankings for all positive nodes for a given node `u`.\n", - "\n", - "Note that this task tests representation capacity of the learnt embeddings, and not the generalization ability.\n", - "\n", - "The prefix in the model names denote - \n", - "1. `cpp_`: Model trained using [open source C++ implementation](https://github.com/TatsuyaShirakawa/poincare-embedding)\n", - "2. `numpy_`: Model trained using [open source Numpy implementation](https://github.com/nishnik/poincare_embeddings)\n", - "3. `gensim_`: Model trained using Gensim implementation\n", - "\n", - "The rest of the model name contains information about the model hyperparameters used for training. \n", - "\n", - "For more details about the exact evaluation method, and to reproduce the results described above, refer to the detailed [evaluation notebook](http://nbviewer.jupyter.org/github/RaRe-Technologies/gensim/blob/9e3190f0e4e38f1c93804feb0a62ce025a8489d3/docs/notebooks/Poincare%20Evaluation.ipynb)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Our results -" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "![Reconstruction Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/reconstruction_eval.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Results from the paper -\n", - "![Reconstruction Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/reconstruction_paper.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The figures above illustrate a few things - \n", - "1. The gensim implementation does significantly better for all model sizes and hyperparameters than both the other implementations.\n", - "2. The results from the original paper have not been achieved completely. Especially for models with lower dimensions, the paper mentions significantly better mean rank and MAP for the reconstruction task.\n", - "3. Using a higher number of negatives or a different batch size does not have a consistently significant impact on the results.\n", - "4. Using burn-in leads to better results with low model sizes, however the results do not improve significantly with increasing model size." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 4.2 Link Prediction" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This task is similar to the reconstruction task described above, except that the list of relations is split into a training and testing set, and the mean rank reported is for the edges in the test set.\n", - "\n", - "Therefore, this tests the ability of the model to predict unseen edges between nodes, i.e. generalization ability, as opposed to the representation capacity tested in the Reconstruction task\n", - "\n", - "Our results -" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "![Link Prediction Eval](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/link_prediction_eval.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "![Link Prediction Paper](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/link_prediction_paper.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "These results follow similar trends to the reconstruction results. Specifically - \n", - "1. The gensim implementation does significantly better for all model sizes and hyperparameters than both the other implementations.\n", - "2. The results from the original paper have not been achieved completely. Especially for models with lower dimensions, the paper mentions significantly better mean rank and MAP for the reconstruction task.\n", - "3. Using a higher number of negatives or a different batch size does not have a consistently significant impact on the results.\n", - "4. Using burn-in leads to better results with low model sizes, however the results do not improve significantly with increasing model size.\n", - "\n", - "The main difference from the reconstruction results is that mean ranks for link prediction are slightly worse most of the time than the corresponding reconstruction results. This is to be expected, as link prediction is performed on a held-out test set." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 4.3 Lexical Entailment" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The Lexical Entailment task is performed using the HyperLex dataset, a collection of 2163 noun pairs and scores that denote \"To what degree is noun A a type of noun Y\". For example - \n", - " \n", - "`girl person 9.85`\n", - "\n", - "These scores are out of 10.\n", - "\n", - "The [spearman's correlation score](https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient) is computed for the predicted and actual similarity scores, with the models trained on the entire WordNet noun hierarchy.\n", - "\n", - "Our results - \n", - "![LE Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/entailment_eval.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Results from paper (for Poincaré Embeddings, as well as other embeddings from previous papers) - \n", - "![LE Results](https://raw.githubusercontent.com/RaRe-Technologies/gensim/poincare_model_keyedvectors/docs/notebooks/poincare/entailment_paper.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Some observations - \n", - "1. We achieve a max spearman score of 0.48, fairly close to the spearman score of 0.512 mentioned in the paper.\n", - "2. The best results are obtained with 20 negative examples, a batch size of 10, and no burn-in, however the differences are too low to make a meaningful conclusion.\n", - "\n", - "However, there are a few ambiguities and caveats - \n", - "1. The paper does not mention which hyperparameters and model size have been used for the above mentioned result. Hence it is possible that the results are achieved with a significantly lower model size than the one we use, which would imply that our implementation still has some way to go.\n", - "2. The same word can have multiple nodes in the WordNet dataset for different senses of the word, and it is unclear in the paper how to decide which node to pick. For the above results, we have gone with the sane default of picking the particular sense that has the maximum similarity score with the target word.\n", - "3. Certain words in the HyperLex dataset seem to be absent from the WordNet data - the paper does not mention any such thing. Pairs containing missing words have been omitted from the evaluation (182/2163).\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 4.4 Link Prediction on Collaboration Networks\n", - "\n", - "The paper also describes a variant of the Poincaré model to learn embeddings of nodes in a symmetric graph, unlike the WordNet noun hierarchy, which is directed and asymmetric. The datasets used in the paper for this model are scientific collaboration networks, in which the nodes are researchers and an edge represents that the two researchers have co-authored a paper.\n", - "\n", - "This variant has not been implemented yet, and is therefore not a part of our experiments." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 5. Visualization" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The paper presents a visual representation of a 2-D model trained on the mammals subtree of the WordNet noun hierarchy. This is a useful tool to get an intuitive sense of the model, and is also helpful for the purposes of debugging where the model could be learning incorrect representations. Visualizations for some models are presented below." - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "" - ], - "text/vnd.plotly.v1+html": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "import pickle\n", - "from plotly.offline import init_notebook_mode, iplot\n", - "from gensim.viz.poincare import poincare_2d_visualization, poincare_distance_heatmap\n", - "\n", - "init_notebook_mode(connected=True)\n", - "\n", - "show_node_labels = [\n", - " 'mammal.n.01', 'placental.n.01', 'ungulate.n.01', 'carnivore.n.01', 'rodent.n.01',\n", - " 'canine.n.02', 'even-toed_ungulate.n.01', 'odd-toed_ungulate.n.01', 'elephant.n.01',\n", - " 'rhinoceros.n.01', 'german_shepherd.n.01', 'feline.n.01', 'tiger.n.02', 'homo_sapiens.n.01']" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [], - "source": [ - "tree = pickle.load(open(os.path.join(poincare_directory, 'data', 'mammal_tree.pkl'), 'rb'))" - ] - }, - { - "cell_type": "code", - "execution_count": 39, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "INFO:gensim.utils:loading PoincareModel object from /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_50_dim_2\n", - "INFO:gensim.utils:loading kv recursively from /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_50_dim_2.kv.* with mmap=None\n", - "INFO:gensim.utils:loaded /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_50_dim_2\n" - ] - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "data": [ - { - "hoverinfo": false, - "line": { - "color": "rgb(50,50,50)", - "width": 1 - }, - "mode": "line", - "type": "scatter", - "x": [ - 0.9101090324281224, - 0.853485929661836, - null, - -0.9407291128909836, - -0.8819992981021165, - null, - -0.6228834651106098, - -0.6538864671676548, - null, - 0.36672545397658274, - 0.36568368561267983, - null, - -0.8537664139583974, - -0.8327985529517911, - null, - 0.9818627292419352, - 0.9793270277030452, - null, - 0.7783296830203222, - 0.7672706048530719, - null, - -0.968515087874084, - -0.8788537149054609, - null, - -0.4531009488314497, - -0.9637056778545955, - null, - 0.38184248330042897, - 0.32663002160501153, - null, - 0.02092683531806175, - 0.01334416509305148, - null, - 0.09143633409549096, - 0.09246575342662332, - null, - 0.923732092474595, - 0.9161098422692239, - null, - -0.18504097268996053, - -0.11766578534896463, - null, - -0.30823203261811455, - 0.0011134916190881743, - null, - 0.8875953526218935, - 0.9051944468253229, - null, - -0.358175204866926, - -0.05792043684262486, - null, - -0.12838363826735272, - -0.11766578534896463, - null, - -0.8110597315642969, - -0.8235680059768541, - null, - -0.8455112181553727, - -0.8235680059768541, - null, - 0.33077758912923455, - 0.3256410430023424, - null, - -0.20096871057290155, - -0.18158340729522776, - null, - 0.8363058463979077, - 0.8086763682931215, - null, - 0.9221097575190369, - 0.8948926994754923, - null, - -0.9541192425477151, - -0.931429017492033, - null, - -0.4885780297841132, - -0.5999637571179371, - null, - -0.4489352162101724, - -0.6538864671676548, - null, - 0.0684099477747966, - 0.09143633409549096, - null, - 0.9343626510187549, - 0.9051944468253229, - null, - -0.8300141477505794, - -0.8522020393283346, - null, - 0.9051944468253229, - 0.8086763682931215, - null, - 0.9037881683075, - 0.9245318633475902, - null, - 0.16641739709372128, - 0.17192822559954982, - null, - -0.8879973603535215, - -0.8819992981021165, - null, - 0.8129849982750982, - 0.759253112977502, - null, - 0.34972810099140544, - 0.32663002160501153, - null, - 0.4130509300268295, - 0.8114235010495762, - null, - -0.9964340708198903, - -0.8235680059768541, - null, - 0.5900659570620586, - 0.853485929661836, - null, - 0.37618147691673376, - 0.36568368561267983, - null, - 0.000667805635279028, - -0.11766578534896463, - null, - 0.04625406407676176, - 0.09143633409549096, - null, - -0.8471622110922167, - -0.6538864671676548, - null, - 0.9451988304055611, - 0.8086763682931215, - null, - 0.03960706500066226, - -0.05792043684262486, - null, - 0.35835520503723306, - 0.4036623559057091, - null, - -0.9176405740509787, - -0.8819992981021165, - null, - 0.9523062123311233, - 0.836543996866388, - null, - -0.9939939504611061, - -0.9637056778545955, - null, - -0.9734647083100604, - -0.9637056778545955, - null, - -0.7296820662847379, - -0.8327985529517911, - null, - 0.3585711980216734, - 0.3574061512134923, - null, - 0.3400021297707763, - 0.3256410430023424, - null, - 0.26340288932000094, - 0.0011134916190881743, - null, - -0.03478677866484911, - -0.06874210120523755, - null, - -0.5563304384265367, - -0.5567740007479328, - null, - -0.05792043684262486, - -0.11766578534896463, - null, - -0.6079692338160575, - -0.6116726510772178, - null, - -0.8883731586895646, - -0.931429017492033, - null, - 0.9737277973417237, - 0.8114235010495762, - null, - -0.4651841049547726, - -0.6538864671676548, - null, - 0.9037528462673847, - 0.9245318633475902, - null, - 0.01475422297192793, - 0.02251238251094826, - null, - -0.9524762005582984, - -0.931429017492033, - null, - -0.11232079678132637, - 0.0011134916190881743, - null, - -0.18158340729522776, - -0.1454037601507695, - null, - -0.059459354925203795, - -0.11766578534896463, - null, - 0.3256410430023424, - 0.3585711980216734, - null, - 0.9633721757588031, - 0.9523062123311233, - null, - -0.173811423307117, - -0.11766578534896463, - null, - -0.7545266074965273, - -0.6538864671676548, - null, - 0.7690079326417105, - 0.9051944468253229, - null, - -0.016471300954378137, - -0.1454037601507695, - null, - -0.7373889935801214, - -0.6538864671676548, - null, - -0.3441131872089003, - 0.0011134916190881743, - null, - -0.9891256365323928, - -0.8788537149054609, - null, - 0.3574061512134923, - 0.0011134916190881743, - null, - 0.8483803385336954, - 0.853485929661836, - null, - 0.31526569137174304, - 0.3256410430023424, - null, - -0.7614540910526604, - -0.8235680059768541, - null, - -0.9445969394521662, - -0.9327201572323893, - null, - 0.9772160229098524, - 0.9793270277030452, - null, - -0.9957543928110523, - -0.8788537149054609, - null, - -0.9084444458347607, - -0.8788537149054609, - null, - 0.9538656169626069, - 0.9245318633475902, - null, - -0.725440494042656, - -0.8788537149054609, - null, - -0.17982890209559196, - -0.1454037601507695, - null, - -0.08519113629415558, - -0.11766578534896463, - null, - -0.6193594716940479, - -0.6116726510772178, - null, - -0.6152434273018587, - -0.6116726510772178, - null, - -0.18246752916666745, - -0.18158340729522776, - null, - -0.9632050360163754, - -0.931429017492033, - null, - 0.3587147682081248, - 0.36568368561267983, - null, - 0.2966168576470394, - 0.4036623559057091, - null, - 0.998266054755471, - 0.9161098422692239, - null, - -0.9822804407123893, - -0.8788537149054609, - null, - 0.7672706048530719, - 0.765461443333198, - null, - 0.8132197263221738, - 0.7690079326417105, - null, - -0.14931539993470677, - 0.0011134916190881743, - null, - -0.3348931250728923, - -0.242863786254013, - null, - 0.9440900251115781, - 0.9245318633475902, - null, - -0.7694055396323011, - -0.8235680059768541, - null, - -0.47105638995962185, - -0.6538864671676548, - null, - -0.9471027587174569, - -0.7907539013593212, - null, - 0.9710167262592919, - 0.9051944468253229, - null, - 0.1466566583164642, - 0.17192822559954982, - null, - 0.9861603615288232, - 0.836543996866388, - null, - 0.9308213301252677, - 0.9245318633475902, - null, - -0.16217044507615574, - -0.11766578534896463, - null, - -0.8235680059768541, - -0.8300141477505794, - null, - -0.5567740007479328, - -0.5573540628942462, - null, - 0.9286323829419101, - 0.9245318633475902, - null, - -0.6794487046400322, - -0.8522020393283346, - null, - -0.6326068072527236, - -0.6116726510772178, - null, - 0.9702463541821122, - 0.9675147970479694, - null, - 0.7526992529135523, - 0.7672706048530719, - null, - 0.9675147970479694, - 0.8114235010495762, - null, - 0.995603963084181, - 0.836543996866388, - null, - -0.17434941130560533, - -0.22870519519148966, - null, - -0.7217748087146, - -0.8300141477505794, - null, - -0.12283325453055656, - -0.17982890209559196, - null, - -0.9101002548253986, - -0.9327201572323893, - null, - -0.1718755821833116, - -0.15848945976903478, - null, - -0.6538864671676548, - 0.0011134916190881743, - null, - 0.759253112977502, - 0.8086763682931215, - null, - -0.15848945976903478, - -0.18158340729522776, - null, - -0.15237776396242866, - -0.18158340729522776, - null, - -0.16414772420324922, - -0.11766578534896463, - null, - -0.6311198558687292, - -0.6538864671676548, - null, - 0.9626885488561224, - 0.9051944468253229, - null, - -0.11372540871447699, - -0.1454037601507695, - null, - 0.24334107126839885, - 0.32663002160501153, - null, - -0.40970251235488114, - -0.11766578534896463, - null, - 0.34914788686861664, - -0.05792043684262486, - null, - -0.18860413544315593, - -0.11766578534896463, - null, - -0.672709155724362, - -0.8300141477505794, - null, - -0.9674204633047192, - -0.9637056778545955, - null, - 0.3346243897266551, - 0.32663002160501153, - null, - -0.8063244487343608, - -0.7907539013593212, - null, - 0.32035875789596946, - 0.32663002160501153, - null, - -0.9141351953533781, - -0.8788537149054609, - null, - -0.931429017492033, - -0.9062337692386333, - null, - -0.18797933070322934, - -0.11766578534896463, - null, - -0.18790758467411903, - -0.15848945976903478, - null, - 0.7323866154721457, - 0.853485929661836, - null, - 0.6828252333690009, - 0.7690079326417105, - null, - 0.5837509976896016, - 0.836543996866388, - null, - -0.3887404265211114, - 0.02251238251094826, - null, - -0.6091168641541991, - 0.0011134916190881743, - null, - 0.9906089896111432, - 0.9245318633475902, - null, - 0.1592832333255315, - 0.17192822559954982, - null, - -0.664766854542371, - -0.6612775182833104, - null, - -0.046317165695467545, - -0.17982890209559196, - null, - 0.8114235010495762, - 0.0011134916190881743, - null, - 0.20310899110479966, - 0.09143633409549096, - null, - 0.9680342296744993, - 0.9675147970479694, - null, - -0.9213786128977516, - -0.9327201572323893, - null, - 0.9077785568345823, - 0.9245318633475902, - null, - -0.9327201572323893, - -0.9223892307976949, - null, - 0.3799315386098274, - 0.7690079326417105, - null, - 0.853485929661836, - 0.883250235191796, - null, - 0.3778100847205484, - 0.3585711980216734, - null, - 0.9551320738293573, - 0.4036623559057091, - null, - -0.9256786889112069, - -0.9327201572323893, - null, - -0.621148927415655, - -0.6116726510772178, - null, - 0.9299961076501118, - 0.9675147970479694, - null, - -0.6119106370174472, - -0.9637056778545955, - null, - -0.9447976795186329, - -0.7907539013593212, - null, - 0.9064639060337292, - 0.9245318633475902, - null, - 0.25120085846447243, - 0.17192822559954982, - null, - 0.9383725499149141, - 0.9245318633475902, - null, - 0.9620758025479503, - 0.9245318633475902, - null, - -0.6609731756172397, - -0.6612775182833104, - null, - -0.08475420777864442, - -0.06874210120523755, - null, - -0.5501664252656703, - -0.6538864671676548, - null, - 0.7376172745809089, - 0.7672706048530719, - null, - 0.8896706246531463, - 0.853485929661836, - null, - -0.1612691065850787, - -0.15848945976903478, - null, - -0.0482013986005767, - -0.05792043684262486, - null, - -0.9917818402603469, - -0.8235680059768541, - null, - -0.9494041048678249, - -0.8788537149054609, - null, - 0.9099708619039507, - 0.9161098422692239, - null, - 0.47552362626781347, - 0.32663002160501153, - null, - 0.7849467287764342, - 0.7672706048530719, - null, - -0.21755628720845616, - -0.242863786254013, - null, - 0.9975317698843188, - 0.7690079326417105, - null, - -0.5845767506144087, - -0.5567740007479328, - null, - -0.9966982707231321, - 0.02251238251094826, - null, - 0.781739054659951, - 0.9245318633475902, - null, - -0.733609498189909, - -0.5567740007479328, - null, - 0.8638214231087208, - 0.853485929661836, - null, - -0.6175047753522888, - -0.5999637571179371, - null, - 0.9023215622063845, - 0.9245318633475902, - null, - 0.0963189148472274, - -0.22870519519148966, - null, - 0.42925935578176483, - 0.4036623559057091, - null, - 0.11265396062976449, - 0.0011134916190881743, - null, - 0.3505898010631597, - 0.3256410430023424, - null, - -0.8327985529517911, - -0.6538864671676548, - null, - 0.9406064687018002, - 0.8948926994754923, - null, - 0.9750207572115357, - 0.9793270277030452, - null, - 0.7687536125174582, - 0.7690079326417105, - null, - -0.7615091142089393, - -0.8819992981021165, - null, - -0.964360801521078, - -0.8300141477505794, - null, - -0.6745401780659362, - -0.6612775182833104, - null, - 0.14427495477666433, - 0.17192822559954982, - null, - -0.593510335686282, - -0.5567740007479328, - null, - 0.7963646810100471, - 0.7690079326417105, - null, - -0.20132892702620678, - -0.242863786254013, - null, - 0.6066904018640342, - 0.8086763682931215, - null, - 0.40560293913023293, - 0.4036623559057091, - null, - 0.12375609949458075, - 0.0011134916190881743, - null, - -0.9327893240761256, - -0.9327201572323893, - null, - -0.12501613636688777, - -0.11766578534896463, - null, - 0.9258623479319273, - 0.9245318633475902, - null, - 0.29901104032256337, - -0.05792043684262486, - null, - -0.11278265261032122, - 0.09143633409549096, - null, - 0.8952485747645101, - 0.853485929661836, - null, - 0.24573851084982712, - 0.3585711980216734, - null, - -0.9148508806546194, - -0.8788537149054609, - null, - -0.6612775182833104, - -0.6603027368942918, - null, - -0.1498968146636564, - -0.15848945976903478, - null, - -0.6990883970718349, - 0.3256410430023424, - null, - 0.9510743748788215, - 0.9245318633475902, - null, - 0.27689017800836874, - 0.0011134916190881743, - null, - 0.9966593275047938, - 0.853485929661836, - null, - 0.9397748189958521, - 0.9126529220856936, - null, - -0.20486450576631174, - -0.17982890209559196, - null, - 0.4306283474420116, - 0.4036623559057091, - null, - -0.28578607520164545, - -0.05792043684262486, - null, - -0.11004895806810547, - -0.05792043684262486, - null, - -0.6579238848950314, - -0.9637056778545955, - null, - 0.9778946845380743, - 0.8086763682931215, - null, - 0.8781567812987823, - 0.853485929661836, - null, - -0.169977372932206, - -0.17982890209559196, - null, - 0.30246008797291546, - 0.3256410430023424, - null, - -0.6639629802933125, - -0.6538864671676548, - null, - 0.8762162964618522, - 0.8948926994754923, - null, - 0.9770506048992308, - 0.9051944468253229, - null, - -0.1454037601507695, - 0.0011134916190881743, - null, - -0.9511699841833033, - -0.9327201572323893, - null, - 0.008585060570211562, - 0.01334416509305148, - null, - -0.10595296332264716, - -0.05792043684262486, - null, - -0.7547139009150146, - -0.8235680059768541, - null, - -0.7073891748333778, - -0.6612775182833104, - null, - 0.9152971648878712, - 0.8948926994754923, - null, - 0.5649692970400236, - 0.5250403757238024, - null, - 0.5377054741986141, - 0.5250403757238024, - null, - 0.9925743016434128, - 0.8086763682931215, - null, - -0.9004902101286182, - -0.6538864671676548, - null, - 0.3839944183707988, - 0.3585711980216734, - null, - -0.6155450933342628, - -0.8522020393283346, - null, - -0.9789791914080362, - -0.8788537149054609, - null, - -0.21474941066500688, - -0.22870519519148966, - null, - 0.9110100664352593, - 0.8948926994754923, - null, - 0.9126529220856936, - 0.883250235191796, - null, - 0.7453851046030103, - 0.759253112977502, - null, - 0.40021618121797237, - 0.36568368561267983, - null, - -0.092197162007686, - -0.05792043684262486, - null, - -0.6666423995318423, - -0.6612775182833104, - null, - 0.5338517185516414, - 0.853485929661836, - null, - -0.6357702540413203, - -0.6538864671676548, - null, - -0.6788356446627137, - -0.6538864671676548, - null, - 0.25786859001538637, - 0.32663002160501153, - null, - 0.27465867331557703, - 0.32663002160501153, - null, - -0.2192730549457475, - -0.11766578534896463, - null, - 0.8458988887976188, - 0.8086763682931215, - null, - -0.20551726518864571, - -0.18158340729522776, - null, - 0.3477654307575736, - 0.4036623559057091, - null, - 0.046623932379199866, - 0.0011134916190881743, - null, - 0.40593673014125237, - 0.3585711980216734, - null, - 0.734791118030596, - 0.759253112977502, - null, - 0.015929679452021478, - 0.0011134916190881743, - null, - 0.6173124903426869, - 0.8086763682931215, - null, - 0.8742454478768802, - 0.853485929661836, - null, - 0.8086763682931215, - 0.836543996866388, - null, - -0.1952765327357657, - -0.18158340729522776, - null, - -0.8991886666570506, - -0.8788537149054609, - null, - 0.9319408847357407, - 0.8948926994754923, - null, - 0.07816671311319524, - 0.17192822559954982, - null, - -0.9478278713777591, - -0.931429017492033, - null, - -0.6597057433033624, - -0.6612775182833104, - null, - 0.8273478630971501, - 0.853485929661836, - null, - -0.9836603353193191, - -0.8235680059768541, - null, - 0.47982796742148515, - 0.02251238251094826, - null, - 0.49393173221833875, - 0.9051944468253229, - null, - 0.8938395624867447, - 0.8948926994754923, - null, - 0.7645284701577063, - 0.853485929661836, - null, - -0.9597995071780279, - -0.8788537149054609, - null, - 0.3706354094274809, - 0.36568368561267983, - null, - 0.8691689137408012, - 0.853485929661836, - null, - 0.9264224431455251, - 0.9126529220856936, - null, - 0.09246575342662332, - 0.0011134916190881743, - null, - -0.10956033054833053, - -0.06874210120523755, - null, - 0.7993555418257448, - 0.9126529220856936, - null, - -0.8036362168573965, - -0.8327985529517911, - null, - -0.30634945744827663, - 0.0011134916190881743, - null, - -0.35632297040777694, - -0.6538864671676548, - null, - 0.6448193226810157, - 0.9523062123311233, - null, - -0.07087440877923777, - -0.1454037601507695, - null, - 0.8974450219712709, - 0.8114235010495762, - null, - 0.9872353730484801, - 0.8086763682931215, - null, - 0.9505486101689207, - 0.8086763682931215, - null, - -0.8404701961822163, - -0.8235680059768541, - null, - -0.8734576622765294, - -0.8327985529517911, - null, - 0.3592943991391435, - 0.32663002160501153, - null, - 0.10760133154427953, - 0.0011134916190881743, - null, - 0.9405542320325793, - 0.9245318633475902, - null, - -0.3262916214294585, - -0.1454037601507695, - null, - -0.9895611659641376, - -0.8235680059768541, - null, - 0.14815224661013204, - -0.11766578534896463, - null, - -0.4351539902171908, - -0.242863786254013, - null, - 0.9761738161820765, - 0.8114235010495762, - null, - -0.19848905395630564, - -0.22870519519148966, - null, - -0.6764208963964584, - -0.6538864671676548, - null, - 0.9793270277030452, - 0.9761738161820765, - null, - -0.6598477250541271, - -0.6538864671676548, - null, - -0.6082177804126212, - -0.6538864671676548, - null, - -0.9558936188515157, - -0.8788537149054609, - null, - -0.8173129730870858, - -0.8235680059768541, - null, - -0.09786633771815927, - -0.05792043684262486, - null, - -0.2738070710634078, - -0.242863786254013, - null, - -0.8843685821295586, - -0.8788537149054609, - null, - -0.08183786352869014, - -0.05792043684262486, - null, - 0.9746254444541224, - 0.759253112977502, - null, - -0.5682152429245976, - -0.8522020393283346, - null, - 0.40372030449654206, - 0.4036623559057091, - null, - -0.2212577676687313, - -0.22870519519148966, - null, - 0.9790383187806231, - 0.9051944468253229, - null, - -0.2134770539596995, - -0.17982890209559196, - null, - 0.9300321743384997, - 0.9126529220856936, - null, - 0.8003280073997295, - 0.7690079326417105, - null, - -0.8778746962129065, - -0.8788537149054609, - null, - -0.9041990879932897, - -0.8788537149054609, - null, - -0.9736139040065432, - -0.931429017492033, - null, - 0.8424345855374461, - 0.853485929661836, - null, - 0.8077643734318739, - 0.8948926994754923, - null, - 0.39583128960440417, - 0.32663002160501153, - null, - 0.4312042771832626, - 0.4036623559057091, - null, - 0.6510840957387394, - 0.9523062123311233, - null, - -0.18187535860874807, - -0.11766578534896463, - null, - 0.9776752564010651, - 0.9793270277030452, - null, - 0.5568958035526673, - 0.5250403757238024, - null, - -0.9199519431035917, - -0.8300141477505794, - null, - -0.7694258882851048, - -0.6538864671676548, - null, - -0.9119023032644122, - -0.8788537149054609, - null, - -0.20654809656148052, - -0.22870519519148966, - null, - 0.07160236898517672, - 0.17192822559954982, - null, - 0.02179045540542287, - 0.0011134916190881743, - null, - -0.801764609721018, - -0.6538864671676548, - null, - -0.8224703125601096, - -0.8235680059768541, - null, - 0.022538722652180584, - 0.01334416509305148, - null, - 0.6063084510684417, - 0.5250403757238024, - null, - -0.5564948328595789, - -0.5567740007479328, - null, - 0.7667737822658895, - 0.7672706048530719, - null, - -0.12452988887561592, - -0.05792043684262486, - null, - -0.8745927850949659, - -0.8235680059768541, - null, - -0.242863786254013, - -0.22870519519148966, - null, - -0.7479850165600649, - -0.7907539013593212, - null, - 0.9824782949019251, - 0.9793270277030452, - null, - -0.9893729408276729, - -0.8522020393283346, - null, - 0.13387439029408332, - 0.09143633409549096, - null, - -0.06874210120523755, - -0.02773507370941186, - null, - 0.36148152832055347, - 0.32663002160501153, - null, - -0.7014652428191334, - -0.6538864671676548, - null, - 0.36568368561267983, - 0.3585711980216734, - null, - -0.18783857192666423, - -0.17982890209559196, - null, - 0.9641195872942044, - 0.9675147970479694, - null, - 0.5250403757238024, - 0.4130509300268295, - null, - 0.9845810150141905, - 0.9523062123311233, - null, - -0.9062337692386333, - -0.8819992981021165, - null, - -0.6925075564477744, - -0.6538864671676548, - null, - 0.4900911361066418, - -0.242863786254013, - null, - 0.7582820672491464, - 0.759253112977502, - null, - 0.8964855132468422, - 0.8948926994754923, - null, - 0.8300039338265706, - 0.8086763682931215, - null, - 0.9908073632444883, - 0.9051944468253229, - null, - -0.6664146554903143, - -0.6538864671676548, - null, - 0.17192822559954982, - -0.02773507370941186, - null, - 0.9686899515392694, - 0.9675147970479694, - null, - -0.5598123355432647, - -0.5567740007479328, - null, - 0.023479676454673463, - 0.02251238251094826, - null, - 0.4964676260600164, - 0.5250403757238024, - null, - -0.6716702723701161, - -0.7907539013593212, - null, - -0.5952874830930838, - -0.5999637571179371, - null, - 0.3586087262566987, - 0.36568368561267983, - null, - 0.8976844073668931, - 0.853485929661836, - null, - 0.6665097587234606, - 0.0011134916190881743, - null, - 0.7867387433957275, - 0.0011134916190881743, - null, - -0.7741204072834909, - -0.6538864671676548, - null, - 0.9161098422692239, - 0.9126529220856936, - null, - -0.011095794374814325, - 0.02251238251094826, - null, - -0.7462905680658812, - -0.6538864671676548, - null, - -0.8471590454742413, - -0.931429017492033, - null, - 0.36177843726035713, - 0.36568368561267983, - null, - 0.08955315765009067, - -0.11766578534896463, - null, - 0.9185616055974037, - 0.9126529220856936, - null, - 0.9482593841595772, - 0.9245318633475902, - null, - -0.15732493027101713, - -0.17982890209559196, - null, - 0.8271020022763987, - 0.8086763682931215, - null, - 0.9396634626937009, - 0.9523062123311233, - null, - -0.5162011997488081, - -0.5567740007479328, - null, - 0.9934074781892495, - 0.836543996866388, - null, - 0.8568823548140259, - 0.853485929661836, - null, - 0.8856004840337757, - 0.8948926994754923, - null, - -0.14677165107117415, - -0.15848945976903478, - null, - 0.9464001134746323, - 0.853485929661836, - null, - 0.33327433190976535, - 0.36568368561267983, - null, - -0.16445188665289895, - -0.15848945976903478, - null, - 0.32663002160501153, - 0.35525438435172124, - null, - -0.8059818308933928, - -0.6538864671676548, - null, - -0.640703219574129, - -0.5999637571179371, - null, - -0.851396621565208, - -0.8235680059768541, - null, - -0.06524949352434725, - -0.11766578534896463, - null, - 0.009866929552433885, - 0.01334416509305148, - null, - -0.9356773954850975, - -0.9327201572323893, - null, - -0.08535470646330069, - -0.06874210120523755, - null, - -0.02773507370941186, - -0.1454037601507695, - null, - -0.1067863983749858, - -0.1454037601507695, - null, - 0.9625348011563483, - 0.9051944468253229, - null, - 0.9588818223887815, - 0.9675147970479694, - null, - 0.3653924982702554, - 0.32663002160501153, - null, - 0.9245318633475902, - 0.883250235191796, - null, - 0.934698698235261, - 0.8948926994754923, - null, - -0.6128842834280918, - -0.8522020393283346, - null, - 0.9328002419704328, - 0.9161098422692239, - null, - 0.7629554942006909, - 0.7672706048530719, - null, - -0.05121478838993914, - -0.11766578534896463, - null, - 0.15317402020826476, - 0.17192822559954982, - null, - 0.9817604321343908, - 0.9051944468253229, - null, - 0.6284951769594328, - -0.6538864671676548, - null, - -0.9223892307976949, - -0.8819992981021165, - null, - 0.044184503510398467, - 0.01334416509305148, - null, - -0.11766578534896463, - -0.1415871246230958, - null, - 0.883250235191796, - 0.8086763682931215, - null, - -0.9796206482815043, - -0.8235680059768541, - null, - -0.2702858621433818, - -0.11766578534896463, - null, - -0.1355883490812521, - -0.242863786254013, - null, - -0.16491520857580133, - -0.11766578534896463, - null, - 0.6439066978012409, - 0.9523062123311233, - null, - 0.8948926994754923, - 0.8114235010495762, - null, - 0.39156102455709946, - 0.32663002160501153, - null, - 0.9142865988759515, - 0.8948926994754923, - null, - 0.08008534604413359, - -0.11766578534896463, - null, - 0.13772599206692368, - 0.09143633409549096, - null, - -0.2469083936810109, - 0.0011134916190881743, - null, - 0.41624861836450805, - 0.3256410430023424, - null, - 0.7093867930432098, - 0.853485929661836, - null, - 0.8628576552954281, - 0.853485929661836, - null, - -0.8991200421199151, - 0.4036623559057091, - null, - -0.6603027368942918, - -0.6538864671676548, - null, - 0.07346377997001889, - 0.09143633409549096, - null, - 0.41572968502145907, - 0.4036623559057091, - null, - 0.7286093605183982, - 0.836543996866388, - null, - -0.13420304856317294, - 0.0011134916190881743, - null, - 0.9969118442103789, - 0.9051944468253229, - null, - -0.6099571151168804, - -0.6116726510772178, - null, - -0.9637056778545955, - -0.8522020393283346, - null, - 0.5330945893393028, - 0.5250403757238024, - null, - 0.8856694985491379, - 0.9051944468253229, - null, - -0.8324336467043453, - -0.8327985529517911, - null, - -0.02058522123644432, - -0.05792043684262486, - null, - 0.9836561983059009, - 0.853485929661836, - null, - 0.03777713827955518, - 0.01334416509305148, - null, - -0.4347932815057972, - 0.0011134916190881743, - null, - 0.01334416509305148, - 0.021341682605918552, - null, - -0.14403283977959055, - -0.11766578534896463, - null, - 0.9681338462234235, - 0.853485929661836, - null, - -0.9399856381453807, - -0.931429017492033, - null, - -0.9350739549344544, - -0.931429017492033, - null, - 0.8139424784955048, - 0.7690079326417105, - null, - -0.707122417519346, - -0.6538864671676548, - null, - 0.008177204820034275, - -0.05792043684262486, - null, - -0.8522020393283346, - -0.6091168641541991, - null, - -0.282902106830859, - -0.1454037601507695, - null, - -0.5999637571179371, - -0.6538864671676548, - null, - -0.8697432182040369, - -0.8235680059768541, - null, - -0.0650818202373351, - -0.05792043684262486, - null, - -0.749654813960226, - 0.0011134916190881743, - null, - -0.9189750185452458, - -0.8819992981021165, - null, - 0.6746752609816048, - 0.9051944468253229, - null, - 0.9616561009953164, - 0.9675147970479694, - null, - -0.054005085866975576, - -0.06874210120523755, - null, - -0.0011002305523296562, - 0.0011134916190881743, - null, - 0.39900994178439786, - 0.36568368561267983, - null, - 0.4993224051949013, - 0.5250403757238024, - null, - 0.9831658192882896, - 0.8086763682931215, - null, - 0.8304494616104036, - 0.9245318633475902, - null, - 0.7884158055798423, - 0.759253112977502, - null, - -0.9065238954630347, - -0.931429017492033, - null, - 0.4857810510294665, - 0.5250403757238024, - null, - -0.0765758256823875, - -0.06874210120523755, - null, - -0.13807260580389014, - 0.0011134916190881743, - null, - -0.7129654633094669, - -0.5999637571179371, - null, - 0.9112762566624417, - 0.9161098422692239, - null, - 0.836543996866388, - 0.8114235010495762, - null, - -0.1664268363562787, - -0.242863786254013, - null, - -0.8788537149054609, - -0.8819992981021165, - null, - 0.9233380317345233, - 0.9161098422692239, - null, - 0.2821749590184319, - -0.22870519519148966, - null, - 0.5427675903650874, - 0.9051944468253229, - null, - 0.9606846271360252, - 0.9161098422692239, - null, - 0.9662400243722675, - 0.9793270277030452, - null, - 0.7705515456836209, - 0.7672706048530719, - null, - -0.4323779447347779, - -0.22870519519148966, - null, - 0.1612943281669796, - 0.0011134916190881743, - null, - -0.9986317712180888, - -0.8819992981021165, - null, - 0.0011134916190881743, - -0.05009285016206634, - null, - -0.14653977890414124, - -0.15848945976903478, - null, - 0.5870475211511049, - 0.5250403757238024, - null, - -0.7914170331494211, - -0.8819992981021165, - null, - 0.35559190560825193, - 0.36568368561267983, - null, - 0.9917922499313508, - 0.853485929661836, - null, - -0.9765155030381473, - -0.931429017492033, - null, - -0.46029166605489946, - -0.6538864671676548, - null, - 0.9969725787617116, - 0.759253112977502, - null, - 0.6756870197272722, - 0.8948926994754923, - null, - -0.7796956497337004, - -0.6538864671676548, - null, - 0.35919442256916856, - 0.36568368561267983, - null, - -0.5658139398607481, - -0.5567740007479328, - null, - 0.962061302809412, - 0.9523062123311233, - null, - -0.3310329596974608, - -0.11766578534896463, - null, - -0.9687579843082434, - -0.7907539013593212, - null, - 0.8296638360253082, - 0.8086763682931215, - null, - -0.2446706440953814, - -0.18158340729522776, - null, - 0.22391650936254118, - -0.11766578534896463, - null, - 0.11262703842421666, - -0.11766578534896463, - null, - -0.8943953555305807, - -0.8788537149054609, - null, - -0.26092269251323696, - -0.242863786254013, - null, - 0.32554975265463126, - 0.32663002160501153, - null, - -0.21427079293566054, - -0.17982890209559196, - null, - -0.6196281223536386, - -0.5999637571179371, - null, - 0.914978958565154, - 0.9245318633475902, - null, - 0.9708137557266253, - 0.9793270277030452, - null, - -0.8847373915226049, - -0.6538864671676548, - null, - -0.82456126456365, - -0.7907539013593212, - null, - -0.8506057578968449, - -0.8788537149054609, - null, - 0.7169934527238376, - 0.8086763682931215, - null, - -0.8711842953843709, - -0.8327985529517911, - null, - 0.7299151158025518, - 0.8086763682931215, - null, - -0.07477735034106478, - -0.05792043684262486, - null, - -0.02825359241986993, - -0.06874210120523755, - null, - -0.06945525296007063, - -0.05792043684262486, - null, - 0.7916887935575735, - 0.7690079326417105, - null, - -0.7559125249579005, - -0.8788537149054609, - null, - 0.9376735495387799, - 0.9245318633475902, - null, - -0.22870519519148966, - -0.11766578534896463, - null, - -0.942718296129557, - -0.7907539013593212, - null, - -0.6116726510772178, - -0.5999637571179371, - null, - -0.06014284163606666, - -0.06874210120523755, - null, - -0.12354023361253569, - -0.22870519519148966, - null, - -0.6057596920677157, - -0.6116726510772178, - null, - -0.24697700850497833, - -0.242863786254013, - null, - 0.02251238251094826, - 0.000667805635279028, - null, - 0.7843122945005728, - 0.7690079326417105, - null, - -0.22798671981099658, - -0.242863786254013, - null, - -0.6457882941791647, - -0.6612775182833104, - null, - -0.6840614042245091, - -0.6538864671676548, - null, - 0.3987220726429306, - 0.4036623559057091, - null, - 0.46467502368469604, - 0.4036623559057091, - null, - 0.04892987953025137, - 0.02251238251094826, - null, - -0.9362779269849172, - -0.9327201572323893, - null, - 0.8833541012084342, - 0.853485929661836, - null, - -0.15083972998937453, - -0.11766578534896463, - null, - -0.7907539013593212, - -0.931429017492033, - null, - 0.05656592176331238, - 0.17192822559954982, - null, - -0.9915529383966363, - -0.9327201572323893, - null, - 0.35242347056901163, - 0.3585711980216734, - null, - 0.017479658845747842, - 0.01334416509305148, - null, - 0.9560361803759482, - 0.9126529220856936, - null, - -0.177773288952659, - -0.17982890209559196, - null, - 0.3719769532892577, - 0.36568368561267983, - null, - -0.92118671488853, - -0.8788537149054609, - null, - -0.8819992981021165, - -0.8300141477505794, - null, - 0.9333323715560133, - 0.8948926994754923, - null, - 0.3635950721101053, - 0.32663002160501153, - null, - -0.979086811025485, - -0.9637056778545955, - null, - 0.7762191703288358, - 0.7672706048530719, - null, - 0.32715778742894464, - 0.3256410430023424, - null, - -0.3787472820444968, - -0.11766578534896463, - null, - -0.7397893296160513, - -0.6538864671676548, - null, - -0.6580944760694807, - -0.6612775182833104, - null, - 0.7163374221684395, - 0.7690079326417105, - null, - 0.18282770089503006, - 0.17192822559954982, - null, - 0.29215446139092954, - 0.32663002160501153, - null, - 0.4036623559057091, - 0.35525438435172124, - null, - 0.9638250130653662, - 0.9523062123311233, - null - ], - "y": [ - -0.4081966964438171, - -0.48044538178097274, - null, - 0.3267244576080792, - 0.3477296882225672, - null, - -0.730432187556969, - -0.6733524915400829, - null, - -0.9273649056418386, - -0.9273029373422139, - null, - -0.5147389345600197, - -0.5429937642824804, - null, - 0.06149738641641838, - 0.17124893565094365, - null, - 0.6264011565228998, - 0.6346600771238696, - null, - 0.24097715615951437, - 0.41494189202012693, - null, - -0.8743788220763331, - 0.04043002232915425, - null, - 0.922346236647553, - 0.9323362741884803, - null, - -0.9972484933811276, - -0.9966717949769558, - null, - -0.8427047200664053, - -0.7920220579576052, - null, - -0.3796002759474494, - -0.3761997091659869, - null, - 0.9648118289480534, - 0.9429959347173451, - null, - -0.6994382721717278, - -0.22921785273901052, - null, - -0.4344692858125368, - -0.21545661065228044, - null, - 0.9316279459397654, - 0.9800016702803844, - null, - 0.9850173464296249, - 0.9429959347173451, - null, - 0.5783439397823029, - 0.5193257693326359, - null, - 0.5219208503916154, - 0.5193257693326359, - null, - -0.939090033985266, - -0.9366302180608017, - null, - -0.9763548386895636, - -0.9740614572100874, - null, - -0.5382378289513975, - -0.3841336101333821, - null, - 0.3563669701881995, - 0.4026492086149087, - null, - 0.29760967054487764, - 0.28697953098749346, - null, - -0.8647284524954223, - -0.7790808125507963, - null, - -0.8872820236591518, - -0.6733524915400829, - null, - -0.7385694308646891, - -0.8427047200664053, - null, - -0.3057624006692187, - -0.21545661065228044, - null, - 0.3625818121152379, - 0.34156328555733406, - null, - -0.21545661065228044, - -0.3841336101333821, - null, - -0.41788601680808996, - -0.344938551965082, - null, - -0.9818423059882716, - -0.9691718254328148, - null, - 0.4532137177953334, - 0.3477296882225672, - null, - -0.5768031533780641, - -0.6362907256677447, - null, - 0.9119179132677037, - 0.9323362741884803, - null, - 0.8742963214884965, - -0.1704662310667489, - null, - 0.013443171712731877, - 0.5193257693326359, - null, - -0.8035254593515502, - -0.48044538178097274, - null, - -0.9198327170760974, - -0.9273029373422139, - null, - 0.9845251575054128, - 0.9429959347173451, - null, - -0.7802656560832668, - -0.8427047200664053, - null, - -0.4987479251448542, - -0.6733524915400829, - null, - -0.25723015794092463, - -0.3841336101333821, - null, - 0.997963471668817, - 0.9800016702803844, - null, - 0.9298034212440007, - 0.8769615172042697, - null, - 0.3869213953996835, - 0.3477296882225672, - null, - -0.13105435450902375, - -0.33804467666624216, - null, - 0.027650074166835206, - 0.04043002232915425, - null, - 0.06333568638198932, - 0.04043002232915425, - null, - -0.6782586767413671, - -0.5429937642824804, - null, - -0.9240619382705461, - -0.9210858999611112, - null, - -0.9349980827234035, - -0.9366302180608017, - null, - -0.7414598065414671, - -0.22921785273901052, - null, - -0.9955785482465723, - -0.991906016480079, - null, - -0.8227996735636478, - -0.8204117348975157, - null, - 0.9800016702803844, - 0.9429959347173451, - null, - -0.7860656071258892, - -0.7861021762096927, - null, - 0.45491699007786557, - 0.28697953098749346, - null, - 0.16995603146447177, - -0.1704662310667489, - null, - -0.8582773427004956, - -0.6733524915400829, - null, - -0.4221043908448422, - -0.344938551965082, - null, - 0.9988908037160034, - 0.9864751610008337, - null, - 0.30203746535072684, - 0.28697953098749346, - null, - -0.2952766392980146, - -0.22921785273901052, - null, - -0.9740614572100874, - -0.9472765725654566, - null, - 0.9944582750221188, - 0.9429959347173451, - null, - -0.9366302180608017, - -0.9240619382705461, - null, - -0.0887942970442988, - -0.13105435450902375, - null, - 0.9821097150722305, - 0.9429959347173451, - null, - -0.6399788781046556, - -0.6733524915400829, - null, - -0.6090919489939511, - -0.21545661065228044, - null, - -0.9759329562069681, - -0.9472765725654566, - null, - -0.5658644766273987, - -0.6733524915400829, - null, - -0.4090643562949676, - -0.22921785273901052, - null, - 0.09830848722754892, - 0.41494189202012693, - null, - -0.9210858999611112, - -0.22921785273901052, - null, - -0.5276532203981913, - -0.48044538178097274, - null, - -0.9439804260428855, - -0.9366302180608017, - null, - 0.645249679047681, - 0.5193257693326359, - null, - 0.32676786158691273, - 0.3528620670256753, - null, - 0.17208438869656886, - 0.17124893565094365, - null, - 0.06056006642170832, - 0.41494189202012693, - null, - 0.41404648309675274, - 0.41494189202012693, - null, - -0.29360110754451024, - -0.344938551965082, - null, - 0.6856776042338637, - 0.41494189202012693, - null, - -0.9704765454509768, - -0.9472765725654566, - null, - 0.9876538372823792, - 0.9429959347173451, - null, - -0.7799895821771066, - -0.7861021762096927, - null, - -0.7826991198547363, - -0.7861021762096927, - null, - -0.9763802013333597, - -0.9740614572100874, - null, - 0.22380199752312657, - 0.28697953098749346, - null, - -0.9277636074179624, - -0.9273029373422139, - null, - 0.9492466778250417, - 0.8769615172042697, - null, - 0.03695753861529057, - -0.3761997091659869, - null, - -0.17518322068283879, - 0.41494189202012693, - null, - 0.6346600771238696, - 0.6355427483289763, - null, - -0.5779320769586906, - -0.6090919489939511, - null, - -0.8940895560366243, - -0.22921785273901052, - null, - 0.9408586425395125, - 0.9614565232159409, - null, - -0.3269508659088606, - -0.344938551965082, - null, - 0.6339993597919305, - 0.5193257693326359, - null, - -0.7389753422087345, - -0.6733524915400829, - null, - -0.31509484047540476, - 0.5738724701749537, - null, - -0.22708100568422862, - -0.21545661065228044, - null, - -0.9830934512383405, - -0.9691718254328148, - null, - -0.09891921489266553, - -0.33804467666624216, - null, - -0.36008630876887543, - -0.344938551965082, - null, - 0.9794977002071137, - 0.9429959347173451, - null, - 0.5193257693326359, - 0.3625818121152379, - null, - -0.8204117348975157, - -0.8190244973880275, - null, - -0.36429752387663844, - -0.344938551965082, - null, - 0.728054957528689, - 0.34156328555733406, - null, - -0.770643848801302, - -0.7861021762096927, - null, - 0.23200092656111343, - 0.23100910482546727, - null, - 0.6556112670776465, - 0.6346600771238696, - null, - 0.23100910482546727, - -0.1704662310667489, - null, - -0.03210266663990664, - -0.33804467666624216, - null, - 0.98353113199693, - 0.9581921233803322, - null, - 0.5853355402178327, - 0.3625818121152379, - null, - -0.9711967625979409, - -0.9704765454509768, - null, - 0.41265592070860346, - 0.3528620670256753, - null, - -0.9830595621358947, - -0.9814380665244195, - null, - -0.6733524915400829, - -0.22921785273901052, - null, - -0.6362907256677447, - -0.3841336101333821, - null, - -0.9814380665244195, - -0.9740614572100874, - null, - -0.9810427848943691, - -0.9740614572100874, - null, - 0.9842531508546319, - 0.9429959347173451, - null, - -0.6371884805347138, - -0.6733524915400829, - null, - -0.24138481848784515, - -0.21545661065228044, - null, - -0.9845654454095891, - -0.9472765725654566, - null, - 0.9633486487581095, - 0.9323362741884803, - null, - 0.9041019775891317, - 0.9429959347173451, - null, - -0.9354731419900295, - 0.9800016702803844, - null, - 0.9809994863619697, - 0.9429959347173451, - null, - 0.6972076327941037, - 0.3625818121152379, - null, - 0.05425370903862663, - 0.04043002232915425, - null, - 0.939513892099173, - 0.9323362741884803, - null, - 0.5899906299627287, - 0.5738724701749537, - null, - 0.9441729448871917, - 0.9323362741884803, - null, - -0.4003058277738374, - 0.41494189202012693, - null, - 0.28697953098749346, - 0.2688607079202031, - null, - 0.9794874200100583, - 0.9429959347173451, - null, - -0.9773333992303539, - -0.9814380665244195, - null, - -0.6780051316959183, - -0.48044538178097274, - null, - -0.7262110056692437, - -0.6090919489939511, - null, - -0.8021240254536641, - -0.33804467666624216, - null, - 0.9174338021307439, - 0.9864751610008337, - null, - 0.4297787177007882, - -0.22921785273901052, - null, - -0.13060827494076538, - -0.344938551965082, - null, - -0.983122096764506, - -0.9691718254328148, - null, - -0.7434946220768659, - -0.745352706744639, - null, - -0.9718590551107088, - -0.9704765454509768, - null, - -0.1704662310667489, - -0.22921785273901052, - null, - -0.7435966683368184, - -0.8427047200664053, - null, - 0.22365904341167045, - 0.23100910482546727, - null, - 0.38742269697294, - 0.3528620670256753, - null, - -0.4158346954232737, - -0.344938551965082, - null, - 0.3528620670256753, - 0.3463822498380838, - null, - -0.9231869744082916, - -0.6090919489939511, - null, - -0.48044538178097274, - -0.38431573402189395, - null, - -0.9133694967784286, - -0.9240619382705461, - null, - 0.2855382024271887, - 0.8769615172042697, - null, - 0.377268858804264, - 0.3528620670256753, - null, - -0.7781343826716214, - -0.7861021762096927, - null, - 0.27875569330129824, - 0.23100910482546727, - null, - 0.7583690514115937, - 0.04043002232915425, - null, - 0.3236601656796271, - 0.5738724701749537, - null, - -0.41853306191246004, - -0.344938551965082, - null, - -0.9621204946659245, - -0.9691718254328148, - null, - -0.3428316273384551, - -0.344938551965082, - null, - -0.2684650620447498, - -0.344938551965082, - null, - -0.7464394961015065, - -0.745352706744639, - null, - -0.989208805499306, - -0.991906016480079, - null, - -0.7712832285617899, - -0.6733524915400829, - null, - 0.6727085560766426, - 0.6346600771238696, - null, - -0.45213212595820523, - -0.48044538178097274, - null, - -0.9844131515190868, - -0.9814380665244195, - null, - 0.9976601659601576, - 0.9800016702803844, - null, - 0.11143280068958586, - 0.5193257693326359, - null, - 0.3026882242212258, - 0.41494189202012693, - null, - -0.4103097640777708, - -0.3761997091659869, - null, - 0.8760388442288287, - 0.9323362741884803, - null, - 0.6181114681469885, - 0.6346600771238696, - null, - 0.9752251550907872, - 0.9614565232159409, - null, - -0.05247117665964974, - -0.6090919489939511, - null, - -0.803829449652192, - -0.8204117348975157, - null, - -0.041989333617261745, - 0.9864751610008337, - null, - -0.6220191951263087, - -0.344938551965082, - null, - -0.6730713587218484, - -0.8204117348975157, - null, - -0.5022099682247565, - -0.48044538178097274, - null, - -0.761133962450917, - -0.7790808125507963, - null, - -0.41938111870091577, - -0.344938551965082, - null, - 0.9935505012051782, - 0.9581921233803322, - null, - 0.8924631690523049, - 0.8769615172042697, - null, - -0.9913368108290679, - -0.22921785273901052, - null, - -0.9244352413392254, - -0.9366302180608017, - null, - -0.5429937642824804, - -0.6733524915400829, - null, - 0.3225244787764121, - 0.4026492086149087, - null, - 0.1819465368482061, - 0.17124893565094365, - null, - -0.637499589103001, - -0.6090919489939511, - null, - 0.6009025637437962, - 0.3477296882225672, - null, - 0.2572362110302912, - 0.3625818121152379, - null, - -0.7337049168037938, - -0.745352706744639, - null, - -0.9819260448301116, - -0.9691718254328148, - null, - -0.8006968629317246, - -0.8204117348975157, - null, - -0.6030651178131273, - -0.6090919489939511, - null, - 0.9786299462205497, - 0.9614565232159409, - null, - -0.7874872352451482, - -0.3841336101333821, - null, - 0.8989428568458022, - 0.8769615172042697, - null, - -0.8389702406016704, - -0.22921785273901052, - null, - 0.3589427725833222, - 0.3528620670256753, - null, - 0.9905810378000434, - 0.9429959347173451, - null, - -0.3538113056908575, - -0.344938551965082, - null, - 0.9528632591153559, - 0.9800016702803844, - null, - -0.08578907841101656, - -0.8427047200664053, - null, - -0.4433865206135067, - -0.48044538178097274, - null, - -0.9579740634003018, - -0.9240619382705461, - null, - 0.39684330160682474, - 0.41494189202012693, - null, - -0.745352706744639, - -0.7456324884637221, - null, - -0.9830197301159899, - -0.9814380665244195, - null, - -0.7107785938559013, - -0.9366302180608017, - null, - -0.3060756646731436, - -0.344938551965082, - null, - -0.262919935404877, - -0.22921785273901052, - null, - -0.05986017669654027, - -0.48044538178097274, - null, - -0.3226458052396107, - -0.34613069590058526, - null, - -0.951566101650515, - -0.9704765454509768, - null, - 0.8912779745628261, - 0.8769615172042697, - null, - 0.9565928291889818, - 0.9800016702803844, - null, - 0.9910878013109895, - 0.9800016702803844, - null, - 0.7372167298804176, - 0.04043002232915425, - null, - -0.19139842457217654, - -0.3841336101333821, - null, - -0.4765114467263938, - -0.48044538178097274, - null, - -0.9511473145856298, - -0.9704765454509768, - null, - -0.9481329874791489, - -0.9366302180608017, - null, - -0.7170237886375944, - -0.6733524915400829, - null, - 0.46655565194035414, - 0.4026492086149087, - null, - -0.20132467480232136, - -0.21545661065228044, - null, - -0.9472765725654566, - -0.22921785273901052, - null, - 0.30586562917868326, - 0.3528620670256753, - null, - -0.9968346291856655, - -0.9966717949769558, - null, - 0.9935110397497144, - 0.9800016702803844, - null, - 0.6527068002902687, - 0.5193257693326359, - null, - -0.7019744593306004, - -0.745352706744639, - null, - 0.35879050168774806, - 0.4026492086149087, - null, - 0.8198179218769531, - 0.8382147336610137, - null, - 0.8344115220357227, - 0.8382147336610137, - null, - -0.10702441415410972, - -0.3841336101333821, - null, - -0.4166356416646905, - -0.6733524915400829, - null, - -0.9196436493526728, - -0.9240619382705461, - null, - 0.7772826813837531, - 0.34156328555733406, - null, - 0.1739860882631492, - 0.41494189202012693, - null, - 0.9756379010608555, - 0.9581921233803322, - null, - 0.4017248127910581, - 0.4026492086149087, - null, - -0.34613069590058526, - -0.38431573402189395, - null, - -0.6620730699950849, - -0.6362907256677447, - null, - -0.9100767123523125, - -0.9273029373422139, - null, - 0.9725080460403414, - 0.9800016702803844, - null, - -0.7407734986216908, - -0.745352706744639, - null, - -0.8359864152742323, - -0.48044538178097274, - null, - -0.6995765100919469, - -0.6733524915400829, - null, - -0.6968433764459173, - -0.6733524915400829, - null, - 0.9504592342392334, - 0.9323362741884803, - null, - 0.9568014916737386, - 0.9323362741884803, - null, - 0.9472247560619873, - 0.9429959347173451, - null, - -0.5256335180539625, - -0.3841336101333821, - null, - -0.9749294728094064, - -0.9740614572100874, - null, - 0.9332902963543958, - 0.8769615172042697, - null, - -0.8519530802703029, - -0.22921785273901052, - null, - -0.9089870980095534, - -0.9240619382705461, - null, - -0.6764144331032096, - -0.6362907256677447, - null, - 0.17530159470644638, - -0.22921785273901052, - null, - -0.7471762146520804, - -0.3841336101333821, - null, - -0.4839661403118066, - -0.48044538178097274, - null, - -0.3841336101333821, - -0.33804467666624216, - null, - -0.9695472912714163, - -0.9740614572100874, - null, - 0.43516876511719704, - 0.41494189202012693, - null, - 0.3484804464844777, - 0.4026492086149087, - null, - -0.9918093386944117, - -0.9691718254328148, - null, - 0.3149647141319306, - 0.28697953098749346, - null, - -0.7474709852026187, - -0.745352706744639, - null, - -0.560016701818856, - -0.48044538178097274, - null, - 0.14948186364616217, - 0.5193257693326359, - null, - 0.8757873787149706, - 0.9864751610008337, - null, - -0.865963668539226, - -0.21545661065228044, - null, - 0.43201917520752314, - 0.4026492086149087, - null, - -0.6426980604477012, - -0.48044538178097274, - null, - 0.2762877712000619, - 0.41494189202012693, - null, - -0.9196090707802554, - -0.9273029373422139, - null, - -0.49100678625213895, - -0.48044538178097274, - null, - -0.374654195437827, - -0.34613069590058526, - null, - -0.7920220579576052, - -0.22921785273901052, - null, - -0.9912967859281763, - -0.991906016480079, - null, - -0.5993004734052512, - -0.34613069590058526, - null, - -0.5864894065298017, - -0.5429937642824804, - null, - -0.835548969824328, - -0.22921785273901052, - null, - -0.9198577625750696, - -0.6733524915400829, - null, - 0.7585336167967268, - -0.13105435450902375, - null, - -0.9584682820417387, - -0.9472765725654566, - null, - 0.2846172370316595, - -0.1704662310667489, - null, - -0.11179372386452141, - -0.3841336101333821, - null, - -0.2427186118777309, - -0.3841336101333821, - null, - 0.5370098953686752, - 0.5193257693326359, - null, - -0.47656589657385595, - -0.5429937642824804, - null, - 0.929544437578113, - 0.9323362741884803, - null, - -0.9863683947755496, - -0.22921785273901052, - null, - -0.33440820050043996, - -0.344938551965082, - null, - -0.9386951756349645, - -0.9472765725654566, - null, - 0.12320262970080395, - 0.5193257693326359, - null, - 0.9750990484048865, - 0.9429959347173451, - null, - 0.8989790627599097, - 0.9614565232159409, - null, - 0.16265946939974996, - -0.1704662310667489, - null, - 0.9785823919751527, - 0.9581921233803322, - null, - -0.6961761827333119, - -0.6733524915400829, - null, - 0.17124893565094365, - 0.16265946939974996, - null, - -0.6700439614228991, - -0.6733524915400829, - null, - -0.695983804960952, - -0.6733524915400829, - null, - 0.2790108148004248, - 0.41494189202012693, - null, - 0.5560219501247491, - 0.5193257693326359, - null, - 0.9942944905483233, - 0.9800016702803844, - null, - 0.960543097275265, - 0.9614565232159409, - null, - 0.4644991134953013, - 0.41494189202012693, - null, - 0.9955823054572349, - 0.9800016702803844, - null, - -0.20378901688702253, - -0.6362907256677447, - null, - 0.8012347554251382, - 0.34156328555733406, - null, - 0.907822596273389, - 0.8769615172042697, - null, - 0.9735160988483818, - 0.9581921233803322, - null, - -0.19404648456596316, - -0.21545661065228044, - null, - -0.9605761978664632, - -0.9704765454509768, - null, - -0.36388146432695606, - -0.34613069590058526, - null, - -0.5967484208156618, - -0.6090919489939511, - null, - 0.476734148239911, - 0.41494189202012693, - null, - 0.4245018745887121, - 0.41494189202012693, - null, - 0.22175174300170009, - 0.28697953098749346, - null, - -0.5305908553664683, - -0.48044538178097274, - null, - 0.5247598839846849, - 0.4026492086149087, - null, - 0.9133058184509976, - 0.9323362741884803, - null, - 0.8965916541292179, - 0.8769615172042697, - null, - -0.7443731438826771, - -0.13105435450902375, - null, - 0.9737771397420847, - 0.9429959347173451, - null, - 0.14166120180962577, - 0.17124893565094365, - null, - 0.8240171009311944, - 0.8382147336610137, - null, - 0.32847503286466373, - 0.3625818121152379, - null, - -0.6005848488318677, - -0.6733524915400829, - null, - 0.405779390100723, - 0.41494189202012693, - null, - 0.9774832989356227, - 0.9581921233803322, - null, - -0.992872137021109, - -0.9691718254328148, - null, - -0.9911854678059377, - -0.22921785273901052, - null, - -0.5565194910948881, - -0.6733524915400829, - null, - 0.5552996994146897, - 0.5193257693326359, - null, - -0.9967360610784409, - -0.9966717949769558, - null, - 0.7785428099522232, - 0.8382147336610137, - null, - -0.8255352482725563, - -0.8204117348975157, - null, - 0.6401164993166405, - 0.6346600771238696, - null, - 0.9880854123921798, - 0.9800016702803844, - null, - 0.4805656153941708, - 0.5193257693326359, - null, - 0.9614565232159409, - 0.9581921233803322, - null, - 0.6623677555732086, - 0.5738724701749537, - null, - 0.11878879133615299, - 0.17124893565094365, - null, - -0.011023279198043955, - 0.34156328555733406, - null, - -0.8203083785155271, - -0.8427047200664053, - null, - -0.991906016480079, - -0.964376392104647, - null, - 0.9305688523556219, - 0.9323362741884803, - null, - -0.6881216644384623, - -0.6733524915400829, - null, - -0.9273029373422139, - -0.9240619382705461, - null, - -0.9543838379489611, - -0.9704765454509768, - null, - 0.22822350181895637, - 0.23100910482546727, - null, - 0.8382147336610137, - 0.8742963214884965, - null, - -0.1549755215420347, - -0.13105435450902375, - null, - 0.2688607079202031, - 0.3477296882225672, - null, - -0.6246050016124599, - -0.6733524915400829, - null, - -0.863529288180807, - 0.9614565232159409, - null, - -0.6470152046096903, - -0.6362907256677447, - null, - 0.4032954046913027, - 0.4026492086149087, - null, - -0.5479177320034826, - -0.3841336101333821, - null, - 0.018836647011728918, - -0.21545661065228044, - null, - -0.7248464334425573, - -0.6733524915400829, - null, - -0.9691718254328148, - -0.964376392104647, - null, - 0.22675930362588084, - 0.23100910482546727, - null, - -0.8226322062604003, - -0.8204117348975157, - null, - 0.99834740168838, - 0.9864751610008337, - null, - 0.8629274478078235, - 0.8382147336610137, - null, - 0.7390120593012005, - 0.5738724701749537, - null, - -0.7964407301239446, - -0.7790808125507963, - null, - -0.926726322349091, - -0.9273029373422139, - null, - -0.436637777316808, - -0.48044538178097274, - null, - 0.7156186212660368, - -0.22921785273901052, - null, - 0.5880550096485834, - -0.22921785273901052, - null, - -0.6208887621815442, - -0.6733524915400829, - null, - -0.3761997091659869, - -0.34613069590058526, - null, - 0.9989450542688384, - 0.9864751610008337, - null, - -0.594863439182959, - -0.6733524915400829, - null, - 0.5302011587217889, - 0.28697953098749346, - null, - -0.9298298795468334, - -0.9273029373422139, - null, - 0.993014229217671, - 0.9429959347173451, - null, - -0.38129884025919236, - -0.34613069590058526, - null, - -0.31389587127295443, - -0.344938551965082, - null, - -0.9672476900325908, - -0.9704765454509768, - null, - -0.5163750450782332, - -0.3841336101333821, - null, - -0.14781879233508366, - -0.13105435450902375, - null, - -0.8525772530550826, - -0.8204117348975157, - null, - 0.07240179691136847, - -0.33804467666624216, - null, - -0.5140707393652417, - -0.48044538178097274, - null, - 0.4110628481612498, - 0.4026492086149087, - null, - -0.9861077544399057, - -0.9814380665244195, - null, - -0.31861388857558715, - -0.48044538178097274, - null, - -0.9375689569784036, - -0.9273029373422139, - null, - -0.98044317732211, - -0.9814380665244195, - null, - 0.9323362741884803, - 0.9067287012733201, - null, - -0.5761577198994456, - -0.6733524915400829, - null, - -0.7580144186878631, - -0.7790808125507963, - null, - 0.5157470876786571, - 0.5193257693326359, - null, - 0.9948291457145735, - 0.9429959347173451, - null, - -0.9983902596649425, - -0.9966717949769558, - null, - 0.3504637686542823, - 0.3528620670256753, - null, - -0.9876034305191363, - -0.991906016480079, - null, - -0.964376392104647, - -0.9472765725654566, - null, - -0.9727009778009383, - -0.9472765725654566, - null, - -0.25270416807327517, - -0.21545661065228044, - null, - 0.2627654146298554, - 0.23100910482546727, - null, - 0.9216408804333217, - 0.9323362741884803, - null, - -0.344938551965082, - -0.38431573402189395, - null, - 0.3171001003031346, - 0.4026492086149087, - null, - 0.7733294622093728, - 0.34156328555733406, - null, - -0.3580987086861383, - -0.3761997091659869, - null, - 0.6447110717339476, - 0.6346600771238696, - null, - 0.996566557376774, - 0.9429959347173451, - null, - -0.9841407951295006, - -0.9691718254328148, - null, - -0.1746989536335369, - -0.21545661065228044, - null, - 0.7190027384406572, - -0.6733524915400829, - null, - 0.3463822498380838, - 0.3477296882225672, - null, - -0.9963212667605679, - -0.9966717949769558, - null, - 0.9429959347173451, - 0.9200501409914003, - null, - -0.38431573402189395, - -0.3841336101333821, - null, - 0.19071150325914307, - 0.5193257693326359, - null, - 0.9558016467988966, - 0.9429959347173451, - null, - 0.9899894560628789, - 0.9614565232159409, - null, - 0.9834057997430514, - 0.9429959347173451, - null, - -0.5941997580352117, - -0.13105435450902375, - null, - 0.4026492086149087, - -0.1704662310667489, - null, - 0.9111349988406146, - 0.9323362741884803, - null, - 0.3758580859865484, - 0.4026492086149087, - null, - 0.9933906922506657, - 0.9429959347173451, - null, - -0.694449223189137, - -0.8427047200664053, - null, - -0.38101889535310285, - -0.22921785273901052, - null, - -0.9047669157653869, - -0.9366302180608017, - null, - -0.7020458805950884, - -0.48044538178097274, - null, - -0.5022694021882802, - -0.48044538178097274, - null, - -0.42918597716454643, - 0.8769615172042697, - null, - -0.7456324884637221, - -0.6733524915400829, - null, - -0.6672027599602924, - -0.8427047200664053, - null, - 0.8878696583973817, - 0.8769615172042697, - null, - -0.6586536002915587, - -0.33804467666624216, - null, - -0.44868266230548065, - -0.22921785273901052, - null, - 0.03291786154121707, - -0.21545661065228044, - null, - -0.7856039350139777, - -0.7861021762096927, - null, - 0.04043002232915425, - 0.34156328555733406, - null, - 0.8388063670699751, - 0.8382147336610137, - null, - -0.45157640148404804, - -0.21545661065228044, - null, - -0.5478203775035718, - -0.5429937642824804, - null, - 0.997922012292708, - 0.9800016702803844, - null, - -0.1730107756841017, - -0.48044538178097274, - null, - -0.9972110313698025, - -0.9966717949769558, - null, - -0.5225909784991271, - -0.22921785273901052, - null, - -0.9966717949769558, - -0.9959840295131246, - null, - 0.9823857624714184, - 0.9429959347173451, - null, - -0.24394458082619505, - -0.48044538178097274, - null, - 0.33846342136030294, - 0.28697953098749346, - null, - -0.3478847923533306, - 0.28697953098749346, - null, - -0.5788542651523627, - -0.6090919489939511, - null, - -0.6746743166241478, - -0.6733524915400829, - null, - 0.9968889888512666, - 0.9800016702803844, - null, - 0.34156328555733406, - 0.4297787177007882, - null, - -0.9530406674085556, - -0.9472765725654566, - null, - -0.7790808125507963, - -0.6733524915400829, - null, - 0.4877694080899708, - 0.5193257693326359, - null, - 0.9955639891986278, - 0.9800016702803844, - null, - -0.4440515201480072, - -0.22921785273901052, - null, - 0.37774070291431566, - 0.3477296882225672, - null, - -0.7334864347609142, - -0.21545661065228044, - null, - 0.23369054758704197, - 0.23100910482546727, - null, - -0.996952258054832, - -0.991906016480079, - null, - 0.029393670016867414, - -0.22921785273901052, - null, - -0.9134527730167494, - -0.9273029373422139, - null, - 0.8558389993775974, - 0.8382147336610137, - null, - -0.1509070601810157, - -0.3841336101333821, - null, - -0.5542884829386048, - -0.344938551965082, - null, - -0.6129750583789236, - -0.6362907256677447, - null, - 0.41952034427639573, - 0.28697953098749346, - null, - 0.8678541693206899, - 0.8382147336610137, - null, - -0.9944626822729532, - -0.991906016480079, - null, - -0.2492028843794333, - -0.22921785273901052, - null, - -0.695706504697809, - -0.7790808125507963, - null, - -0.3292934609662325, - -0.3761997091659869, - null, - -0.33804467666624216, - -0.1704662310667489, - null, - 0.9853781537575341, - 0.9614565232159409, - null, - 0.41494189202012693, - 0.3477296882225672, - null, - -0.3822789254540941, - -0.3761997091659869, - null, - 0.9574537747155183, - 0.9581921233803322, - null, - -0.8357146392635689, - -0.21545661065228044, - null, - -0.27478888153970615, - -0.3761997091659869, - null, - 0.19884908397793452, - 0.17124893565094365, - null, - 0.6363094174770558, - 0.6346600771238696, - null, - 0.8992655876149411, - 0.9581921233803322, - null, - -0.1796111877730897, - -0.22921785273901052, - null, - 0.006322117528863087, - 0.3477296882225672, - null, - -0.22921785273901052, - -0.08359854129266285, - null, - -0.9821231455988676, - -0.9814380665244195, - null, - 0.7888659802854733, - 0.8382147336610137, - null, - 0.5810504042049169, - 0.3477296882225672, - null, - -0.930237145681395, - -0.9273029373422139, - null, - 0.11602799915340731, - -0.48044538178097274, - null, - 0.20018705203996226, - 0.28697953098749346, - null, - -0.8259167535288975, - -0.6733524915400829, - null, - 0.04930369683672868, - -0.6362907256677447, - null, - 0.7301125442768521, - 0.4026492086149087, - null, - -0.6207644756917838, - -0.6733524915400829, - null, - -0.9244327789693956, - -0.9273029373422139, - null, - -0.8219343900386166, - -0.8204117348975157, - null, - -0.23087680169956912, - -0.13105435450902375, - null, - 0.9401617420453954, - 0.9429959347173451, - null, - 0.2340106763906473, - 0.5738724701749537, - null, - -0.5207988916855705, - -0.3841336101333821, - null, - -0.9579284030092416, - -0.9740614572100874, - null, - 0.9610598525004939, - 0.9429959347173451, - null, - 0.9783517985365592, - 0.9429959347173451, - null, - 0.4429007044051129, - 0.41494189202012693, - null, - 0.9646014346986869, - 0.9614565232159409, - null, - 0.9371605967369754, - 0.9323362741884803, - null, - -0.9520923993354733, - -0.9704765454509768, - null, - -0.7761780863890706, - -0.7790808125507963, - null, - -0.4010807732166282, - -0.344938551965082, - null, - 0.18967591065849976, - 0.17124893565094365, - null, - -0.45260400521868754, - -0.6733524915400829, - null, - 0.564651721726941, - 0.5738724701749537, - null, - 0.519925510563296, - 0.41494189202012693, - null, - -0.6804071951251446, - -0.3841336101333821, - null, - -0.48074671930026824, - -0.5429937642824804, - null, - -0.6774432288400475, - -0.3841336101333821, - null, - 0.9962262148661752, - 0.9800016702803844, - null, - -0.9968827700244092, - -0.991906016480079, - null, - 0.9959594119230158, - 0.9800016702803844, - null, - -0.6095105437944078, - -0.6090919489939511, - null, - 0.651408099314772, - 0.41494189202012693, - null, - -0.34418426982050093, - -0.344938551965082, - null, - 0.9581921233803322, - 0.9429959347173451, - null, - 0.33168576087794327, - 0.5738724701749537, - null, - -0.7861021762096927, - -0.7790808125507963, - null, - -0.9961868960713917, - -0.991906016480079, - null, - 0.9912444176446105, - 0.9581921233803322, - null, - -0.7881669502039464, - -0.7861021762096927, - null, - 0.9681209534095969, - 0.9614565232159409, - null, - 0.9864751610008337, - 0.9845251575054128, - null, - -0.6048849011127202, - -0.6090919489939511, - null, - 0.9727050886987834, - 0.9614565232159409, - null, - -0.7594055153550993, - -0.745352706744639, - null, - -0.7148407925432313, - -0.6733524915400829, - null, - 0.9127721987293356, - 0.8769615172042697, - null, - 0.8795697164537659, - 0.8769615172042697, - null, - 0.9975559666707134, - 0.9864751610008337, - null, - 0.3499639528319144, - 0.3528620670256753, - null, - -0.4667481685234226, - -0.48044538178097274, - null, - 0.9817930759266399, - 0.9429959347173451, - null, - 0.5738724701749537, - 0.28697953098749346, - null, - -0.9887133383209242, - -0.9691718254328148, - null, - 0.12024212969646961, - 0.3528620670256753, - null, - -0.9167852117734514, - -0.9240619382705461, - null, - -0.9951008280184067, - -0.9966717949769558, - null, - -0.26969830707312514, - -0.34613069590058526, - null, - -0.9701595860251785, - -0.9704765454509768, - null, - -0.923990823485077, - -0.9273029373422139, - null, - 0.38467199277309194, - 0.41494189202012693, - null, - 0.3477296882225672, - 0.3625818121152379, - null, - 0.346807940081572, - 0.4026492086149087, - null, - 0.9155501452652229, - 0.9323362741884803, - null, - -0.08423603151833692, - 0.04043002232915425, - null, - 0.6289239463053398, - 0.6346600771238696, - null, - -0.9410415038929993, - -0.9366302180608017, - null, - 0.9176190577358515, - 0.9429959347173451, - null, - -0.662508376746304, - -0.6733524915400829, - null, - -0.7502169617419224, - -0.745352706744639, - null, - -0.6958052705188891, - -0.6090919489939511, - null, - -0.9790714322600312, - -0.9691718254328148, - null, - 0.9465096345342706, - 0.9323362741884803, - null, - 0.8769615172042697, - 0.9067287012733201, - null, - -0.1599276622936476, - -0.13105435450902375, - null - ] - }, - { - "marker": { - "color": "rgb(30, 100, 200)" - }, - "mode": "markers", - "text": [ - "kangaroo.n.01", - "marsupial.n.01", - "domestic_goat.n.01", - "even-toed_ungulate.n.01", - "rock_squirrel.n.01", - "ground_squirrel.n.02", - "vizsla.n.01", - "dog.n.01", - "dandie_dinmont.n.01", - "mammal.n.01", - "broodmare.n.01", - "horse.n.01", - "spotted_skunk.n.01", - "hispid_pocket_mouse.n.01", - "lesser_kudu.n.01", - "placental.n.01", - "water_shrew.n.01", - "insectivore.n.01", - "silky_anteater.n.01", - "giant_kangaroo.n.01", - "metatherian.n.01", - "bronco.n.01", - "pekinese.n.01", - "seattle_slew.n.01", - "thoroughbred.n.02", - "kinkajou.n.01", - "boxer.n.04", - "rabbit.n.01", - "longhorn.n.01", - "bovid.n.01", - "blue_fox.n.01", - "fox.n.01", - "woolly_monkey.n.01", - "new_world_monkey.n.01", - "jungle_cat.n.01", - "vole.n.01", - "western_big-eared_bat.n.01", - "long-eared_bat.n.01", - "leopard.n.02", - "hackney.n.02", - "shetland_sheepdog.n.01", - "coati.n.01", - "carnivore.n.01", - "wild_boar.n.01", - "post_horse.n.01", - "porker.n.01", - "mouflon.n.01", - "australian_sea_lion.n.01", - "seal.n.09", - "coondog.n.01", - "schipperke.n.01", - "black_rat.n.01", - "rodent.n.01", - "waterbuck.n.01", - "hack.n.06", - "odd-toed_ungulate.n.01", - "central_chimpanzee.n.01", - "anthropoid_ape.n.01", - "harrier.n.02", - "lesser_panda.n.01", - "wether.n.01", - "ruminant.n.01", - "collie.n.01", - "shepherd_dog.n.01", - "prancer.n.01", - "doberman.n.01", - "pygmy_marmoset.n.01", - "monkey.n.01", - "phalanger.n.01", - "black-and-tan_coonhound.n.01", - "primate.n.02", - "ferret_badger.n.01", - "badger.n.02", - "cave_myotis.n.01", - "desmodus_rotundus.n.01", - "vampire_bat.n.01", - "malinois.n.01", - "mexican_pocket_mouse.n.01", - "american_flying_squirrel.n.01", - "syrian_bear.n.01", - "brown_bear.n.01", - "dugong.n.01", - "sea_cow.n.01", - "collared_pika.n.01", - "pika.n.01", - "grey.n.07", - "domestic_llama.n.01", - "proboscidean.n.01", - "gib.n.02", - "tom.n.02", - "eurasian_otter.n.01", - "tree_squirrel.n.01", - "flat-coated_retriever.n.01", - "plantigrade_mammal.n.01", - "cotswold.n.01", - "welsh_pony.n.01", - "equine.n.01", - "american_foxhound.n.01", - "addax.n.01", - "aberdeen_angus.n.01", - "clydesdale.n.01", - "ungulate.n.01", - "angora.n.02", - "goat.n.01", - "taguan.n.01", - "prototherian.n.01", - "grade.n.09", - "cattle.n.01", - "yearling.n.02", - "racehorse.n.01", - "nyala.n.02", - "antelope.n.01", - "springer.n.02", - "seizure-alert_dog.n.01", - "cat.n.01", - "striped_skunk.n.01", - "coonhound.n.01", - "hunting_dog.n.01", - "cur.n.01", - "canine.n.02", - "exmoor.n.02", - "pony.n.05", - "vicuna.n.03", - "white-tailed_jackrabbit.n.01", - "kitty.n.04", - "feline.n.01", - "pinscher.n.01", - "afghan_hound.n.01", - "fur_seal.n.01", - "bull_mastiff.n.01", - "hazel_mouse.n.01", - "dormouse.n.01", - "ocelot.n.01", - "marco_polo_sheep.n.01", - "baleen_whale.n.01", - "whale.n.02", - "porcupine.n.01", - "whitetail_prairie_dog.n.01", - "kudu.n.01", - "rudapithecus.n.01", - "hominid.n.01", - "blacktail_jackrabbit.n.01", - "lagomorph.n.01", - "drill.n.02", - "baboon.n.01", - "bluetick.n.01", - "vaquita.n.01", - "tiger_cat.n.01", - "wildcat.n.03", - "wheel_horse.n.01", - "flying_mouse.n.01", - "hound.n.01", - "bighorn.n.02", - "chinchilla.n.03", - "raccoon_dog.n.01", - "palfrey.n.01", - "rorqual.n.01", - "sassaby.n.01", - "sloth_bear.n.01", - "rogue_elephant.n.01", - "white_elephant.n.02", - "virginia_deer.n.01", - "count_fleet.n.01", - "lakeland_terrier.n.01", - "billy.n.02", - "omaha.n.04", - "soft-coated_wheaten_terrier.n.01", - "terrier.n.01", - "bedlington_terrier.n.01", - "wisent.n.01", - "sable_antelope.n.01", - "staffordshire_bullterrier.n.01", - "american_staffordshire_terrier.n.01", - "belgian_hare.n.01", - "aquatic_mammal.n.01", - "tibetan_terrier.n.01", - "exmoor.n.01", - "procyonid.n.01", - "canada_lynx.n.01", - "old_english_sheepdog.n.01", - "raccoon.n.02", - "leafnose_bat.n.01", - "bat.n.01", - "pygmy_sperm_whale.n.01", - "cetacean.n.01", - "african_hunting_dog.n.01", - "spearnose_bat.n.01", - "pooch.n.01", - "percheron.n.01", - "blenheim_spaniel.n.01", - "persian_cat.n.01", - "dun.n.01", - "nail-tailed_wallaby.n.01", - "tabby.n.01", - "three-year-old_horse.n.01", - "broadtail.n.02", - "springbok.n.01", - "sporting_dog.n.01", - "new_world_tapir.n.01", - "muskrat.n.02", - "banteng.n.01", - "yak.n.02", - "hog.n.03", - "basenji.n.01", - "panther.n.02", - "gibbon.n.02", - "ape.n.01", - "tamarisk_gerbil.n.01", - "beagle.n.01", - "small_civet.n.01", - "hind.n.02", - "blue_point_siamese.n.01", - "babirusa.n.01", - "swine.n.01", - "wire-haired_fox_terrier.n.01", - "wood_rabbit.n.01", - "pacific_walrus.n.01", - "walrus.n.01", - "long-tailed_porcupine.n.01", - "hyrax.n.01", - "airedale.n.01", - "silky_tamarin.n.01", - "gomphothere.n.01", - "nanny.n.02", - "urial.n.01", - "bullock.n.02", - "lapdog.n.01", - "german_short-haired_pointer.n.01", - "northern_flying_squirrel.n.01", - "eastern_chipmunk.n.01", - "warhorse.n.03", - "saddle_horse.n.01", - "llama.n.01", - "javanthropus.n.01", - "squirrel.n.01", - "harness_horse.n.01", - "toy_manchester.n.01", - "homo_habilis.n.01", - "chimpanzee.n.01", - "egyptian_cat.n.01", - "domestic_cat.n.01", - "standard_poodle.n.01", - "sambar.n.01", - "potoroo.n.01", - "chow.n.03", - "lincoln.n.03", - "black_squirrel.n.01", - "common_raccoon.n.01", - "wild_sheep.n.01", - "goat_antelope.n.01", - "pygmy_chimpanzee.n.01", - "eared_seal.n.01", - "lesser_rorqual.n.01", - "woodland_caribou.n.01", - "common_shrew.n.01", - "gemsbok.n.01", - "tabby.n.02", - "marmoset.n.01", - "english_toy_spaniel.n.01", - "fawn.n.02", - "pacer.n.02", - "deer_mouse.n.01", - "beef.n.01", - "ox.n.02", - "shire.n.02", - "american_saddle_horse.n.01", - "bassarisk.n.01", - "coach_horse.n.01", - "greater_pichiciego.n.01", - "armadillo.n.01", - "water_rat.n.03", - "guereza.n.01", - "carnivorous_bat.n.01", - "thomson's_gazelle.n.01", - "stablemate.n.01", - "leveret.n.01", - "eurasian_hamster.n.01", - "steed.n.01", - "harpy.n.03", - "fruit_bat.n.01", - "irish_wolfhound.n.01", - "talapoin.n.01", - "stallion.n.01", - "ermine.n.02", - "musteline_mammal.n.01", - "leporid.n.01", - "african_elephant.n.01", - "wood_rat.n.01", - "megatherian.n.01", - "kangaroo_mouse.n.01", - "dairy_cattle.n.01", - "boston_bull.n.01", - "harbor_porpoise.n.01", - "pichiciago.n.01", - "domestic_ass.n.01", - "homo_soloensis.n.01", - "kuvasz.n.01", - "watchdog.n.02", - "black-footed_ferret.n.01", - "german_shepherd.n.01", - "cavalry_horse.n.01", - "mylodontid.n.01", - "wild_ass.n.01", - "big_cat.n.01", - "clumber.n.01", - "spaniel.n.01", - "ant_bear.n.01", - "tamarin.n.01", - "rat.n.01", - "sinanthropus.n.01", - "charolais.n.01", - "citation.n.06", - "liver-spotted_dalmatian.n.01", - "tapir.n.01", - "flying_phalanger.n.01", - "atlantic_walrus.n.01", - "gelding.n.01", - "alaskan_brown_bear.n.01", - "jackass_bat.n.01", - "bull.n.01", - "jaguar.n.01", - "affirmed.n.01", - "false_vampire.n.01", - "stud.n.04", - "male_horse.n.01", - "bird_dog.n.01", - "cattalo.n.01", - "two-year-old_horse.n.01", - "ewe.n.03", - "standard_schnauzer.n.01", - "lemur.n.01", - "zinjanthropus.n.01", - "genet.n.03", - "gordon_setter.n.01", - "groundhog.n.01", - "earless_seal.n.01", - "killer_whale.n.01", - "toothed_whale.n.01", - "jerboa_rat.n.01", - "plains_pocket_mouse.n.01", - "curly-coated_retriever.n.01", - "retriever.n.01", - "fanaloka.n.01", - "viverrine.n.01", - "muishond.n.01", - "corgi.n.01", - "grevy's_zebra.n.01", - "zebra.n.01", - "homo_sapiens_sapiens.n.01", - "homo_sapiens.n.01", - "english_setter.n.01", - "wombat.n.01", - "whirlaway.n.01", - "heifer.n.01", - "uakari.n.01", - "hognose_bat.n.01", - "northern_pocket_gopher.n.01", - "gopher.n.04", - "crabeater_seal.n.01", - "kiang.n.01", - "sennenhunde.n.01", - "pony.n.02", - "tatouay.n.01", - "white-footed_mouse.n.01", - "gnu.n.01", - "tiglon.n.01", - "golden_hamster.n.01", - "appaloosa.n.01", - "pricket.n.02", - "neandertal_man.n.01", - "angora.n.03", - "ass.n.03", - "basset.n.01", - "marten.n.01", - "golden_mole.n.01", - "common_dolphin.n.01", - "sivapithecus.n.01", - "friesian.n.01", - "bovine.n.01", - "water_buffalo.n.01", - "short-tailed_shrew.n.01", - "serval.n.01", - "war_admiral.n.01", - "dachshund.n.01", - "pomeranian.n.01", - "spitz.n.01", - "gaur.n.01", - "cynopterus_sphinx.n.01", - "cotton_mouse.n.01", - "mouse.n.01", - "steller_sea_lion.n.01", - "brocket.n.02", - "shrew.n.02", - "bucking_bronco.n.01", - "rock_wallaby.n.01", - "carthorse.n.01", - "tamarau.n.01", - "buckskin.n.01", - "brahman.n.04", - "bonnet_macaque.n.01", - "anthropoid.n.02", - "entlebucher.n.01", - "pinniped_mammal.n.01", - "newfoundland.n.01", - "durham.n.02", - "wood_mouse.n.01", - "assault.n.03", - "aardvark.n.01", - "giant_schnauzer.n.01", - "common_wallaby.n.01", - "mantled_ground_squirrel.n.01", - "bullterrier.n.01", - "homo.n.02", - "gorilla.n.01", - "great_ape.n.01", - "jackrabbit.n.01", - "roe_deer.n.01", - "imperial_mammoth.n.01", - "elephant.n.01", - "rabbit-eared_bandicoot.n.01", - "chickeree.n.01", - "flickertail.n.01", - "reynard.n.01", - "clydesdale_terrier.n.01", - "bear_cub.n.01", - "bear.n.01", - "stoat.n.01", - "rhodesian_man.n.01", - "ram.n.05", - "sheep.n.01", - "santa_gertrudis.n.01", - "mountain_sheep.n.01", - "eastern_chimpanzee.n.01", - "pouched_mouse.n.01", - "pacific_bottlenose_dolphin.n.01", - "attack_dog.n.01", - "ungulata.n.01", - "deer.n.01", - "domestic_sheep.n.01", - "welsh.n.03", - "solo_man.n.01", - "great_dane.n.01", - "pithecanthropus.n.01", - "lhasa.n.02", - "italian_greyhound.n.01", - "bull.n.11", - "jersey.n.05", - "polo_pony.n.01", - "hare.n.01", - "working_dog.n.01", - "trotting_horse.n.01", - "wirehair.n.01", - "lionet.n.01", - "zebu.n.01", - "glutton.n.02", - "irish_water_spaniel.n.01", - "sealyham_terrier.n.01", - "musk_kangaroo.n.01", - "water_chevrotain.n.01", - "baronduki.n.01", - "guinea_pig.n.02", - "english_springer.n.01", - "viscacha.n.01", - "harnessed_antelope.n.01", - "chesapeake_bay_retriever.n.01", - "numbat.n.01", - "dasyurid_marsupial.n.01", - "large_poodle.n.01", - "roan.n.02", - "entellus.n.01", - "old_world_monkey.n.01", - "squirrel_monkey.n.01", - "wild_goat.n.01", - "anoa.n.01", - "native_cat.n.01", - "bandicoot.n.01", - "mare.n.01", - "river_dolphin.n.01", - "wharf_rat.n.02", - "cardigan.n.02", - "saki.n.03", - "zoril.n.01", - "dark_horse.n.02", - "world.n.08", - "schnauzer.n.01", - "irish_terrier.n.01", - "keeshond.n.01", - "aardwolf.n.01", - "pembroke.n.01", - "foxhound.n.01", - "red_fox.n.03", - "hooded_skunk.n.01", - "woolly_indris.n.01", - "miniature_poodle.n.01", - "pocket_rat.n.01", - "japanese_deer.n.01", - "lesser_ape.n.01", - "slender_loris.n.01", - "cow.n.02", - "merino.n.01", - "bullock.n.01", - "cavy.n.01", - "fur_seal.n.02", - "jird.n.01", - "protohippus.n.01", - "greater_swiss_mountain_dog.n.01", - "capuchin.n.02", - "chigetai.n.01", - "southern_flying_squirrel.n.01", - "mangabey.n.01", - "sled_dog.n.01", - "spouter.n.03", - "tennessee_walker.n.01", - "pangolin.n.01", - "old_world_porcupine.n.01", - "sewer_rat.n.01", - "brown_rat.n.01", - "swamp_rabbit.n.02", - "cheviot.n.01", - "collared_peccary.n.01", - "mountain_goat.n.01", - "golden_retriever.n.01", - "yorkshire_terrier.n.01", - "pachyderm.n.01", - "fisher.n.02", - "tenrec.n.01", - "jumping_mouse.n.01", - "cinnamon_bear.n.01", - "american_black_bear.n.01", - "liver_chestnut.n.01", - "howler_monkey.n.01", - "sow.n.01", - "manchester_terrier.n.01", - "king_charles_spaniel.n.01", - "mouser.n.01", - "american_shrew_mole.n.01", - "peba.n.01", - "asiatic_shrew_mole.n.01", - "hudson_bay_collared_lemming.n.01", - "bunny.n.02", - "rat_terrier.n.01", - "langur.n.01", - "european_wood_mouse.n.01", - "nude_mouse.n.01", - "mole.n.06", - "mule.n.01", - "barren_ground_caribou.n.01", - "galago.n.01", - "paca.n.01", - "wolfhound.n.01", - "mountain_nyala.n.01", - "bezoar_goat.n.01", - "muntjac.n.01", - "packrat.n.02", - "skye_terrier.n.01", - "douroucouli.n.01", - "prairie_dog.n.01", - "lucy.n.01", - "hack.n.07", - "seeing_eye_dog.n.01", - "grivet.n.01", - "rhodesian_ridgeback.n.01", - "manatee.n.01", - "farm_horse.n.01", - "quagga.n.01", - "bouvier_des_flandres.n.01", - "poodle.n.01", - "stepper.n.03", - "rottweiler.n.01", - "tarsius_syrichta.n.01", - "affenpinscher.n.01", - "tailless_tenrec.n.01", - "eastern_dasyure.n.01", - "dasyure.n.01", - "elk.n.01", - "boarhound.n.01", - "woolly_rhinoceros.n.01", - "rambouillet.n.01", - "bowhead.n.01", - "grasshopper_mouse.n.01", - "dall_sheep.n.01", - "gerbil.n.01", - "prairie_vole.n.01", - "finback.n.01", - "polar_hare.n.01", - "hairy-legged_vampire_bat.n.01", - "white-lipped_peccary.n.01", - "peccary.n.01", - "dwarf_sperm_whale.n.01", - "mule_deer.n.01", - "sausage_dog.n.01", - "female_mammal.n.01", - "digitigrade_mammal.n.01", - "siamang.n.01", - "kanchil.n.01", - "chevrotain.n.01", - "giant_eland.n.01", - "timber_wolf.n.01", - "european_hare.n.01", - "guernsey.n.02", - "warrigal.n.01", - "european_rabbit.n.01", - "pug.n.01", - "white_wolf.n.01", - "new_world_mouse.n.01", - "beaked_whale.n.01", - "leonberg.n.01", - "pinche.n.01", - "big_brown_bat.n.01", - "mexican_hairless.n.01", - "american_marten.n.01", - "asian_wild_ox.n.01", - "steller's_sea_cow.n.01", - "old_world_buffalo.n.01", - "ord_kangaroo_rat.n.01", - "kangaroo_rat.n.01", - "lynx.n.02", - "alley_cat.n.01", - "serow.n.01", - "grison.n.01", - "common_eland.n.01", - "phyllostomus_hastatus.n.01", - "grizzly.n.01", - "eland.n.01", - "silky_pocket_mouse.n.01", - "elephant_seal.n.01", - "starnose_mole.n.01", - "gazella_subgutturosa.n.01", - "kerry_blue_terrier.n.01", - "vespertilian_bat.n.01", - "colobus.n.01", - "sea_otter.n.01", - "flying_fox.n.01", - "black-tailed_deer.n.01", - "mouse-eared_bat.n.01", - "chestnut.n.06", - "burro.n.01", - "kid.n.05", - "hereford.n.01", - "snow_leopard.n.01", - "indri.n.01", - "cocker_spaniel.n.01", - "kob.n.01", - "european_lemming.n.01", - "carabao.n.01", - "harbor_seal.n.01", - "shetland_pony.n.01", - "water_spaniel.n.01", - "grey_whale.n.01", - "papillon.n.01", - "toy_dog.n.01", - "draft_horse.n.01", - "eastern_grey_squirrel.n.01", - "arabian.n.02", - "northern_bog_lemming.n.01", - "lemming.n.01", - "weimaraner.n.01", - "civet.n.01", - "saiga.n.01", - "jennet.n.01", - "edentate.n.01", - "pilot_whale.n.01", - "dolphin.n.02", - "grey_fox.n.01", - "grampus.n.02", - "devon.n.02", - "walker_hound.n.01", - "shrew_mole.n.01", - "chihuahua.n.03", - "redbone.n.01", - "borzoi.n.01", - "mapinguari.n.01", - "binturong.n.01", - "scottish_deerhound.n.01", - "greyhound.n.01", - "field_spaniel.n.01", - "griffon.n.03", - "forest_goat.n.01", - "pocket_mouse.n.01", - "hart.n.03", - "pere_david's_deer.n.01", - "algeripithecus_minutus.n.01", - "red_bat.n.01", - "vixen.n.02", - "malamute.n.01", - "western_grey_squirrel.n.01", - "striped_muishond.n.01", - "gallant_fox.n.01", - "margay.n.01", - "saber-toothed_tiger.n.01", - "groenendael.n.01", - "silver_fox.n.01", - "jack.n.12", - "bengal_tiger.n.01", - "mandrill.n.01", - "asiatic_black_bear.n.01", - "pied_lemming.n.01", - "lioness.n.01", - "bloodhound.n.01", - "australopithecus_boisei.n.01", - "milking_shorthorn.n.01", - "jerboa.n.01", - "bongo.n.02", - "norfolk_terrier.n.01", - "serotine.n.01", - "rock_hyrax.n.01", - "welsh_terrier.n.01", - "west_highland_white_terrier.n.01", - "water_dog.n.02", - "red_deer.n.01", - "takin.n.01", - "blue_whale.n.01", - "hooded_seal.n.01", - "secretariat.n.02", - "cape_buffalo.n.01", - "stone_marten.n.01", - "whippet.n.01", - "aoudad.n.01", - "bottlenose_dolphin.n.01", - "lechwe.n.01", - "lion.n.01", - "hartebeest.n.01", - "red_poll.n.01", - "eastern_cottontail.n.01", - "murine.n.01", - "sussex_spaniel.n.01", - "leopard_cat.n.01", - "coydog.n.01", - "big-eared_bat.n.01", - "java_man.n.01", - "coyote.n.01", - "macaque.n.01", - "american_harvest_mouse.n.01", - "belgian_sheepdog.n.01", - "eohippus.n.01", - "ibex.n.01", - "longwool.n.01", - "nilgai.n.01", - "quarter_horse.n.01", - "africander.n.01", - "stalking-horse.n.04", - "apar.n.01", - "three-toed_sloth.n.01", - "indian_elephant.n.01", - "gayal.n.01", - "malayan_tapir.n.01", - "cairn.n.02", - "chiacoan_peccary.n.01", - "rhinoceros.n.01", - "naked_mole_rat.n.01", - "loir.n.01", - "hack.n.08", - "eskimo_dog.n.01", - "queen.n.09", - "south_american_sea_lion.n.01", - "lippizan.n.01", - "smiledon_californicus.n.01", - "norwegian_elkhound.n.01", - "stirk.n.01", - "mustang.n.01", - "cayuse.n.01", - "courser.n.03", - "paranthropus.n.01", - "hominoid.n.01", - "napu.n.01", - "bushbuck.n.01", - "atlantic_bottlenose_dolphin.n.01", - "ayrshire.n.01", - "border_collie.n.01", - "norwich_terrier.n.01", - "liger.n.01", - "oryx.n.01", - "pine_vole.n.01", - "european_water_shrew.n.01", - "two-toed_sloth.n.02", - "sloth.n.02", - "bison.n.01", - "burmese_cat.n.01", - "wolverine.n.03", - "aye-aye.n.01", - "puku.n.01", - "mastiff.n.01", - "common_opossum.n.01", - "potto.n.02", - "typical_jerboa.n.01", - "house_mouse.n.01", - "tarsius_glis.n.01", - "tarsier.n.01", - "slender-tailed_meerkat.n.01", - "cow_pony.n.01", - "fox_squirrel.n.01", - "bay.n.07", - "madagascar_cat.n.01", - "australopithecus_afarensis.n.01", - "australopithecine.n.01", - "livestock.n.01", - "lerot.n.01", - "pole_horse.n.01", - "banded_palm_civet.n.01", - "american_red_squirrel.n.01", - "mara.n.02", - "pteropus_hypomelanus.n.01", - "meerkat.n.01", - "bernese_mountain_dog.n.01", - "przewalski's_horse.n.01", - "sea_lion.n.01", - "black_rhinoceros.n.01", - "onager.n.02", - "common_zebra.n.01", - "narwhal.n.01", - "pouched_mole.n.01", - "crab-eating_opossum.n.01", - "pollard.n.02", - "porpoise.n.01", - "brush-tailed_phalanger.n.01", - "arabian_camel.n.01", - "camel.n.01", - "sei_whale.n.01", - "field_mouse.n.02", - "packhorse.n.01", - "lapin.n.02", - "palomino.n.01", - "prosimian.n.01", - "greater_kudu.n.01", - "macrotus.n.01", - "horseshoe_bat.n.02", - "pademelon.n.01", - "indian_buffalo.n.01", - "new_world_beaver.n.01", - "charger.n.01", - "irish_setter.n.01", - "hog-nosed_skunk.n.01", - "cow.n.01", - "ox.n.01", - "workhorse.n.02", - "tree_wallaby.n.01", - "pygmy_mouse.n.01", - "bearded_seal.n.01", - "guenon.n.01", - "brood_bitch.n.01", - "masked_shrew.n.01", - "sir_barton.n.01", - "cheetah.n.01", - "columbian_mammoth.n.01", - "giant_panda.n.01", - "american_bison.n.01", - "round-tailed_muskrat.n.01", - "gerenuk.n.01", - "smooth-haired_fox_terrier.n.01", - "platypus.n.01", - "monotreme.n.01", - "feist.n.01", - "jaculus_jaculus.n.01", - "wolf.n.01", - "coypu.n.01", - "remount.n.01", - "kit_fox.n.02", - "jaguarundi.n.01", - "american_mink.n.01", - "arctic_ground_squirrel.n.01", - "weasel.n.02", - "abrocome.n.01", - "pteropus_capestratus.n.01", - "fissiped_mammal.n.01", - "eurasian_badger.n.01", - "little_chief_hare.n.01", - "fossorial_mammal.n.01", - "phenacomys.n.01", - "gee-gee.n.01", - "blacktail_prairie_dog.n.01", - "little_brown_bat.n.01", - "hog_badger.n.01", - "pointer.n.04", - "large_civet.n.01", - "roebuck.n.01", - "bandicoot_rat.n.01", - "common_lynx.n.01", - "razorback.n.01", - "puppy.n.01", - "kelpie.n.02", - "pipistrelle.n.01", - "sable.n.05", - "pacer.n.01", - "brocket.n.01", - "alaska_fur_seal.n.01", - "hoary_marmot.n.01", - "marmot.n.01", - "alpaca.n.03", - "spotted_lynx.n.01", - "setter.n.02", - "dusky-footed_woodrat.n.01", - "stag.n.02", - "dik-dik.n.01", - "hippopotamus.n.01", - "mountain_beaver.n.01", - "argali.n.01", - "impala.n.01", - "mastodon.n.01", - "dryopithecine.n.01", - "pole_horse.n.02", - "true_marmoset.n.01", - "royal.n.02", - "plains_pocket_gopher.n.01", - "rat_kangaroo.n.01", - "ferret.n.02", - "australopithecus_robustus.n.01", - "patas.n.01", - "orange_bat.n.01", - "harvest_mouse.n.02", - "dinoceras.n.01", - "siberian_husky.n.01", - "water_vole.n.01", - "wolf_pup.n.01", - "briard.n.01", - "plow_horse.n.01", - "ice_bear.n.01", - "siamese_cat.n.01", - "southeastern_pocket_gopher.n.01", - "kaffir_cat.n.01", - "grey_lemming.n.01", - "cob.n.02", - "white_whale.n.01", - "american_water_spaniel.n.01", - "leopardess.n.01", - "tamandua.n.01", - "longtail_weasel.n.01", - "springer_spaniel.n.01", - "spider_monkey.n.01", - "skunk.n.04", - "brush-tailed_porcupine.n.01", - "fallow_deer.n.01", - "white_rhinoceros.n.01", - "crowbait.n.01", - "bactrian_camel.n.01", - "brown_hyena.n.01", - "cynocephalus_variegatus.n.01", - "flying_lemur.n.01", - "galloway.n.02", - "tiger.n.02", - "welsh_springer_spaniel.n.01", - "valley_pocket_gopher.n.01", - "mesohippus.n.01", - "mammoth.n.01", - "okapi.n.01", - "moke.n.01", - "angora.n.04", - "cougar.n.01", - "humpback.n.03", - "river_otter.n.01", - "otter.n.02", - "bitch.n.04", - "maltese_dog.n.01", - "yellowbelly_marmot.n.01", - "housedog.n.01", - "miniature_schnauzer.n.01", - "aurochs.n.02", - "guadalupe_fur_seal.n.01", - "suricate.n.01", - "ground_sloth.n.01", - "american_water_shrew.n.01", - "old_world_least_weasel.n.01", - "agouti.n.01", - "indian_mongoose.n.01", - "gazelle.n.01", - "crab-eating_dog.n.01", - "tusker.n.01", - "kit_fox.n.01", - "green_monkey.n.01", - "hamster.n.01", - "saluki.n.01", - "mongoose.n.01", - "new_world_porcupine.n.01", - "sorrel.n.05", - "border_terrier.n.01", - "bellwether.n.02", - "sperm_whale.n.01", - "western_chimpanzee.n.01", - "bottle-nosed_whale.n.01", - "false_saber-toothed_tiger.n.01", - "markhor.n.01", - "cro-magnon.n.01", - "meadow_vole.n.01", - "steenbok.n.01", - "kangaroo_mouse.n.02", - "freetail.n.01", - "musk_ox.n.01", - "american_mastodon.n.01", - "western_lowland_gorilla.n.01", - "pony.n.01", - "woolly_mammoth.n.01", - "steeplechaser.n.01", - "striped_hyena.n.01", - "hyena.n.01", - "chamois.n.02", - "appenzeller.n.01", - "snake_muishond.n.01", - "sand_rat.n.02", - "mink.n.03", - "great_pyrenees.n.01", - "blackbuck.n.01", - "rhesus.n.01", - "sand_cat.n.01", - "meadow_jumping_mouse.n.01", - "brittany_spaniel.n.01", - "lion_cub.n.01", - "palm_cat.n.01", - "red-backed_mouse.n.01", - "tigress.n.01", - "peking_man.n.01", - "homo_erectus.n.01", - "pocketed_bat.n.01", - "beaver_rat.n.01", - "guide_dog.n.01", - "ibizan_hound.n.01", - "griffon.n.02", - "echidna.n.02", - "brown_swiss.n.01", - "water_vole.n.02", - "new_world_least_weasel.n.01", - "tibetan_mastiff.n.01", - "tiger_cat.n.02", - "fox_terrier.n.01", - "least_shrew.n.01", - "vervet.n.01", - "hampshire.n.02", - "toy_spaniel.n.01", - "rice_rat.n.01", - "angwantibo.n.01", - "tasmanian_devil.n.01", - "eastern_pipistrel.n.01", - "bruin.n.01", - "wild_horse.n.01", - "proboscis_monkey.n.01", - "buck.n.05", - "hare_wallaby.n.01", - "english_foxhound.n.01", - "yearling.n.03", - "musk_deer.n.01", - "cuscus.n.01", - "frosted_bat.n.01", - "orangutan.n.01", - "dingo.n.01", - "koala.n.01", - "jerboa_kangaroo.n.01", - "brabancon_griffon.n.01", - "labrador_retriever.n.01", - "guanaco.n.01", - "giraffe.n.01", - "bettong.n.01", - "slow_loris.n.01", - "wallaby.n.01", - "brewer's_mole.n.01", - "silverback.n.01", - "aegyptopithecus.n.01", - "wapiti.n.01", - "tarpan.n.01", - "komondor.n.01", - "damaraland_mole_rat.n.01", - "marsh_hare.n.01", - "plott_hound.n.01", - "samoyed.n.03", - "harp_seal.n.01", - "old_world_beaver.n.01", - "mountain_gorilla.n.01", - "indian_rhinoceros.n.01", - "crab-eating_raccoon.n.01", - "nonstarter.n.02", - "red_fox.n.02", - "caracal.n.01", - "hinny.n.01", - "snowshoe_hare.n.01", - "spotted_hyena.n.01", - "toy_terrier.n.01", - "miniature_pinscher.n.01", - "rabbit_ears.n.02", - "tiger_cub.n.01", - "duplicidentata.n.01", - "wild_dog.n.01", - "horseshoe_bat.n.01", - "shih-tzu.n.01", - "boar.n.02", - "black_sheep.n.02", - "beaver.n.07", - "japanese_spaniel.n.01", - "police_dog.n.01", - "pallid_bat.n.01", - "manul.n.01", - "western_pipistrel.n.01", - "mole_rat.n.01", - "cryptoprocta.n.01", - "dinocerate.n.01", - "chacma.n.01", - "eastern_lowland_gorilla.n.01", - "echidna.n.01", - "crab-eating_macaque.n.01", - "hedgehog.n.02", - "proconsul.n.03", - "ratel.n.01", - "right_whale.n.01", - "capybara.n.01", - "thylacine.n.01", - "french_bulldog.n.01", - "bulldog.n.01", - "brown_lemming.n.01", - "pentail.n.01", - "red_wolf.n.01", - "staghound.n.01", - "black_fox.n.01", - "pronghorn.n.01", - "guano_bat.n.01", - "american_badger.n.01", - "scotch_terrier.n.01", - "mudder.n.01", - "yellow-throated_marten.n.01", - "cashmere_goat.n.01", - "california_sea_lion.n.01", - "otterhound.n.01", - "dusky-footed_wood_rat.n.01", - "caribou.n.01", - "cactus_mouse.n.01", - "opossum.n.02", - "dhole.n.01", - "eastern_woodrat.n.01", - "mountain_zebra.n.01", - "chipmunk.n.01", - "mastiff_bat.n.01", - "otter_shrew.n.01", - "southern_bog_lemming.n.01", - "red_squirrel.n.02", - "african_wild_ass.n.01", - "tayra.n.01", - "saint_bernard.n.01", - "fissipedia.n.01", - "maltese.n.03", - "pine_marten.n.01", - "cotton_rat.n.01", - "simian.n.01", - "doe.n.02", - "australian_terrier.n.01", - "boskop_man.n.01", - "silky_terrier.n.01", - "goral.n.01", - "tree_shrew.n.01", - "jackal.n.01", - "warthog.n.01", - "dalmatian.n.02", - "toy_poodle.n.01", - "antelope_squirrel.n.01", - "fossa.n.03", - "pinto.n.01", - "titi.n.03", - "unguiculate.n.01", - "ichneumon.n.01", - "abyssinian.n.01", - "arctic_fox.n.01", - "barbary_ape.n.01", - "anteater.n.02", - "australopithecus_africanus.n.01", - "mediterranean_water_shrew.n.01", - "mylodon.n.01", - "polecat.n.02", - "aperea.n.01", - "brown_bat.n.01", - "opossum_rat.n.01", - "european_wildcat.n.01", - "unguiculata.n.01", - "giant_armadillo.n.01", - "suslik.n.01", - "peludo.n.01", - "pariah_dog.n.01", - "manx.n.02", - "canada_porcupine.n.01", - "tortoiseshell.n.03", - "sand_rat.n.01", - "mountain_paca.n.01", - "bobcat.n.01", - "mole_rat.n.02", - "hearing_dog.n.01", - "two-toed_sloth.n.01", - "mountain_chinchilla.n.01", - "asiatic_flying_squirrel.n.01", - "morgan.n.06" - ], - "textposition": "bottom", - "type": "scatter", - "x": [ - -0.5564948328595789, - -0.5567740007479328, - -0.972242149998867, - -0.8522020393283346, - -0.49062345665893514, - -0.4885780297841132, - 0.870053970284308, - 0.8086763682931215, - 0.8628576552954281, - -0.05009285016206634, - 0.9443837083833702, - -0.11766578534896463, - 0.8141809218361152, - -0.8463727314945776, - -0.8977194567152854, - 0.0011134916190881743, - -0.7424436689658641, - -0.30634945744827663, - 0.05931732298942703, - -0.5615233810134106, - -0.5573540628942462, - -0.39752614026293803, - 0.9969725787617116, - -0.3348931250728923, - -0.242863786254013, - 0.5701213237843601, - 0.9790383187806231, - 0.01334416509305148, - -0.9471027587174569, - -0.8819992981021165, - 0.9841397760911806, - 0.9523062123311233, - 0.18282770089503006, - 0.17192822559954982, - 0.40560293913023293, - -0.6612775182833104, - 0.3563822962497587, - 0.36177843726035713, - 0.4857810510294665, - -0.13399526558869024, - 0.8139424784955048, - 0.9757573531836501, - 0.8114235010495762, - -0.979086811025485, - -0.059459354925203795, - -0.9894929274477214, - -0.7217217001742174, - 0.857779436422035, - 0.8458769152794002, - 0.966446056341429, - 0.9807432376279638, - -0.8036362168573965, - -0.6538864671676548, - -0.8778746962129065, - -0.15083972998937453, - -0.14167270960723508, - 0.33964418594675166, - -0.2812143347102104, - 0.8304494616104036, - 0.9565133962989008, - -0.992022685941192, - -0.8300141477505794, - 0.7963646810100471, - 0.7690079326417105, - 0.008177204820034275, - 0.9904799982556152, - 0.21131282661416603, - -0.02773507370941186, - -0.5162011997488081, - 0.9557900764378415, - -0.1454037601507695, - 0.9317383512587243, - 0.9333323715560133, - 0.3587147682081248, - 0.37575338399114544, - 0.3839944183707988, - 0.7001775120642582, - -0.8435840933361732, - -0.7129654633094669, - 0.9693865389950166, - 0.9702463541821122, - 0.8186779236805053, - 0.8193563984610264, - -0.42520065916223193, - -0.408078235770979, - -0.11004895806810547, - -0.5938033616649085, - 0.10760133154427953, - 0.2308175858918231, - 0.27465867331557703, - 0.8989363596722006, - -0.6116726510772178, - 0.9981960001107514, - 0.26340288932000094, - -0.9511699841833033, - -0.11885856787615186, - -0.1415871246230958, - 0.90501901397825, - -0.9822804407123893, - -0.9687579843082434, - 0.04892987953025137, - -0.6091168641541991, - -0.9657456941641925, - -0.7914170331494211, - -0.5980053898548441, - 0.424298968874813, - -0.9350739549344544, - -0.931429017492033, - 0.2821749590184319, - -0.22870519519148966, - -0.9108662051499866, - -0.8788537149054609, - -0.987263188303486, - 0.5427675903650874, - 0.35525438435172124, - 0.7952432908470634, - 0.9620758025479503, - 0.883250235191796, - 0.6066904018640342, - 0.836543996866388, - -0.30297639141401117, - -0.2192730549457475, - -0.6155450933342628, - 0.025042784064423795, - 0.29215446139092954, - 0.4130509300268295, - 0.9889912572128264, - 0.9440900251115781, - 0.8463182347770037, - 0.9343626510187549, - -0.7852872056296665, - -0.7741204072834909, - 0.35835520503723306, - -0.9751450749076456, - 0.7962467865043426, - 0.7698004356059722, - -0.7796956497337004, - -0.7787941636297517, - -0.8506057578968449, - -0.2112831134609376, - -0.18158340729522776, - 0.016263525391365177, - 0.02179045540542287, - -0.13288359806043656, - -0.10956033054833053, - 0.9906089896111432, - 0.7631721384472241, - 0.2966168576470394, - 0.4036623559057091, - 0.01475422297192793, - -0.5127503419685958, - 0.9245318633475902, - -0.8511611345009072, - -0.9004902101286182, - 0.9874420528189611, - 0.34914788686861664, - 0.7978745246964772, - -0.9957543928110523, - 0.9616561009953164, - 0.11193316145456868, - 0.11487776222220641, - -0.8745927850949659, - -0.2738070710634078, - 0.8730617297359298, - -0.802575120049798, - -0.22798671981099658, - 0.8781567812987823, - 0.853485929661836, - 0.8638214231087208, - -0.996629342247774, - -0.8843685821295586, - 0.9157026346408645, - 0.8904941458786927, - 0.03777713827955518, - 0.7867387433957275, - 0.8952485747645101, - -0.9445969394521662, - 0.9737277973417237, - 0.41584441052991883, - 0.3799315386098274, - 0.9836004626378428, - 0.3256410430023424, - 0.3574061512134923, - 0.762155730045263, - 0.770294082092412, - 0.9906067798521906, - 0.3400021297707763, - 0.8296638360253082, - -0.011095794374814325, - 0.7739975045437959, - 0.24334107126839885, - -0.09786633771815927, - -0.5549621685579851, - 0.39583128960440417, - -0.2212577676687313, - -0.9356773954850975, - -0.9340797870488411, - 0.9126529220856936, - -0.4595198355865153, - -0.7462905680658812, - -0.6562593433162817, - -0.6983743370516085, - -0.9939939504611061, - 0.8458988887976188, - 0.4840357520894466, - -0.2988476791593072, - -0.282902106830859, - -0.7387320502998792, - 0.9376735495387799, - 0.9662400243722675, - -0.8613422923030617, - -0.9688374311090248, - -0.4531009488314497, - -0.9637056778545955, - 0.9977207124056774, - 0.009866929552433885, - 0.8257400885539191, - 0.8308183088981597, - -0.7828722572778197, - 0.12375609949458075, - 0.9101090324281224, - 0.2695984464999299, - 0.1286491780441053, - -0.8397375360798652, - -0.8265569657473931, - -0.9541192425477151, - 0.8300039338265706, - 0.9694143917337088, - -0.707121235346987, - -0.640703219574129, - -0.092197162007686, - -0.05792043684262486, - -0.5682152429245976, - -0.15237776396242866, - -0.5999637571179371, - -0.12501613636688777, - 0.4664080216035709, - -0.18790758467411903, - -0.27784352719278166, - 0.3653924982702554, - 0.32663002160501153, - 0.8201146146057646, - -0.9964340708198903, - -0.5774727898913362, - 0.8292193513216222, - -0.9256786889112069, - -0.6326068072527236, - 0.982523584851413, - -0.7615091142089393, - -0.9407291128909836, - -0.27410200680330127, - 0.8530389199083113, - 0.8068207941493509, - -0.9799013439905122, - -0.4172423733825255, - -0.9894064251898288, - 0.36148152832055347, - 0.25120085846447243, - 0.761767189839448, - -0.7547139009150146, - -0.16491520857580133, - -0.88106182133033, - -0.7907539013593212, - -0.7174652102650397, - -0.9966982707231321, - -0.358175204866926, - 0.9836636923605382, - -0.3887404265211114, - 0.07346377997001889, - 0.09143633409549096, - -0.6840614042245091, - -0.030832159210119236, - 0.3585711980216734, - -0.9590570279100799, - -0.14403283977959055, - 0.029974494930823364, - -0.8943670787744613, - -0.25068676573694576, - 0.29321868422045944, - 0.26302226563683023, - 0.9577267161108783, - -0.06675892258345381, - 0.4648798550323724, - 0.8792157933654191, - 0.8948926994754923, - 0.021341682605918552, - 0.11698140419095897, - -0.6603027368942918, - 0.021187435658368923, - -0.8354939128488431, - -0.9632050360163754, - 0.5900659570620586, - 0.7466208286721544, - -0.11278265261032122, - -0.3700586727563885, - -0.1612691065850787, - 0.9966981652970847, - 0.9908073632444883, - 0.8856004840337757, - 0.8132197263221738, - -0.9953589831915653, - 0.6181441335231873, - -0.5001077437224057, - 0.5250403757238024, - 0.9606846271360252, - 0.9161098422692239, - 0.1633024998071197, - 0.27397852777296555, - -0.8327985529517911, - -0.1952765327357657, - -0.9447976795186329, - -0.1664268363562787, - 0.9841204377723208, - -0.4766535606000673, - -0.5133356027658473, - 0.8258296592860489, - 0.20710295093474348, - 0.9700004832729622, - 0.37618147691673376, - -0.8471590454742413, - 0.5330945893393028, - -0.24697700850497833, - 0.30246008797291546, - 0.4431770331069264, - 0.22391650936254118, - 0.9264224431455251, - -0.6716702723701161, - 0.0963189148472274, - -0.9196126083576364, - 0.8527933676193116, - -0.17982890209559196, - -0.2195848234802145, - 0.9656775603263449, - 0.866105824167026, - -0.7995093746163391, - 0.8413557549520725, - 0.7783296830203222, - 0.765461443333198, - -0.8537664139583974, - -0.8384629854782516, - 0.9417205524010104, - 0.9397748189958521, - 0.9772160229098524, - 0.9761738161820765, - 0.8760709929494028, - 0.9831658192882896, - -0.9892845453125076, - 0.0794836941232107, - -0.13942391494578416, - -0.14653977890414124, - 0.9297891827344023, - -0.733609498189909, - -0.21755628720845616, - -0.8716655089433321, - 0.14427495477666433, - 0.3505898010631597, - -0.8084329528962538, - -0.8238542912745599, - 0.8153750122592139, - -0.47758624722018317, - 0.9710167262592919, - -0.19848905395630564, - 0.0684099477747966, - -0.8449055569171876, - -0.9494041048678249, - 0.5377054741986141, - -0.8845361478597755, - 0.29901104032256337, - -0.7614540910526604, - -0.14677165107117415, - 0.008585060570211562, - -0.3993042772001803, - 0.9037881683075, - 0.9110100664352593, - 0.25353892069585005, - 0.7376172745809089, - -0.2446706440953814, - -0.9813357417059586, - -0.9062337692386333, - -0.9268213681269238, - -0.419603031611689, - 0.40372030449654206, - -0.4351539902171908, - 0.7420158406998428, - 0.6111262342044871, - 0.7169934527238376, - -0.9895292483368711, - 0.2181071664180656, - -0.870767962418439, - -0.8471622110922167, - 0.862897431316751, - -0.8177590900220312, - -0.4643816140845885, - -0.3888257313035899, - -0.46484842624654643, - 0.47982796742148515, - -0.920917229222713, - 0.03960706500066226, - -0.9516283349729572, - -0.05952722862894908, - -0.07087440877923777, - 0.9732990796758605, - 0.8445942106114677, - 0.8363058463979077, - -0.7479850165600649, - -0.8510233126875357, - -0.20132892702620678, - -0.30823203261811455, - 0.856395333020094, - -0.5587324147212798, - -0.5176686596357369, - 0.8976844073668931, - -0.15848945976903478, - -0.2880859185980347, - -0.27791331094998484, - 0.020907807306814474, - -0.8110597315642969, - 0.10624609656110837, - 0.11193605211187978, - -0.5600471227491217, - -0.6099571151168804, - -0.47641974784484836, - 0.9638250130653662, - -0.35478612266935017, - 0.9641195872942044, - 0.9675147970479694, - 0.8704223507541112, - -0.1498968146636564, - -0.915047879746594, - -0.9223892307976949, - -0.942718296129557, - -0.8040572625242883, - -0.2834203924502756, - -0.5611616713455012, - 0.7830929820234593, - 0.98939178868376, - -0.0011002305523296562, - -0.8235680059768541, - -0.9327201572323893, - -0.9524762005582984, - -0.16078042271608178, - 0.9817604321343908, - -0.18246752916666745, - 0.9966593275047938, - 0.8874705096134357, - -0.11232079678132637, - -0.9252541226241348, - -0.16217044507615574, - 0.02411945397651489, - 0.9051944468253229, - -0.4323779447347779, - 0.8742454478768802, - -0.8999482974743194, - -0.7544938234130688, - 0.9221097575190369, - 0.8296904466794136, - 0.8809710656385058, - -0.5328983502060929, - -0.7390119865812751, - -0.6175047753522888, - -0.4402516860230442, - -0.7394670665291221, - -0.7373889935801214, - -0.9041990879932897, - 0.9427262062035813, - -0.5667364704164057, - -0.5658139398607481, - 0.9930287385390301, - -0.18797933070322934, - -0.056409806907808474, - -0.06874210120523755, - 0.15317402020826476, - -0.7763559320707477, - -0.8854905673568984, - -0.5671892124561627, - -0.5598123355432647, - 0.11262703842421666, - 0.7629554942006909, - -0.8256786916508514, - 0.9748761424801143, - 0.05656592176331238, - 0.9106946158090388, - -0.21474941066500688, - -0.16445188665289895, - 0.8568823548140259, - 0.8273478630971501, - 0.6953470229539743, - 0.9948428976882329, - 0.9944340342418619, - 0.9037528462673847, - 0.6439066978012409, - 0.8950981610954685, - -0.2134770539596995, - 0.9983273081773784, - -0.8324336467043453, - -0.8697432182040369, - -0.3052176068272548, - -0.15732493027101713, - 0.1612943281669796, - -0.9327893240761256, - -0.8525800954444893, - -0.4489352162101724, - 0.8497811409666709, - -0.7346026545667389, - -0.18504097268996053, - 0.9702483961244255, - 0.07816671311319524, - -0.9946070198324579, - -0.6969606827430268, - -0.02825359241986993, - 0.49393173221833875, - 0.7536018358222107, - -0.10595296332264716, - 0.015929679452021478, - -0.7804106658901532, - -0.8687987544129353, - -0.8711842953843709, - 0.00329868154310046, - -0.9362779269849172, - -0.9921757162953369, - -0.9488340522552637, - 0.8085519263026434, - 0.7645284701577063, - 0.11265396062976449, - 0.9173892125322549, - -0.06676166566789944, - -0.707122417519346, - 0.9742035358441752, - 0.9686899515392694, - -0.08519113629415558, - 0.07160236898517672, - -0.6579238848950314, - 0.6641821827870902, - 0.745976005079431, - 0.47552362626781347, - 0.27956163592068345, - 0.04625406407676176, - 0.2977339721896854, - -0.5175142570639384, - 0.017479658845747842, - 0.5338517185516414, - -0.054005085866975576, - -0.8238700943511367, - -0.8350276588244758, - 0.28095218804022765, - -0.5338012649964136, - -0.9836010464571806, - -0.169977372932206, - -0.6764208963964584, - 0.9258623479319273, - -0.9119023032644122, - -0.7728353450283002, - -0.851396621565208, - -0.5862704492005946, - 0.8424345855374461, - 0.1592832333255315, - -0.7545266074965273, - -0.19579820251279598, - -0.05121478838993914, - 0.881659520415776, - -0.08214407513840685, - 0.891491662688725, - 0.8169500938805082, - 0.03141474500061047, - -0.26613868773080945, - 0.9975317698843188, - 0.9872353730484801, - 0.08955315765009067, - 0.7687536125174582, - -0.3358359096114206, - 0.9863716056523949, - -0.0977238610119133, - -0.5664360529827803, - -0.5650561830052615, - -0.7694055396323011, - 0.9405542320325793, - 0.37524598125592845, - -0.9915529383966363, - 0.7465583574309133, - -0.6745401780659362, - 0.34761524301848623, - -0.7397893296160513, - -0.6609731756172397, - 0.8018320940536089, - 0.030992346791597226, - 0.3840911065959278, - -0.668614437417072, - -0.9893729408276729, - 0.753982145230954, - -0.9917818402603469, - 0.783982560471981, - 0.2519199370918927, - -0.13807260580389014, - -0.3021998269902166, - 0.3903298563095133, - -0.672709155724362, - -0.7058976102778637, - 0.9911791097328626, - 0.02214771871879242, - -0.6891906011315543, - -0.30644015368864014, - 0.044184503510398467, - 0.8271020022763987, - 0.9947471973316607, - 0.6284951769594328, - 0.7774989694449765, - 0.6173124903426869, - 0.29179156969973363, - 0.3586087262566987, - 0.9778946845380743, - 0.9083837235227026, - -0.8332416598014034, - 0.8106521357422759, - -0.9176405740509787, - -0.8337122743664764, - -0.8314785354029786, - 0.41572968502145907, - 0.3346243897266551, - -0.929864783157274, - 0.9152971648878712, - -0.7322733310415984, - 0.41624861836450805, - 0.9676462721825837, - -0.725440494042656, - -0.8466265495189739, - 0.8408111620071943, - 0.2395817673220812, - -0.984365109596617, - 0.9464001134746323, - 0.36568368561267983, - -0.03478677866484911, - 0.8964855132468422, - 0.2956324600612598, - -0.9933691592347411, - 0.3778100847205484, - -0.3310329596974608, - -0.33915749917482113, - -0.8303747458917694, - -0.8063244487343608, - 0.4993224051949013, - -0.12283325453055656, - 0.998266054755471, - -0.8869808638140879, - -0.7108925069097348, - -0.9283541375441505, - 0.8357418225578636, - -0.925492158131284, - 0.9099708619039507, - 0.7924330950879691, - 0.7138387528238628, - 0.759253112977502, - 0.02251238251094826, - -0.6079692338160575, - -0.0482013986005767, - -0.6881583933870059, - -0.6664146554903143, - 0.9383725499149141, - 0.9793270277030452, - -0.8943953555305807, - -0.24264170117060904, - 0.09246575342662332, - 0.7705515456836209, - 0.7672706048530719, - 0.6448193226810157, - 0.7667737822658895, - -0.9478278713777591, - 0.9133793255025519, - 0.2891396389536117, - 0.7884158055798423, - 0.9510743748788215, - 0.6480806131059588, - 0.604912491664897, - 0.9818627292419352, - 0.9023215622063845, - 0.9064639060337292, - 0.9233380317345233, - 0.9300321743384997, - -0.9189750185452458, - -0.8479921884947701, - -0.8342412053944125, - -0.9796206482815043, - -0.12099890498598415, - 0.3719769532892577, - 0.6510840957387394, - 0.4822760755420253, - -0.6193594716940479, - 0.8879304427722035, - -0.26092269251323696, - 0.4312042771832626, - 0.5568958035526673, - 0.6041223351768125, - 0.9010748029610606, - 0.14571127993011737, - 0.4658825138770803, - -0.11130413179424231, - 0.9588818223887815, - -0.5815245403772448, - 0.48007935207348246, - 0.9308213301252677, - -0.19228764116002556, - -0.9719920685512401, - -0.6639629802933125, - -0.9597995071780279, - 0.8691689137408012, - 0.35919442256916856, - 0.16053364466345343, - 0.8757248116755972, - 0.9681338462234235, - 0.7993555418257448, - -0.8404701961822163, - -0.8934053888465158, - 0.7854654294453659, - 0.8423927491092437, - -0.1355883490812521, - -0.9979524120981895, - 0.9155045156894841, - 0.9204736335611274, - -0.8597257986159522, - 0.7849467287764342, - -0.8730349309661234, - 0.5870475211511049, - -0.92118671488853, - -0.9399856381453807, - 0.011617786406785355, - -0.6925075564477744, - 0.923732092474595, - 0.9551320738293573, - 0.9935357227930117, - 0.3165791889432185, - -0.16437933991020556, - 0.9925130238661157, - -0.06014284163606666, - 0.64720539312502, - 0.6828252333690009, - -0.18187535860874807, - -0.7866908958561352, - -0.9101002548253986, - -0.9148508806546194, - -0.12452988887561592, - -0.8883731586895646, - -0.2702858621433818, - 0.13387439029408332, - -0.27948701018061284, - 0.11651045864529896, - -0.8655608838280924, - -0.4701742479777179, - 0.9836561983059009, - -0.9913750444408143, - 0.18705472604120543, - 0.8013004767263299, - -0.8019013844403665, - -0.0650818202373351, - 0.9625348011563483, - 0.8124955101936878, - 0.8515404838379343, - -0.28578607520164545, - 0.5235147129223543, - 0.9482593841595772, - -0.9736139040065432, - -0.4123528189271499, - -0.953575295526107, - 0.9870346470286883, - -0.22716802657966031, - -0.11372540871447699, - -0.975726269634625, - -0.8985730301429367, - 0.776341858826625, - -0.9680608219193524, - 0.7843122945005728, - 0.7323866154721457, - 0.5649692970400236, - -0.9891256365323928, - -0.664766854542371, - -0.7671587391664636, - 0.023928686511392832, - -0.02425887649296531, - -0.9986317712180888, - 0.39156102455709946, - 0.9319408847357407, - -0.177773288952659, - -0.7559125249579005, - 0.9969118442103789, - -0.5842821627623512, - -0.18783857192666423, - -0.7127406534918902, - -0.7595241500535888, - -0.32212594320035104, - -0.3262916214294585, - 0.9611612956199705, - -0.06945525296007063, - -0.6057596920677157, - -0.06524949352434725, - -0.046317165695467545, - -0.20892352930318844, - -0.20096871057290155, - -0.2469083936810109, - -0.7728870573666827, - -0.45880038872334383, - 0.9750207572115357, - -0.6152434273018587, - -0.6082177804126212, - 0.28861565348281487, - 0.9778412592911571, - 0.9753161884681861, - 0.18551798116969756, - 0.8574504676656886, - -0.3239121723657626, - -0.5076326382981099, - 0.07565180002341748, - 0.7812878574286644, - -0.593510335686282, - -0.6321906894530176, - -0.7217748087146, - 0.7526992529135523, - -0.531220290662373, - -0.653686614578783, - -0.6794487046400322, - 0.8799657991962329, - -0.8108676079539822, - -0.014296913094655191, - 0.02092683531806175, - -0.12838363826735272, - -0.016471300954378137, - -0.7973609769440002, - -0.6990883970718349, - 0.33077758912923455, - -0.5592005392292624, - -0.9183228977123163, - -0.3478667694959054, - -0.08662097288033077, - 0.9985894645248587, - 0.6907877778095395, - -0.9765155030381473, - -0.9065238954630347, - 0.000667805635279028, - -0.5531372005936449, - -0.8622136456700406, - 0.8440524069890823, - -0.0765758256823875, - 0.5987548478394248, - -0.38459274312166697, - 0.4900911361066418, - 0.6063084510684417, - 0.10528383004774959, - 0.9571637673272797, - -0.9985494902270073, - -0.5501664252656703, - -0.9084444458347607, - 0.8921802149597459, - 0.4213132687707253, - 0.4249523752839196, - 0.518436913376675, - -0.6513419998394757, - 0.9934074781892495, - -0.6228834651106098, - -0.08183786352869014, - 0.962061302809412, - 0.4306283474420116, - 0.6777059974818184, - -0.49192326539490655, - 0.8762162964618522, - -0.7694258882851048, - 0.23891988075025258, - 0.8974450219712709, - 0.9529463529747683, - -0.3984867595803746, - 0.8111958619905463, - -0.6580944760694807, - -0.18860413544315593, - -0.7586292637525376, - 0.40021618121797237, - 0.9374000942466888, - 0.9560361803759482, - 0.9708137557266253, - -0.8313165177113507, - -0.8734576622765294, - 0.38363058890057977, - -0.6119106370174472, - 0.9451988304055611, - 0.8003280073997295, - 0.33327433190976535, - 0.9030514649379782, - -0.20654809656148052, - -0.8455112181553727, - 0.8448647535418031, - -0.8058444870461294, - -0.8059818308933928, - -0.5849689399777337, - 0.5817028109755057, - 0.9185616055974037, - -0.6232917232091522, - -0.12931424610719522, - -0.8991886666570506, - -0.6128842834280918, - -0.47105638995962185, - -0.7919469471427951, - -0.968515087874084, - 0.00219908225376979, - -0.20551726518864571, - 0.023479676454673463, - 0.23543238566655025, - 0.09639308517172755, - -0.8292414867973099, - -0.576174977980997, - 0.9423223011691932, - -0.2042709392623105, - -0.08535470646330069, - 0.31526569137174304, - -0.8167301473268331, - -0.9511190821303808, - 0.5089684889710995, - -0.6457882941791647, - 0.9923232590587341, - 0.7916887935575735, - -0.10251997269003846, - 0.9299961076501118, - 0.34972810099140544, - -0.8251717754503581, - 0.3987220726429306, - -0.6821905448753884, - -0.14617332663483748, - 0.7762191703288358, - 0.9282907317047395, - 0.5175656875179131, - -0.06369960459216241, - 0.7098383154890991, - 0.9112762566624417, - 0.16641739709372128, - 0.8077643734318739, - -0.7771451243577767, - -0.9895611659641376, - -0.5423710780238136, - -0.02058522123644432, - -0.6525329995287861, - 0.9951510846099212, - 0.675455953470023, - 0.6665097587234606, - -0.82456126456365, - 0.4964676260600164, - -0.6846348035918605, - -0.8206632736093696, - -0.16414772420324922, - 0.10437696622070787, - -0.9628072727607138, - -0.372515087396381, - 0.38184248330042897, - 0.3477654307575736, - 0.7988255133784018, - 0.8911589579632411, - 0.8938395624867447, - 0.5837509976896016, - 0.9746254444541224, - -0.8560178828750891, - 0.9963831465468149, - 0.8609671938155242, - -0.9976495458992141, - 0.8558746950406092, - 0.9742663341008106, - 0.12636427200421654, - -0.7215775705475438, - 0.8684997783782626, - -0.801764609721018, - 0.9411256424046733, - -0.9558936188515157, - 0.9899721915592232, - -0.6980642010792033, - 0.9396634626937009, - -0.08265844643616531, - -0.8847373915226049, - 0.781739054659951, - 0.9588085982120804, - -0.7833021731455758, - 0.08008534604413359, - 0.9917922499313508, - -0.9931857502504997, - 0.6894820117845644, - -0.2712976220663154, - 0.773061658240138, - 0.5631798565176552, - -0.9617185807866906, - -0.1552569841340214, - -0.6666423995318423, - -0.9141351953533781, - -0.8541693514985607, - 0.40593673014125237, - -0.8879973603535215, - -0.04615060067666714, - -0.3076738165135961, - -0.40970251235488114, - 0.10693997862743539, - -0.173811423307117, - 0.9957281258089853, - 0.995603963084181, - -0.965091756025516, - 0.9548486961055802, - 0.8754335045507163, - -0.7518949572428233, - 0.6756870197272722, - 0.7299151158025518, - -0.9789791914080362, - -0.05880246921153655, - 0.46467502368469604, - -0.7095144588983311, - 0.9328002419704328, - 0.5747412069605905, - 0.9824782949019251, - -0.6597057433033624, - 0.46648580424348035, - -0.16916039662043433, - -0.1718755821833116, - 0.3464520336956761, - -0.6714734315766239, - 0.8856694985491379, - 0.9538656169626069, - 0.9925743016434128, - 0.42713160120731586, - -0.8679442525109313, - -0.7073891748333778, - 0.8803366615358005, - 0.9965235292974809, - 0.3592943991391435, - 0.8896706246531463, - -0.3902567991463676, - -0.07301625983655297, - -0.9213786128977516, - 0.7453851046030103, - -0.7296820662847379, - -0.20486450576631174, - -0.5621541386118177, - 0.36672545397658274, - 0.9680342296744993, - 0.14815224661013204, - -0.08475420777864442, - -0.14931539993470677, - -0.5577226033229268, - 0.6302650744883688, - -0.4347932815057972, - -0.8173129730870858, - -0.5178670592054571, - 0.35559190560825193, - -0.2760384389198445, - 0.9887655596665221, - -0.47103138964996966, - -0.5724188046547657, - 0.9941521360306459, - 0.9944488697144553, - 0.4006740965496659, - -0.964360801521078, - -0.5753455687379658, - -0.21427079293566054, - -0.5560922033406006, - 0.27850444756715653, - -0.23856592951371017, - -0.11730465176987759, - -0.8224703125601096, - 0.14218995115506766, - 0.7163374221684395, - 0.8324742779870248, - 0.010578037568748238, - 0.9077785568345823, - 0.7442248375994447, - 0.8441837695351921, - -0.36226055293780224, - -0.28313600399121, - 0.27119396599085954, - 0.9834818929346527, - -0.12354023361253569, - 0.9633721757588031, - -0.9798988208755427, - 0.2946702988330846, - 0.03563968507637558, - 0.9951311082914172, - 0.7582820672491464, - 0.9984254957834101, - 0.022538722652180584, - 0.5571328104589861, - 0.14342874385905094, - 0.9861603615288232, - 0.32715778742894464, - 0.8129849982750982, - -0.9734647083100604, - -0.9770103984415557, - -0.35632297040777694, - 0.734791118030596, - 0.9626885488561224, - 0.39900994178439786, - 0.42925935578176483, - 0.3706354094274809, - -0.7014652428191334, - 0.9776752564010651, - -0.9605504051509807, - -0.094278314614688, - -0.2881488792274818, - 0.42932261480790895, - -0.06904294650607323, - -0.3559168393595473, - -0.1202136788916843, - 0.934698698235261, - 0.7915082357325967, - -0.6357702540413203, - -0.5634521577685616, - 0.6369333948196578, - 0.6746752609816048, - -0.7229258185372083, - -0.8014941795423904, - 0.9887827899696662, - 0.914978958565154, - 0.5737865380855594, - -0.9199519431035917, - 0.39426258117688845, - 0.9287452528045391, - 0.8483803385336954, - -0.17434941130560533, - 0.913378941341218, - -0.8162523153117286, - 0.8549204050357565, - 0.9286323829419101, - -0.6898914841567719, - -0.9836603353193191, - -0.853050526794962, - -0.5845767506144087, - 0.9697716001938987, - -0.6536114525451283, - 0.06443294268417125, - -0.6196281223536386, - 0.24573851084982712, - -0.25949897140364003, - -0.6694045421491418, - -0.621148927415655, - -0.344672722624042, - 0.9142865988759515, - 0.9770506048992308, - 0.27689017800836874, - 0.25786859001538637, - 0.9061673702675307, - -0.46029166605489946, - -0.1067863983749858, - -0.13420304856317294, - 0.7093867930432098, - 0.5530550831454621, - 0.8833541012084342, - -0.9426518205104332, - -0.749654813960226, - 0.7286093605183982, - -0.9674204633047192, - 0.9505486101689207, - 0.9920989930123321, - -0.47108939259949906, - 0.9743106162721235, - -0.3787472820444968, - 0.1466566583164642, - -0.3441131872089003, - 0.9510737445656974, - 0.32035875789596946, - 0.9845810150141905, - -0.06545649669675921, - 0.035276296810893296, - -0.1872832167292307, - -0.7502361454224038, - 0.08358143320822872, - 0.9406064687018002, - -0.45432375091669097, - 0.35242347056901163, - -0.5563304384265367, - -0.8991200421199151, - 0.046623932379199866, - 0.13772599206692368, - -0.503306716288837, - 0.20310899110479966, - 0.6588565887392169, - 0.32554975265463126, - -0.7851927817813787, - 0.3635950721101053, - -0.6598477250541271, - -0.6788356446627137, - 0.26475602671461446, - -0.6311198558687292, - 0.8875953526218935, - -0.1912082156503925, - -0.4651841049547726, - -0.5952874830930838, - -0.07477735034106478 - ], - "y": [ - -0.8255352482725563, - -0.8204117348975157, - -0.15053820641514795, - 0.34156328555733406, - -0.865017642635572, - -0.8647284524954223, - -0.4919740519855099, - -0.3841336101333821, - -0.5022694021882802, - -0.08359854129266285, - 0.3232567341622738, - 0.9429959347173451, - 0.5239779976088823, - -0.5267734671921767, - 0.43911213876555455, - -0.22921785273901052, - -0.662030856247487, - -0.835548969824328, - -0.4287207849432869, - -0.8251476184292277, - -0.8190244973880275, - 0.9157608117717279, - 0.04930369683672868, - 0.9408586425395125, - 0.9614565232159409, - -0.7842452750642577, - -0.19404648456596316, - -0.9966717949769558, - -0.31509484047540476, - 0.3477296882225672, - -0.16662933686268802, - -0.13105435450902375, - -0.9790714322600312, - -0.9691718254328148, - 0.8989428568458022, - -0.745352706744639, - -0.9319329882449744, - -0.9298298795468334, - 0.8678541693206899, - 0.9895478430015846, - -0.5788542651523627, - 0.18297761657503986, - -0.1704662310667489, - -0.08423603151833692, - 0.9944582750221188, - -0.004827934063892675, - 0.689404256893109, - 0.5117060057391962, - 0.5270144507255645, - -0.2541511442152843, - -0.1593013009613016, - -0.5864894065298017, - -0.6733524915400829, - 0.476734148239911, - 0.9817930759266399, - 0.9188422459330433, - -0.9389760696485545, - -0.9513256097096858, - -0.5542884829386048, - 0.17707050216056786, - -0.10924510022365311, - 0.3625818121152379, - -0.6030651178131273, - -0.6090919489939511, - 0.9968889888512666, - 0.1268282870628801, - -0.9747124920518264, - -0.964376392104647, - -0.8525772530550826, - -0.2906891676628138, - -0.9472765725654566, - 0.35178792321277047, - 0.346807940081572, - -0.9277636074179624, - -0.9237204582619074, - -0.9196436493526728, - -0.7120604362474203, - -0.5341337906137036, - -0.695706504697809, - 0.23373400104359413, - 0.23200092656111343, - 0.5689480971971064, - 0.5695548925901612, - -0.8986057486384182, - -0.9075984044362395, - 0.9910878013109895, - 0.7988811510063875, - -0.9863683947755496, - 0.9712729761717506, - 0.9568014916737386, - 0.423223244145297, - -0.7861021762096927, - -0.030273646988373603, - -0.7414598065414671, - 0.30586562917868326, - 0.991559690536107, - 0.9200501409914003, - -0.42346628144480997, - -0.17518322068283879, - 0.2340106763906473, - 0.9975559666707134, - 0.4297787177007882, - -0.2529645357955891, - 0.5810504042049169, - -0.7925561764691128, - -0.9004573547038972, - -0.3478847923533306, - 0.28697953098749346, - 0.9574537747155183, - 0.9581921233803322, - 0.4106430588522319, - 0.41494189202012693, - 0.15385428091195844, - -0.8357146392635689, - 0.9067287012733201, - 0.5466576469139673, - -0.2684650620447498, - -0.38431573402189395, - -0.7874872352451482, - -0.33804467666624216, - 0.9492702129484695, - 0.9472247560619873, - 0.7772826813837531, - -0.9981432103533587, - 0.9465096345342706, - 0.8742963214884965, - 0.12226127482795483, - -0.3269508659088606, - 0.5304811867273139, - -0.3057624006692187, - -0.6070469741933973, - -0.6208887621815442, - 0.9298034212440007, - -0.2137056347269605, - 0.5968666693838006, - 0.6253980813317502, - -0.6207644756917838, - -0.6057328572113259, - 0.519925510563296, - -0.9734714670300604, - -0.9740614572100874, - -0.9978973610456658, - -0.9911854678059377, - -0.9889388373263068, - -0.9912967859281763, - -0.13060827494076538, - 0.6449487676865006, - 0.9492466778250417, - 0.8769615172042697, - 0.9988908037160034, - -0.8552456065248762, - -0.344938551965082, - 0.5220063879582806, - -0.4166356416646905, - -0.13206951169912298, - -0.9354731419900295, - 0.594602323285501, - 0.06056006642170832, - 0.23369054758704197, - -0.9906274253882189, - -0.9908426185555425, - 0.4805656153941708, - 0.960543097275265, - -0.4861615591949421, - 0.5943853916517713, - 0.9727050886987834, - -0.4765114467263938, - -0.48044538178097274, - -0.5022099682247565, - 0.04648247379299457, - 0.4644991134953013, - -0.40044755790133824, - -0.4531597328467395, - -0.9972110313698025, - 0.5880550096485834, - -0.4433865206135067, - 0.32676786158691273, - 0.16995603146447177, - 0.9075883938067092, - -0.9231869744082916, - 0.15247360978893096, - -0.9366302180608017, - -0.9210858999611112, - 0.6392358309764657, - 0.623942652168276, - -0.07561812534629242, - -0.9349980827234035, - -0.5207988916855705, - 0.9989450542688384, - -0.6316192103087653, - 0.9633486487581095, - 0.9942944905483233, - -0.8288710232171778, - 0.9133058184509976, - 0.9735160988483818, - 0.3504637686542823, - 0.3551721999126862, - -0.34613069590058526, - 0.8818139575477689, - -0.594863439182959, - 0.7523917120428452, - 0.7135765366211323, - 0.027650074166835206, - -0.5256335180539625, - 0.8711999703854686, - -0.9502784187796132, - -0.9530406674085556, - -0.6623685606028488, - -0.34418426982050093, - 0.19884908397793452, - 0.5055226498055849, - -0.23517657934975475, - -0.8743788220763331, - 0.04043002232915425, - -0.020134256770818374, - -0.9983902596649425, - 0.5570459974589086, - 0.5522992418842364, - -0.6183701954050117, - -0.8389702406016704, - -0.4081966964438171, - -0.9605625642693469, - -0.9889525136442507, - 0.5412787402523502, - 0.5594141387348049, - 0.29760967054487764, - -0.5479177320034826, - -0.24269521858524787, - -0.7007860141933484, - -0.7580144186878631, - 0.9725080460403414, - 0.9800016702803844, - 0.8012347554251382, - -0.9810427848943691, - -0.7790808125507963, - 0.9905810378000434, - -0.8827335431306016, - -0.9773333992303539, - -0.9519232430029997, - 0.9216408804333217, - 0.9323362741884803, - -0.5694140032688946, - 0.013443171712731877, - -0.8140282364971562, - -0.5486198107595092, - 0.377268858804264, - -0.770643848801302, - 0.13437677475681647, - 0.6009025637437962, - 0.3267244576080792, - -0.9597985459100488, - 0.5179719841446444, - 0.5885881658451648, - -0.1899241488137482, - -0.889970301330475, - -0.13199934448479902, - 0.9305688523556219, - -0.9621204946659245, - -0.6454142452244602, - 0.6527068002902687, - 0.9834057997430514, - -0.4547260406756211, - 0.5738724701749537, - 0.6519225793817653, - -0.041989333617261745, - 0.9316279459397654, - 0.10680665705810441, - 0.9174338021307439, - -0.6672027599602924, - -0.8427047200664053, - -0.7148407925432313, - -0.9971115568127122, - -0.9240619382705461, - 0.27925242969363084, - 0.9823857624714184, - -0.9961116177835122, - -0.4291114490162434, - 0.9666708273460186, - -0.9364767477512416, - -0.9543198835830526, - -0.28411594717273203, - -0.9940605361853821, - 0.8828500858884231, - 0.46121002448917253, - 0.4026492086149087, - -0.9959840295131246, - -0.990770964960097, - -0.7456324884637221, - -0.7779837092001439, - -0.543642520641604, - 0.22380199752312657, - -0.8035254593515502, - 0.6623513115409855, - -0.08578907841101656, - 0.9264633719922475, - -0.9844131515190868, - -0.06817669184824526, - 0.018836647011728918, - 0.4110628481612498, - -0.5779320769586906, - -0.07230192961812855, - 0.7617941949115112, - 0.8470440839169722, - 0.8382147336610137, - -0.27478888153970615, - -0.3761997091659869, - 0.19502970281668064, - -0.9595810610032856, - -0.5429937642824804, - -0.9695472912714163, - 0.3236601656796271, - 0.9853781537575341, - -0.1658282151183294, - 0.872569679890708, - -0.854633791628876, - 0.559144754521846, - 0.9764747783313973, - 0.23122384948607183, - -0.9198327170760974, - 0.5302011587217889, - 0.8388063670699751, - 0.9681209534095969, - -0.9481329874791489, - 0.8947287788761176, - 0.9610598525004939, - -0.374654195437827, - 0.7390120593012005, - 0.9935505012051782, - -0.3855859114750874, - -0.5211746346739011, - -0.9704765454509768, - -0.9716041132523778, - 0.10631645270811851, - -0.49743136922753284, - -0.5882646111860801, - 0.537628858218274, - 0.6264011565228998, - 0.6355427483289763, - -0.5147389345600197, - -0.5410118836296313, - -0.3340114756530321, - -0.3226458052396107, - 0.17208438869656886, - 0.16265946939974996, - 0.4668772815169451, - -0.1509070601810157, - -0.0913949119231547, - 0.9798204802685042, - -0.9881112419429068, - -0.9821231455988676, - -0.36679579628345077, - -0.6730713587218484, - 0.9752251550907872, - 0.48900700880650966, - -0.9819260448301116, - -0.9244352413392254, - -0.5850970758084053, - -0.5631503042251229, - 0.5625539193745732, - 0.875934794166562, - -0.22708100568422862, - 0.9785823919751527, - -0.7385694308646891, - -0.5128100410696063, - 0.3026882242212258, - 0.8344115220357227, - -0.450649698011746, - 0.9528632591153559, - 0.645249679047681, - -0.9861077544399057, - -0.9968346291856655, - 0.8875557063274597, - -0.41788601680808996, - 0.4017248127910581, - -0.9616880799341886, - 0.6727085560766426, - -0.9579284030092416, - 0.18960696950293407, - 0.2688607079202031, - 0.3720913760572815, - -0.8890056077940802, - 0.907822596273389, - 0.8989790627599097, - -0.6664036590224514, - -0.7892679144855291, - -0.6804071951251446, - -0.1309240705554946, - -0.966823149145189, - -0.4633668111267119, - -0.4987479251448542, - 0.5027547671035543, - 0.5733016415001384, - -0.8419213245933654, - 0.9203645773735815, - -0.8816594671034303, - 0.8757873787149706, - 0.3861098078360327, - 0.997963471668817, - -0.24891916493391875, - -0.994622206603851, - -0.9584682820417387, - -0.22462014526136537, - 0.5277384675776302, - -0.5382378289513975, - 0.6623677555732086, - -0.5108187219422692, - 0.9786299462205497, - -0.6994382721717278, - -0.5149849240508819, - -0.8276476221273118, - -0.8417801952274118, - -0.436637777316808, - -0.9814380665244195, - -0.9544072620516304, - -0.9530934580051758, - -0.9983552150930884, - 0.5783439397823029, - -0.9925521045201355, - -0.9911581156418097, - -0.8234368184558153, - -0.7856039350139777, - -0.8716399514439694, - -0.1599276622936476, - -0.9317447727563328, - 0.22822350181895637, - 0.23100910482546727, - 0.4789494269229934, - -0.9830197301159899, - 0.4014159291477734, - 0.3463822498380838, - 0.33168576087794327, - 0.5870358439674228, - -0.9558654525585143, - -0.8233239529180576, - 0.6204698245579082, - -0.13768329225023296, - 0.029393670016867414, - 0.5193257693326359, - 0.3528620670256753, - 0.30203746535072684, - -0.9847039281890472, - -0.1746989536335369, - -0.9763802013333597, - -0.05986017669654027, - -0.45953886943929695, - -0.2952766392980146, - 0.36740709271018107, - 0.9794977002071137, - -0.9978184796519939, - -0.21545661065228044, - 0.8992655876149411, - -0.4839661403118066, - -0.42991683555336274, - -0.6550944268451488, - 0.3563669701881995, - -0.5571029880976732, - -0.4721646293915158, - -0.8426929900266722, - 0.6292993496175523, - -0.761133962450917, - -0.8915134467848125, - -0.6710866786342208, - -0.5658644766273987, - 0.4245018745887121, - -0.3317610969145652, - -0.8199628773792684, - -0.8219343900386166, - -0.09641598015495616, - 0.9794874200100583, - -0.9956922941360593, - -0.991906016480079, - -0.9841407951295006, - 0.6223351227170542, - 0.45879702117106824, - -0.8208342799372086, - -0.8226322062604003, - 0.9783517985365592, - 0.6447110717339476, - -0.5565504883735204, - -0.20509186481767638, - -0.9887133383209242, - 0.40848317299420117, - 0.9756379010608555, - -0.98044317732211, - -0.5140707393652417, - -0.560016701818856, - -0.7111642999825465, - -0.02447140895499889, - -0.08774267287085769, - -0.4221043908448422, - -0.5941997580352117, - 0.4370808835996163, - -0.9605761978664632, - 0.01572259896242581, - -0.5478203775035718, - 0.4877694080899708, - -0.949440217630634, - -0.9672476900325908, - -0.1796111877730897, - 0.3589427725833222, - 0.5215029598625865, - -0.8872820236591518, - 0.5238649940820465, - -0.6582283997933366, - 0.9648118289480534, - -0.23628713343972393, - -0.9918093386944117, - -0.0879645472125333, - -0.7092700741530127, - -0.9968827700244092, - -0.865963668539226, - 0.6465064432060208, - 0.9935110397497144, - 0.17530159470644638, - -0.6219792712394459, - -0.4889346418327979, - -0.48074671930026824, - -0.9981885330200654, - 0.3499639528319144, - 0.0045588159003557205, - 0.311955543537383, - -0.5871330521260285, - -0.6426980604477012, - -0.9913368108290679, - 0.3902354073619367, - -0.9244432171335353, - -0.6746743166241478, - 0.21441384085593396, - 0.22675930362588084, - 0.9876538372823792, - -0.992872137021109, - 0.7372167298804176, - -0.74282227749161, - -0.6638300607331206, - 0.8760388442288287, - -0.9563396440695928, - -0.7802656560832668, - -0.9516453597897705, - -0.8256422095371373, - -0.9951008280184067, - -0.8359864152742323, - -0.996952258054832, - -0.5367626403019046, - -0.5011501733758897, - -0.9546350465934822, - 0.8403126714443365, - 0.17225735301892411, - -0.9511473145856298, - -0.6961761827333119, - -0.3538113056908575, - 0.405779390100723, - 0.6329078675121348, - 0.5157470876786571, - -0.7946474606021607, - -0.5305908553664683, - -0.983122096764506, - -0.6399788781046556, - -0.9792705502913357, - 0.996566557376774, - -0.46299156896201726, - -0.9951003103511447, - -0.4431472159550505, - 0.5693939215200136, - 0.9974563044843067, - 0.9592230824623617, - -0.05247117665964974, - -0.11179372386452141, - 0.993014229217671, - -0.637499589103001, - -0.930126551552079, - 0.15605945468311735, - -0.9186822144972344, - -0.8212225461550406, - -0.8219759031303386, - 0.6339993597919305, - -0.33440820050043996, - 0.9239170381117426, - 0.12024212969646961, - 0.6594214816029887, - -0.7337049168037938, - 0.9361058946735781, - -0.662508376746304, - -0.7464394961015065, - 0.5952548422556551, - -0.9959417297986982, - -0.9175264668861809, - 0.7245523582836633, - -0.011023279198043955, - 0.6526872839783324, - 0.11143280068958586, - -0.6194952993634831, - 0.5082135711294178, - -0.2492028843794333, - -0.9505654246224489, - 0.9094052202309243, - 0.6972076327941037, - 0.7051448910722328, - 0.04098964302986998, - -0.9959573902648147, - 0.7215499902619258, - 0.9508769234931601, - -0.9963212667605679, - -0.5163750450782332, - 0.060060422054765285, - 0.7190027384406572, - 0.6258736722748073, - -0.7471762146520804, - -0.9549820203537015, - -0.926726322349091, - -0.19139842457217654, - 0.4072095348425569, - 0.542894262386066, - 0.5788283357202133, - 0.3869213953996835, - -0.5482020185563802, - -0.5520116948197223, - 0.8878696583973817, - 0.939513892099173, - 0.3619332202384942, - 0.35879050168774806, - 0.6788002452400379, - -0.9047669157653869, - 0.24133927908602354, - 0.6856776042338637, - -0.5289755688176314, - 0.5378141985642646, - -0.964074063800363, - 0.16950966283944047, - -0.31861388857558715, - -0.9273029373422139, - -0.9955785482465723, - 0.4032954046913027, - -0.9428626023810004, - 0.10362253045598252, - -0.9133694967784286, - 0.9401617420453954, - 0.9387462393550491, - 0.5558925242674034, - 0.5899906299627287, - 0.8558389993775974, - -0.9711967625979409, - 0.03695753861529057, - 0.46050928250347795, - -0.6810293293669389, - 0.3702689477723579, - 0.5453903171026884, - -0.3725028716209639, - -0.4103097640777708, - 0.6071519428064766, - -0.6966673079930809, - -0.6362907256677447, - 0.9864751610008337, - -0.7860656071258892, - 0.9976601659601576, - -0.7167016554700699, - -0.7248464334425573, - -0.3428316273384551, - 0.17124893565094365, - 0.4429007044051129, - 0.9565149300620567, - -0.7920220579576052, - 0.6363094174770558, - 0.6346600771238696, - 0.7585336167967268, - 0.6401164993166405, - 0.3149647141319306, - -0.4053116188117925, - -0.953571897318286, - -0.6129750583789236, - -0.3060756646731436, - -0.7598612847852769, - 0.7858016154420852, - 0.06149738641641838, - -0.41938111870091577, - -0.41853306191246004, - -0.3822789254540941, - -0.36388146432695606, - 0.37774070291431566, - -0.5269757448586527, - 0.5486232244266105, - 0.19071150325914307, - -0.9775521842521001, - -0.923990823485077, - -0.7443731438826771, - -0.8732937234917871, - -0.7799895821771066, - 0.45127457517291464, - 0.9646014346986869, - 0.8965916541292179, - 0.8240171009311944, - -0.794996309289464, - -0.13180575295349342, - 0.9856898583284898, - 0.8776416659240233, - -0.9917050739861767, - 0.2627654146298554, - -0.7839767254173707, - 0.8701601608688659, - -0.36008630876887543, - -0.9764687867716564, - 0.23233832704835009, - -0.7170237886375944, - 0.2762877712000619, - -0.49100678625213895, - -0.9244327789693956, - -0.8773461965620084, - -0.4811836929857138, - -0.24394458082619505, - -0.5993004734052512, - 0.5370098953686752, - 0.4465709165335519, - 0.6141971517785224, - 0.5328614521961178, - 0.9899894560628789, - 0.03180789626324601, - 0.39572364081725436, - -0.38879708689338505, - 0.5068634153834554, - 0.6181114681469885, - 0.4860603308418413, - 0.7888659802854733, - 0.38467199277309194, - 0.33846342136030294, - -0.998169095540122, - -0.6246050016124599, - -0.3796002759474494, - 0.2855382024271887, - 0.08367589617079661, - -0.9448322938829007, - -0.9837631868989909, - 0.09420159401394203, - -0.9961868960713917, - 0.7325777962939315, - -0.7262110056692437, - 0.9737771397420847, - 0.6160419077469632, - 0.41265592070860346, - 0.39684330160682474, - 0.9880854123921798, - 0.45491699007786557, - 0.9558016467988966, - -0.8203083785155271, - -0.6943024254669933, - -0.991236690282915, - 0.49975369015748716, - 0.8764616009432953, - -0.1730107756841017, - 0.021320642854378832, - 0.9536559163422844, - 0.5472114389637466, - -0.5910652027942277, - 0.9955639891986278, - -0.25270416807327517, - 0.5415359738661829, - 0.5220434625161023, - 0.9565928291889818, - 0.8482531002769552, - -0.31389587127295443, - 0.22175174300170009, - 0.9084461869639944, - -0.29047587777254, - -0.15485655395028722, - -0.9702528475774005, - -0.9845654454095891, - 0.20663268088701933, - 0.43677649413004627, - 0.6280387027623721, - 0.24734795967839535, - -0.6048849011127202, - -0.6780051316959183, - 0.8198179218769531, - 0.09830848722754892, - -0.7434946220768659, - -0.6367052491051599, - -0.7880314738055036, - -0.8063651034615392, - 0.006322117528863087, - 0.9111349988406146, - 0.3484804464844777, - -0.9701595860251785, - 0.651408099314772, - 0.03291786154121707, - -0.8085969363685565, - -0.9543838379489611, - -0.6618322642782825, - -0.5961323566313596, - -0.9358623480955697, - -0.9386951756349645, - 0.15674318113934826, - 0.9959594119230158, - -0.7881669502039464, - 0.9948291457145735, - -0.9718590551107088, - -0.9749203805066987, - -0.9763548386895636, - -0.38101889535310285, - -0.6230676904844975, - 0.8866546175960123, - 0.1819465368482061, - -0.7826991198547363, - -0.695983804960952, - -0.9407796922241459, - 0.10902985489101454, - -0.214148737096058, - 0.9800290698157632, - 0.5118498732711855, - 0.9335067882224102, - 0.8534083833104794, - 0.9951757217562025, - 0.6172974378531575, - -0.8006968629317246, - -0.7701798226125961, - 0.5853355402178327, - 0.6556112670776465, - -0.8429688506732275, - 0.7478451696542875, - 0.728054957528689, - 0.4711629359706063, - -0.5526334790167361, - 0.9986347405253257, - -0.9972484933811276, - 0.9850173464296249, - -0.9759329562069681, - 0.6016402002746797, - -0.7107785938559013, - -0.939090033985266, - -0.8263611053630859, - 0.39408223619519145, - -0.9164134025698247, - 0.9954112242492701, - -0.022421774179881535, - 0.6316689164999165, - 0.20018705203996226, - 0.41952034427639573, - 0.9845251575054128, - -0.8303031075809627, - -0.49034549945099914, - 0.5306291429243873, - -0.9944626822729532, - -0.7936153874038749, - -0.8911858974538134, - -0.863529288180807, - 0.7785428099522232, - -0.9919754849044373, - 0.2239012387204069, - 0.004892565491968523, - -0.7712832285617899, - 0.41404648309675274, - -0.4505912279858346, - -0.900065894025811, - -0.9020545716660706, - -0.8513799485484352, - -0.7254818039961546, - 0.07240179691136847, - -0.730432187556969, - 0.9955823054572349, - -0.23087680169956912, - 0.8912779745628261, - 0.7267096657641446, - -0.8654370819249444, - 0.46655565194035414, - -0.6005848488318677, - -0.9624604324062298, - 0.2846172370316595, - 0.29223522848854944, - -0.9118502109860093, - 0.5407511294479089, - -0.7502169617419224, - 0.9809994863619697, - -0.6290368483472871, - -0.9100767123523125, - 0.3398121344003998, - -0.26969830707312514, - 0.18967591065849976, - 0.5484509260059554, - -0.47656589657385595, - 0.9203919974831405, - 0.7583690514115937, - -0.25723015794092463, - -0.5967484208156618, - -0.9375689569784036, - 0.41994105171872514, - 0.9774832989356227, - 0.5219208503916154, - 0.5320295848777091, - -0.5823225828209392, - -0.5761577198994456, - 0.7888061990559402, - 0.8070711999609276, - -0.38129884025919236, - -0.7777446368959414, - -0.8713308085679067, - 0.43516876511719704, - 0.7733294622093728, - -0.7389753422087345, - 0.6071737111650872, - 0.24097715615951437, - -0.982681682745724, - -0.9749294728094064, - 0.99834740168838, - -0.9695210778411, - -0.9033373464245752, - -0.5559891962069011, - -0.8151864616469656, - 0.3247002304137351, - -0.9753475592812392, - -0.9876034305191363, - -0.9439804260428855, - -0.5373626219398612, - -0.28106305708850754, - -0.8580076009901673, - -0.7594055153550993, - 0.05493076832738348, - -0.6095105437944078, - 0.9935559112636633, - 0.27875569330129824, - 0.9119179132677037, - -0.5617727315257993, - 0.9127721987293356, - -0.7198765199070255, - 0.9883132368916265, - 0.6289239463053398, - -0.3704843359949918, - 0.8521408049133437, - -0.5006990281083205, - 0.6935206668375773, - -0.3292934609662325, - -0.9818423059882716, - 0.5247598839846849, - -0.6263502755952511, - 0.12320262970080395, - 0.8350510040668828, - 0.997922012292708, - 0.7517686919860593, - -0.03412226839569622, - 0.7113945003827288, - 0.7156186212660368, - 0.564651721726941, - 0.8629274478078235, - -0.7276433138221764, - -0.5678484713135002, - 0.9842531508546319, - -0.992470165813814, - 0.26244008858839996, - 0.9264976186900533, - 0.922346236647553, - 0.9332902963543958, - 0.5975959625229307, - 0.4345807090558765, - 0.43201917520752314, - -0.8021240254536641, - -0.20378901688702253, - -0.5021524279976237, - 0.04969683517426362, - -0.507641064657219, - 0.046724558536460244, - 0.5153446638070093, - 0.11977008052372985, - -0.8386118476005384, - -0.6883342307938684, - 0.48462081275639896, - -0.5565194910948881, - 0.29006318288303623, - 0.2790108148004248, - -0.08273339872081178, - -0.4339177640708521, - -0.14781879233508366, - -0.9928852966850138, - -0.45260400521868754, - -0.6220191951263087, - 0.20697659677700386, - -0.6167761359256422, - 0.9933906922506657, - 0.11602799915340731, - -0.0984484156237051, - 0.7197983777396444, - -0.9608313087973923, - 0.6318366106471894, - 0.8203022088842203, - 0.27145950504847505, - -0.9848745824182469, - -0.7407734986216908, - -0.4003058277738374, - -0.5129041539249956, - -0.9089870980095534, - 0.4532137177953334, - -0.9906178117197053, - -0.9494255016917166, - 0.9041019775891317, - -0.9915262058085091, - 0.9821097150722305, - -0.0497978505337327, - -0.03210266663990664, - 0.2589218720170189, - -0.28810943499367697, - 0.4755328681218996, - -0.6507058952284295, - 0.7301125442768521, - -0.6774432288400475, - 0.1739860882631492, - -0.9961967096054698, - 0.8795697164537659, - -0.6624221462679646, - -0.3580987086861383, - 0.8046380610176811, - 0.11878879133615299, - -0.7474709852026187, - 0.8813810066835016, - -0.9830194613021237, - -0.9830595621358947, - -0.9219554896389744, - -0.7168418909276492, - -0.45157640148404804, - -0.29360110754451024, - -0.10702441415410972, - -0.8975502272357996, - -0.4941323344157519, - -0.7019744593306004, - 0.46524582485108906, - 0.06607762596866756, - 0.929544437578113, - -0.45213212595820523, - -0.9018585617674243, - -0.9952522130521638, - 0.38742269697294, - -0.6620730699950849, - -0.6782586767413671, - -0.951566101650515, - -0.822571595522842, - -0.9273649056418386, - 0.22365904341167045, - 0.9750990484048865, - -0.989208805499306, - -0.8940895560366243, - -0.8262832274034777, - -0.7729332191918854, - -0.5225909784991271, - 0.5560219501247491, - -0.8519593723870876, - -0.930237145681395, - -0.9581222510157521, - -0.11047157866953339, - -0.8776690486973105, - -0.8173949246693808, - -0.09599220296266564, - 0.09141045273233682, - 0.9111704455005996, - 0.2572362110302912, - -0.8154998363228063, - -0.9520923993354733, - -0.826409248563769, - -0.9553777340007348, - -0.9691661681651285, - -0.9752100256970859, - 0.5552996994146897, - 0.9880702898289677, - -0.6958052705188891, - 0.4768793696436483, - -0.9983775878453908, - -0.4158346954232737, - -0.6620435011885746, - 0.5335700317071154, - -0.9189200647612628, - -0.957499036120617, - 0.9596292241975286, - 0.14228897901966234, - 0.9912444176446105, - -0.0887942970442988, - -0.16879303315004063, - 0.9531246452527, - -0.9971881554023172, - -0.021248744966201518, - -0.6470152046096903, - -0.001239947097909024, - -0.9967360610784409, - 0.8267710777736101, - -0.9631708314457441, - -0.09891921489266553, - -0.9410415038929993, - -0.5768031533780641, - 0.06333568638198932, - 0.20881619810461527, - -0.9198577625750696, - -0.6764144331032096, - -0.24138481848784515, - -0.9134527730167494, - 0.8924631690523049, - -0.9196090707802554, - -0.6881216644384623, - 0.14166120180962577, - -0.23412298785043018, - -0.9934566229795633, - -0.955572172095593, - -0.8989244354731505, - -0.9963703231330402, - -0.8784016086496867, - -0.983323275606817, - 0.3171001003031346, - 0.6073824483430992, - -0.6995765100919469, - -0.8215879065609347, - -0.7672813528252495, - -0.7334864347609142, - -0.6782758494007252, - -0.4099334561823913, - 0.11983358087714494, - -0.4010807732166282, - -0.8131690860132206, - 0.32847503286466373, - -0.9144862599985322, - 0.363777522785328, - -0.5276532203981913, - 0.98353113199693, - 0.39806531635712517, - 0.5764737798818539, - 0.5153787303880275, - -0.36429752387663844, - -0.7171593369012476, - 0.14948186364616217, - -0.5034572171588086, - -0.803829449652192, - -0.18587379190106312, - -0.7482504330122639, - 0.9956028230805242, - -0.7761780863890706, - -0.9579740634003018, - -0.8774688491961578, - -0.7192919322034618, - -0.7781343826716214, - 0.936720176513901, - 0.3758580859865484, - -0.20132467480232136, - -0.262919935404877, - 0.9504592342392334, - 0.4115419926456455, - -0.8259167535288975, - -0.9727009778009383, - -0.44868266230548065, - -0.7020458805950884, - 0.8284917924727928, - -0.4667481685234226, - 0.3272825118909703, - -0.4440515201480072, - -0.6586536002915587, - 0.05425370903862663, - -0.2427186118777309, - -0.11157685905700873, - -0.876114500822604, - 0.1016708660477061, - 0.9176190577358515, - -0.9830934512383405, - -0.4090643562949676, - 0.2510769115171841, - 0.9441729448871917, - -0.1549755215420347, - -0.9956663908830824, - -0.49569808551663075, - -0.9798285540153217, - -0.6551522660101612, - -0.22111338325490346, - 0.3225244787764121, - -0.8817618930680943, - -0.9167852117734514, - -0.8227996735636478, - -0.42918597716454643, - -0.8519530802703029, - -0.694449223189137, - -0.8571280000275336, - -0.7435966683368184, - -0.7477258656763877, - 0.9371605967369754, - -0.6164969419001611, - 0.9155501452652229, - -0.6700439614228991, - -0.6968433764459173, - 0.9596094330389503, - -0.6371884805347138, - -0.4344692858125368, - -0.7148380563572849, - -0.8582773427004956, - -0.7964407301239446, - 0.9962262148661752 - ] - }, - { - "marker": { - "color": "rgb(200, 100, 200)" - }, - "mode": "markers+text", - "text": [ - "mammal.n.01", - "placental.n.01", - "ungulate.n.01", - "carnivore.n.01", - "rodent.n.01", - "canine.n.02", - "even-toed_ungulate.n.01", - "odd-toed_ungulate.n.01", - "elephant.n.01", - "rhinoceros.n.01", - "german_shepherd.n.01", - "feline.n.01", - "tiger.n.02", - "homo_sapiens.n.01" - ], - "textposition": "bottom", - "type": "scatter", - "x": [ - -0.05009285016206634, - 0.0011134916190881743, - -0.6091168641541991, - 0.8114235010495762, - -0.6538864671676548, - 0.836543996866388, - -0.8522020393283346, - -0.14167270960723508, - 0.11193605211187978, - 0.18705472604120543, - 0.8132197263221738, - 0.4130509300268295, - 0.4964676260600164, - -0.14653977890414124 - ], - "y": [ - -0.08359854129266285, - -0.22921785273901052, - 0.4297787177007882, - -0.1704662310667489, - -0.6733524915400829, - -0.33804467666624216, - 0.34156328555733406, - 0.9188422459330433, - -0.9911581156418097, - 0.9536559163422844, - -0.5779320769586906, - 0.8742963214884965, - 0.8629274478078235, - -0.9821231455988676 - ] - } - ], - "layout": { - "height": 800, - "hovermode": "closest", - "showlegend": false, - "title": "\n2-D Visualization of model trained on mammals subtree
\n50 epochs, model hasn't converged", - "width": 800 - } - }, - "text/html": [ - "
" - ], - "text/vnd.plotly.v1+html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "model = PoincareModel.load(os.path.join(models_directory, 'gensim_mammals_epochs_50_dim_2'))\n", - "figure_title = \"\"\"\n", - "2-D Visualization of model trained on mammals subtree
\n", - "50 epochs, model hasn't converged\"\"\"\n", - "iplot(poincare_2d_visualization(model, tree, figure_title, show_node_labels=show_node_labels))" - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "INFO:gensim.utils:loading PoincareModel object from /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_200_dim_2\n", - "INFO:gensim.utils:loading kv recursively from /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_200_dim_2.kv.* with mmap=None\n", - "INFO:gensim.utils:loaded /home/jayant/projects/gensim/docs/notebooks/poincare/models/gensim_mammals_epochs_200_dim_2\n" - ] - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "data": [ - { - "hoverinfo": false, - "line": { - "color": "rgb(50,50,50)", - "width": 1 - }, - "mode": "line", - "type": "scatter", - "x": [ - 0.912557472068119, - 0.861897845047705, - null, - -0.9443430116801966, - -0.9195223541018899, - null, - -0.6507465906425375, - -0.658548383207663, - null, - 0.36755545825119135, - 0.36644156163229963, - null, - -0.8563857188092047, - -0.836863319812823, - null, - 0.9978601616650759, - 0.9845669279825296, - null, - 0.7790808872998797, - 0.7704619723265075, - null, - -0.9703855102436038, - -0.8999044328670354, - null, - -0.457006014567949, - -0.9959654402984934, - null, - 0.382338166376639, - 0.32546363958087715, - null, - 0.020704106759058104, - 0.013751825928993907, - null, - 0.13789317143985486, - 0.1332238456654993, - null, - 0.9249559648634446, - 0.924005727046005, - null, - -0.1853041620682275, - -0.11450250109510615, - null, - -0.3772070232069181, - 0.11451627274425251, - null, - 0.8982327271773334, - 0.9707228674476807, - null, - -0.3588708691804945, - -0.0718744168143171, - null, - -0.13115259494727227, - -0.11450250109510615, - null, - -0.8141774089662994, - -0.8417602025486345, - null, - -0.8508432357395077, - -0.8417602025486345, - null, - 0.33272913298959933, - 0.3295078503430154, - null, - -0.2015892576423615, - -0.18649712634490548, - null, - 0.8409035502956267, - 0.8949517925645056, - null, - 0.9321993730518686, - 0.9078773439325017, - null, - -0.9546287510849186, - -0.9547590905712077, - null, - -0.4919734714763398, - -0.6070544952501462, - null, - -0.4513312234304765, - -0.658548383207663, - null, - 0.15184324860847417, - 0.13789317143985486, - null, - 0.9508159093487326, - 0.9707228674476807, - null, - -0.8943688343448787, - -0.9040980095816089, - null, - 0.9707228674476807, - 0.8949517925645056, - null, - 0.9073901411949882, - 0.934989436419813, - null, - 0.16709063216372383, - 0.17280735719352827, - null, - -0.8908161276324851, - -0.9195223541018899, - null, - 0.8157199395369995, - 0.7656526872153646, - null, - 0.34679047729036994, - 0.32546363958087715, - null, - 0.4227710646614852, - 0.9372625138073847, - null, - -0.9998810422008403, - -0.8417602025486345, - null, - 0.5919418845224418, - 0.861897845047705, - null, - 0.37944048612246206, - 0.36644156163229963, - null, - -0.0012403061337466997, - -0.11450250109510615, - null, - 0.12234047733610542, - 0.13789317143985486, - null, - -0.8615468075309849, - -0.658548383207663, - null, - 0.964760552461297, - 0.8949517925645056, - null, - 0.039661928659308475, - -0.0718744168143171, - null, - 0.35904055446427036, - 0.4209825333447655, - null, - -0.9202878752839112, - -0.9195223541018899, - null, - 0.9871381943743016, - 0.9188692857569626, - null, - -0.9995322257047733, - -0.9959654402984934, - null, - -0.9977298234983066, - -0.9959654402984934, - null, - -0.732276208770093, - -0.836863319812823, - null, - 0.3640778108787309, - 0.3622988675388498, - null, - 0.34130574217163445, - 0.3295078503430154, - null, - 0.34363265524244097, - 0.11451627274425251, - null, - -0.03504048960650295, - -0.0705573633414318, - null, - -0.5605773142655659, - -0.5608848000447176, - null, - -0.0718744168143171, - -0.11450250109510615, - null, - -0.6112790131029843, - -0.614288586153413, - null, - -0.8899579042357579, - -0.9547590905712077, - null, - 0.9846693449347257, - 0.9372625138073847, - null, - -0.47636054876195205, - -0.658548383207663, - null, - 0.9051931583926858, - 0.934989436419813, - null, - 0.014768895864881906, - 0.01935258586037077, - null, - -0.9532290058574495, - -0.9547590905712077, - null, - -0.4300469338197953, - 0.11451627274425251, - null, - -0.18649712634490548, - -0.15751414483706927, - null, - -0.05925572929044244, - -0.11450250109510615, - null, - 0.3295078503430154, - 0.3640778108787309, - null, - 0.9968119487913457, - 0.9871381943743016, - null, - -0.1743054890271416, - -0.11450250109510615, - null, - -0.7624276635627749, - -0.658548383207663, - null, - 0.7873414922839649, - 0.9707228674476807, - null, - -0.016507155240764095, - -0.15751414483706927, - null, - -0.798822139744454, - -0.658548383207663, - null, - -0.4585181322994661, - 0.11451627274425251, - null, - -0.9950109962579011, - -0.8999044328670354, - null, - 0.3622988675388498, - 0.11451627274425251, - null, - 0.8491221461489701, - 0.861897845047705, - null, - 0.31615693664033206, - 0.3295078503430154, - null, - -0.7628866100940724, - -0.8417602025486345, - null, - -0.945036173520102, - -0.9354118994502362, - null, - 0.9849075810619005, - 0.9845669279825296, - null, - -0.9981180458681915, - -0.8999044328670354, - null, - -0.9099157936203077, - -0.8999044328670354, - null, - 0.9556235068002231, - 0.934989436419813, - null, - -0.7267071890826088, - -0.8999044328670354, - null, - -0.1800078470159356, - -0.15751414483706927, - null, - -0.08868838387472804, - -0.11450250109510615, - null, - -0.621634751019698, - -0.614288586153413, - null, - -0.6174841029796031, - -0.614288586153413, - null, - -0.18362654027418052, - -0.18649712634490548, - null, - -0.9728442266782935, - -0.9547590905712077, - null, - 0.3599867813868042, - 0.36644156163229963, - null, - 0.2978383372619074, - 0.4209825333447655, - null, - 0.9992890228426353, - 0.924005727046005, - null, - -0.984401061675375, - -0.8999044328670354, - null, - 0.7704619723265075, - 0.7686861957244132, - null, - 0.8152021551925026, - 0.7873414922839649, - null, - -0.1376644566695981, - 0.11451627274425251, - null, - -0.33525086664184406, - -0.2398491296372285, - null, - 0.9449329976201587, - 0.934989436419813, - null, - -0.7715945513899234, - -0.8417602025486345, - null, - -0.573284378808246, - -0.658548383207663, - null, - -0.9488472027816865, - -0.8094170347878016, - null, - 0.9737121104445094, - 0.9707228674476807, - null, - 0.14837531016356387, - 0.17280735719352827, - null, - 0.9947492803350938, - 0.9188692857569626, - null, - 0.9326444669838464, - 0.934989436419813, - null, - -0.1621639316157397, - -0.11450250109510615, - null, - -0.8417602025486345, - -0.8943688343448787, - null, - -0.5608848000447176, - -0.5606025063183887, - null, - 0.9310055228722756, - 0.934989436419813, - null, - -0.6821105161248474, - -0.9040980095816089, - null, - -0.634636734408428, - -0.614288586153413, - null, - 0.9724786859984542, - 0.9721346549682581, - null, - 0.7539670891619255, - 0.7704619723265075, - null, - 0.9721346549682581, - 0.9372625138073847, - null, - 0.999386637189107, - 0.9188692857569626, - null, - -0.1745977424828839, - -0.22771542251103183, - null, - -0.7692233078132298, - -0.8943688343448787, - null, - -0.12637175316582364, - -0.1800078470159356, - null, - -0.9107093864032038, - -0.9354118994502362, - null, - -0.17202949059407777, - -0.16176559783249686, - null, - -0.658548383207663, - 0.11451627274425251, - null, - 0.7656526872153646, - 0.8949517925645056, - null, - -0.16176559783249686, - -0.18649712634490548, - null, - -0.1537013752338476, - -0.18649712634490548, - null, - -0.16404298489552993, - -0.11450250109510615, - null, - -0.6996450266319899, - -0.658548383207663, - null, - 0.9696062346176942, - 0.9707228674476807, - null, - -0.11569071388621839, - -0.15751414483706927, - null, - 0.2447459879360427, - 0.32546363958087715, - null, - -0.4117510576167781, - -0.11450250109510615, - null, - 0.3495569029194279, - -0.0718744168143171, - null, - -0.18891409212789223, - -0.11450250109510615, - null, - -0.7001308743900908, - -0.8943688343448787, - null, - -0.9979069946151298, - -0.9959654402984934, - null, - 0.33546750546209303, - 0.32546363958087715, - null, - -0.8070272011471478, - -0.8094170347878016, - null, - 0.32110026357789545, - 0.32546363958087715, - null, - -0.9160143378594038, - -0.8999044328670354, - null, - -0.9547590905712077, - -0.9698252421162012, - null, - -0.1883702180123972, - -0.11450250109510615, - null, - -0.18915639914720692, - -0.16176559783249686, - null, - 0.7338523679423083, - 0.861897845047705, - null, - 0.6849439011117802, - 0.7873414922839649, - null, - 0.5869925988772535, - 0.9188692857569626, - null, - -0.39029365441023955, - 0.01935258586037077, - null, - -0.756037492343237, - 0.11451627274425251, - null, - 0.9913946002520194, - 0.934989436419813, - null, - 0.160166564897169, - 0.17280735719352827, - null, - -0.6665799833943199, - -0.664342636837452, - null, - -0.046532992260588366, - -0.1800078470159356, - null, - 0.9372625138073847, - 0.11451627274425251, - null, - 0.24983045333789294, - 0.13789317143985486, - null, - 0.9743362728240919, - 0.9721346549682581, - null, - -0.9217885052547868, - -0.9354118994502362, - null, - 0.9091967902443793, - 0.934989436419813, - null, - -0.9354118994502362, - -0.9366799517265493, - null, - 0.3808215690525398, - 0.7873414922839649, - null, - 0.861897845047705, - 0.9162235504250108, - null, - 0.3843003706754813, - 0.3640778108787309, - null, - 0.9579736567526005, - 0.4209825333447655, - null, - -0.9260284137581745, - -0.9354118994502362, - null, - -0.6236271664576195, - -0.614288586153413, - null, - 0.9588192091281654, - 0.9721346549682581, - null, - -0.6250502730403992, - -0.9959654402984934, - null, - -0.946085809426516, - -0.8094170347878016, - null, - 0.9078483632352856, - 0.934989436419813, - null, - 0.2518861959053926, - 0.17280735719352827, - null, - 0.9392902159992927, - 0.934989436419813, - null, - 0.9631024782966779, - 0.934989436419813, - null, - -0.6632538868623471, - -0.664342636837452, - null, - -0.08611018059776228, - -0.0705573633414318, - null, - -0.5992954502526028, - -0.658548383207663, - null, - 0.7388161230913316, - 0.7704619723265075, - null, - 0.8913637864451042, - 0.861897845047705, - null, - -0.16164959121696107, - -0.16176559783249686, - null, - -0.04814139309871386, - -0.0718744168143171, - null, - -0.993698138625633, - -0.8417602025486345, - null, - -0.9527893627232811, - -0.8999044328670354, - null, - 0.9111473290415693, - 0.924005727046005, - null, - 0.47704354328642956, - 0.32546363958087715, - null, - 0.7855867598956656, - 0.7704619723265075, - null, - -0.21771466228266262, - -0.2398491296372285, - null, - 0.9985923825347196, - 0.7873414922839649, - null, - -0.5879083764529253, - -0.5608848000447176, - null, - -0.9990743510872399, - 0.01935258586037077, - null, - 0.7824983767270625, - 0.934989436419813, - null, - -0.736514136768076, - -0.5608848000447176, - null, - 0.864545779567469, - 0.861897845047705, - null, - -0.625954195281967, - -0.6070544952501462, - null, - 0.9073654306939326, - 0.934989436419813, - null, - 0.09665736933029924, - -0.22771542251103183, - null, - 0.433042296476241, - 0.4209825333447655, - null, - 0.11306290934395367, - 0.11451627274425251, - null, - 0.35435762730171794, - 0.3295078503430154, - null, - -0.836863319812823, - -0.658548383207663, - null, - 0.9456884807967021, - 0.9078773439325017, - null, - 0.9828559054625471, - 0.9845669279825296, - null, - 0.7698032958760858, - 0.7873414922839649, - null, - -0.7840507333074039, - -0.9195223541018899, - null, - -0.9662601912042635, - -0.8943688343448787, - null, - -0.6763601519984279, - -0.664342636837452, - null, - 0.14503908081682138, - 0.17280735719352827, - null, - -0.5949871151385322, - -0.5608848000447176, - null, - 0.7971897416021178, - 0.7873414922839649, - null, - -0.20147512736137727, - -0.2398491296372285, - null, - 0.6108232304038734, - 0.8949517925645056, - null, - 0.41238798742047866, - 0.4209825333447655, - null, - 0.1271506987697991, - 0.11451627274425251, - null, - -0.9332684167914204, - -0.9354118994502362, - null, - -0.12537848597117662, - -0.11450250109510615, - null, - 0.9351360886564798, - 0.934989436419813, - null, - 0.2994493455787637, - -0.0718744168143171, - null, - 0.0957082093399271, - 0.13789317143985486, - null, - 0.8961158132155895, - 0.861897845047705, - null, - 0.2483561651763794, - 0.3640778108787309, - null, - -0.9174264018518857, - -0.8999044328670354, - null, - -0.664342636837452, - -0.6632973608809052, - null, - -0.15110019646226727, - -0.16176559783249686, - null, - -0.7013372178067324, - 0.3295078503430154, - null, - 0.9518937929509466, - 0.934989436419813, - null, - 0.4754116763722626, - 0.11451627274425251, - null, - 0.9981617474975439, - 0.861897845047705, - null, - 0.9452253765254877, - 0.9260465147265805, - null, - -0.21724743584247494, - -0.1800078470159356, - null, - 0.43567665615699847, - 0.4209825333447655, - null, - -0.28628594094396775, - -0.0718744168143171, - null, - -0.11071715890329227, - -0.0718744168143171, - null, - -0.6661278568187315, - -0.9959654402984934, - null, - 0.9813689881184854, - 0.8949517925645056, - null, - 0.8789133778827983, - 0.861897845047705, - null, - -0.18261684207361645, - -0.1800078470159356, - null, - 0.3046293956905703, - 0.3295078503430154, - null, - -0.6778776192885282, - -0.658548383207663, - null, - 0.8835063771184565, - 0.9078773439325017, - null, - 0.9794953309040931, - 0.9707228674476807, - null, - -0.15751414483706927, - 0.11451627274425251, - null, - -0.9519349107761043, - -0.9354118994502362, - null, - 0.008132307357293313, - 0.013751825928993907, - null, - -0.1060404171629972, - -0.0718744168143171, - null, - -0.7562011553347936, - -0.8417602025486345, - null, - -0.7094877812679673, - -0.664342636837452, - null, - 0.9306074646431853, - 0.9078773439325017, - null, - 0.5679962500211518, - 0.5309005392074985, - null, - 0.5420835245697138, - 0.5309005392074985, - null, - 0.9941954793098182, - 0.8949517925645056, - null, - -0.9073416523356479, - -0.658548383207663, - null, - 0.3855746464643252, - 0.3640778108787309, - null, - -0.6201931838632604, - -0.9040980095816089, - null, - -0.9845281824040655, - -0.8999044328670354, - null, - -0.21492438395112595, - -0.22771542251103183, - null, - 0.9147614974363741, - 0.9078773439325017, - null, - 0.9260465147265805, - 0.9162235504250108, - null, - 0.748268044693149, - 0.7656526872153646, - null, - 0.40305427784700737, - 0.36644156163229963, - null, - -0.0844573587364588, - -0.0718744168143171, - null, - -0.6685980251506688, - -0.664342636837452, - null, - 0.5375784829383833, - 0.861897845047705, - null, - -0.667673410615101, - -0.658548383207663, - null, - -0.6947126574887322, - -0.658548383207663, - null, - 0.26160858402452086, - 0.32546363958087715, - null, - 0.27610833560896186, - 0.32546363958087715, - null, - -0.2208086487803287, - -0.11450250109510615, - null, - 0.8494753698225276, - 0.8949517925645056, - null, - -0.20681128257080558, - -0.18649712634490548, - null, - 0.35007833939880706, - 0.4209825333447655, - null, - 0.07907749756652231, - 0.11451627274425251, - null, - 0.40723409228038776, - 0.3640778108787309, - null, - 0.7357408386222115, - 0.7656526872153646, - null, - 0.9252264768641268, - 0.11451627274425251, - null, - 0.6360668779540986, - 0.8949517925645056, - null, - 0.8748558301150213, - 0.861897845047705, - null, - 0.8949517925645056, - 0.9188692857569626, - null, - -0.19846354876271596, - -0.18649712634490548, - null, - -0.900139524092488, - -0.8999044328670354, - null, - 0.9363348925940768, - 0.9078773439325017, - null, - 0.07825565823570042, - 0.17280735719352827, - null, - -0.9489590191987537, - -0.9547590905712077, - null, - -0.6612833956255495, - -0.664342636837452, - null, - 0.8280546000654804, - 0.861897845047705, - null, - -0.9884436406142442, - -0.8417602025486345, - null, - 0.48040555567579724, - 0.01935258586037077, - null, - 0.49567785471406384, - 0.9707228674476807, - null, - 0.9005562073645459, - 0.9078773439325017, - null, - 0.765485154754198, - 0.861897845047705, - null, - -0.9609710383301341, - -0.8999044328670354, - null, - 0.37367533317667545, - 0.36644156163229963, - null, - 0.8707881785969892, - 0.861897845047705, - null, - 0.9270281517053696, - 0.9260465147265805, - null, - 0.1332238456654993, - 0.11451627274425251, - null, - -0.10964740722574473, - -0.0705573633414318, - null, - 0.8001235205759577, - 0.9260465147265805, - null, - -0.8081194799231878, - -0.836863319812823, - null, - -0.3901117340862227, - 0.11451627274425251, - null, - -0.36327757588250514, - -0.658548383207663, - null, - 0.6475599440876456, - 0.9871381943743016, - null, - -0.08605199976573685, - -0.15751414483706927, - null, - 0.959264932394243, - 0.9372625138073847, - null, - 0.9929871935034416, - 0.8949517925645056, - null, - 0.9687470135677769, - 0.8949517925645056, - null, - -0.8430505824651278, - -0.8417602025486345, - null, - -0.8780213470218232, - -0.836863319812823, - null, - 0.36075937493117344, - 0.32546363958087715, - null, - 0.10868167571476661, - 0.11451627274425251, - null, - 0.9420873596108897, - 0.934989436419813, - null, - -0.3285936598277887, - -0.15751414483706927, - null, - -0.9922478410717, - -0.8417602025486345, - null, - 0.15271289559243217, - -0.11450250109510615, - null, - -0.4356803452755577, - -0.2398491296372285, - null, - 0.9854526520398087, - 0.9372625138073847, - null, - -0.1987834580045823, - -0.22771542251103183, - null, - -0.7029059200386498, - -0.658548383207663, - null, - 0.9845669279825296, - 0.9854526520398087, - null, - -0.6948981799037778, - -0.658548383207663, - null, - -0.6501040770026839, - -0.658548383207663, - null, - -0.9595959124831768, - -0.8999044328670354, - null, - -0.8272312120735983, - -0.8417602025486345, - null, - -0.09789618671528716, - -0.0718744168143171, - null, - -0.2741529176876748, - -0.2398491296372285, - null, - -0.8852377740167442, - -0.8999044328670354, - null, - -0.08193580105722048, - -0.0718744168143171, - null, - 0.9786988716785942, - 0.7656526872153646, - null, - -0.5778921939484963, - -0.9040980095816089, - null, - 0.40683225499196923, - 0.4209825333447655, - null, - -0.2216950323197477, - -0.22771542251103183, - null, - 0.9808336044053236, - 0.9707228674476807, - null, - -0.21629191565228675, - -0.1800078470159356, - null, - 0.9312479007059525, - 0.9260465147265805, - null, - 0.8016414480014135, - 0.7873414922839649, - null, - -0.8787293305389015, - -0.8999044328670354, - null, - -0.9051015041676672, - -0.8999044328670354, - null, - -0.9750166502168459, - -0.9547590905712077, - null, - 0.845468386258038, - 0.861897845047705, - null, - 0.8333146651529926, - 0.9078773439325017, - null, - 0.39798153489671084, - 0.32546363958087715, - null, - 0.4332220559793186, - 0.4209825333447655, - null, - 0.6580855000629445, - 0.9871381943743016, - null, - -0.18239431868034855, - -0.11450250109510615, - null, - 0.9894614974729529, - 0.9845669279825296, - null, - 0.560247210317818, - 0.5309005392074985, - null, - -0.9427740042779841, - -0.8943688343448787, - null, - -0.7856237287456027, - -0.658548383207663, - null, - -0.9135501077955797, - -0.8999044328670354, - null, - -0.20677409000285552, - -0.22771542251103183, - null, - 0.07168130453134494, - 0.17280735719352827, - null, - 0.018738997631740643, - 0.11451627274425251, - null, - -0.8166811318527936, - -0.658548383207663, - null, - -0.8285985505831424, - -0.8417602025486345, - null, - 0.022419059011987243, - 0.013751825928993907, - null, - 0.6151426695504719, - 0.5309005392074985, - null, - -0.5577750721301247, - -0.5608848000447176, - null, - 0.7676779669420754, - 0.7704619723265075, - null, - -0.1250467592414716, - -0.0718744168143171, - null, - -0.8764049360289671, - -0.8417602025486345, - null, - -0.2398491296372285, - -0.22771542251103183, - null, - -0.748630279937278, - -0.8094170347878016, - null, - 0.9925214157120338, - 0.9845669279825296, - null, - -0.9991514122099525, - -0.9040980095816089, - null, - 0.14782683282733347, - 0.13789317143985486, - null, - -0.0705573633414318, - -0.04028191941240203, - null, - 0.3621995122398284, - 0.32546363958087715, - null, - -0.7137960020830307, - -0.658548383207663, - null, - 0.36644156163229963, - 0.3640778108787309, - null, - -0.19292335712714745, - -0.1800078470159356, - null, - 0.9729386060663637, - 0.9721346549682581, - null, - 0.5309005392074985, - 0.4227710646614852, - null, - 0.987797743919753, - 0.9871381943743016, - null, - -0.9698252421162012, - -0.9195223541018899, - null, - -0.7433316499890783, - -0.658548383207663, - null, - 0.4930021907610369, - -0.2398491296372285, - null, - 0.7605340724203205, - 0.7656526872153646, - null, - 0.9127811757353157, - 0.9078773439325017, - null, - 0.8348085897227455, - 0.8949517925645056, - null, - 0.9990034461870403, - 0.9707228674476807, - null, - -0.6780914459230432, - -0.658548383207663, - null, - 0.17280735719352827, - -0.04028191941240203, - null, - 0.9736619223155802, - 0.9721346549682581, - null, - -0.563005376149324, - -0.5608848000447176, - null, - 0.023435533635288813, - 0.01935258586037077, - null, - 0.49875044878193364, - 0.5309005392074985, - null, - -0.6725146186335873, - -0.8094170347878016, - null, - -0.5989868039674535, - -0.6070544952501462, - null, - 0.360822568074545, - 0.36644156163229963, - null, - 0.8992354122900377, - 0.861897845047705, - null, - 0.6824313879965012, - 0.11451627274425251, - null, - 0.8004589871231068, - 0.11451627274425251, - null, - -0.7796729189262178, - -0.658548383207663, - null, - 0.924005727046005, - 0.9260465147265805, - null, - -0.011065549245332892, - 0.01935258586037077, - null, - -0.7869253769085935, - -0.658548383207663, - null, - -0.8476430421727907, - -0.9547590905712077, - null, - 0.3627263723261937, - 0.36644156163229963, - null, - 0.08958975843646189, - -0.11450250109510615, - null, - 0.9223388196420592, - 0.9260465147265805, - null, - 0.9492962853149935, - 0.934989436419813, - null, - -0.1581043993615636, - -0.1800078470159356, - null, - 0.84643109526338, - 0.8949517925645056, - null, - 0.9899452113415462, - 0.9871381943743016, - null, - -0.5181022068285979, - -0.5608848000447176, - null, - 0.9971308000138286, - 0.9188692857569626, - null, - 0.8575542548816998, - 0.861897845047705, - null, - 0.905031015889471, - 0.9078773439325017, - null, - -0.14725593032412293, - -0.16176559783249686, - null, - 0.9476994800212153, - 0.861897845047705, - null, - 0.33491629286920016, - 0.36644156163229963, - null, - -0.16637959960726104, - -0.16176559783249686, - null, - 0.32546363958087715, - 0.3648105463534726, - null, - -0.8134893311811193, - -0.658548383207663, - null, - -0.6441459072305219, - -0.6070544952501462, - null, - -0.8557975252086694, - -0.8417602025486345, - null, - -0.06534410649162872, - -0.11450250109510615, - null, - 0.009699670776640678, - 0.013751825928993907, - null, - -0.9364362587773297, - -0.9354118994502362, - null, - -0.08664261442326074, - -0.0705573633414318, - null, - -0.04028191941240203, - -0.15751414483706927, - null, - -0.10715328446562826, - -0.15751414483706927, - null, - 0.9672897478784687, - 0.9707228674476807, - null, - 0.9642338178367389, - 0.9721346549682581, - null, - 0.36763186482700305, - 0.32546363958087715, - null, - 0.934989436419813, - 0.9162235504250108, - null, - 0.9472732838262747, - 0.9078773439325017, - null, - -0.6201214636144278, - -0.9040980095816089, - null, - 0.9335566784339334, - 0.924005727046005, - null, - 0.7638563779973578, - 0.7704619723265075, - null, - -0.051468256331106216, - -0.11450250109510615, - null, - 0.15398363458887757, - 0.17280735719352827, - null, - 0.9843888786112054, - 0.9707228674476807, - null, - 0.658617473009733, - -0.658548383207663, - null, - -0.9366799517265493, - -0.9195223541018899, - null, - 0.044268732611014515, - 0.013751825928993907, - null, - -0.11450250109510615, - -0.1514086644448707, - null, - 0.9162235504250108, - 0.8949517925645056, - null, - -0.9815404530141068, - -0.8417602025486345, - null, - -0.27282148543956936, - -0.11450250109510615, - null, - -0.13574135166093412, - -0.2398491296372285, - null, - -0.16508369758595018, - -0.11450250109510615, - null, - 0.695517051720713, - 0.9871381943743016, - null, - 0.9078773439325017, - 0.9372625138073847, - null, - 0.39345117733142393, - 0.32546363958087715, - null, - 0.9244015582165606, - 0.9078773439325017, - null, - 0.08033028234259863, - -0.11450250109510615, - null, - 0.1843077091990216, - 0.13789317143985486, - null, - -0.35775688181183996, - 0.11451627274425251, - null, - 0.41814228548790394, - 0.3295078503430154, - null, - 0.7107534435664846, - 0.861897845047705, - null, - 0.8641600598097161, - 0.861897845047705, - null, - -0.9028361124032117, - 0.4209825333447655, - null, - -0.6632973608809052, - -0.658548383207663, - null, - 0.13153097970661917, - 0.13789317143985486, - null, - 0.4253197726095261, - 0.4209825333447655, - null, - 0.7415966142977328, - 0.9188692857569626, - null, - -0.36149711674739704, - 0.11451627274425251, - null, - 0.9993641871926863, - 0.9707228674476807, - null, - -0.6134604495109929, - -0.614288586153413, - null, - -0.9959654402984934, - -0.9040980095816089, - null, - 0.5359159979356352, - 0.5309005392074985, - null, - 0.890008872845558, - 0.9707228674476807, - null, - -0.8351259386047009, - -0.836863319812823, - null, - -0.0208540202625409, - -0.0718744168143171, - null, - 0.9848614899239123, - 0.861897845047705, - null, - 0.03801395875945148, - 0.013751825928993907, - null, - -0.4720789933747004, - 0.11451627274425251, - null, - 0.013751825928993907, - 0.02093417525511497, - null, - -0.14452404758119558, - -0.11450250109510615, - null, - 0.9695747072393511, - 0.861897845047705, - null, - -0.9408499289521038, - -0.9547590905712077, - null, - -0.937239256392224, - -0.9547590905712077, - null, - 0.8148251068239105, - 0.7873414922839649, - null, - -0.7244791134187885, - -0.658548383207663, - null, - 0.008103065813850523, - -0.0718744168143171, - null, - -0.9040980095816089, - -0.756037492343237, - null, - -0.28594298787649225, - -0.15751414483706927, - null, - -0.6070544952501462, - -0.658548383207663, - null, - -0.8721771246774501, - -0.8417602025486345, - null, - -0.06504048047218428, - -0.0718744168143171, - null, - -0.8786507702476847, - 0.11451627274425251, - null, - -0.9249126134677954, - -0.9195223541018899, - null, - 0.6769313718727635, - 0.9707228674476807, - null, - 0.9714169356147938, - 0.9721346549682581, - null, - -0.05399863730531258, - -0.0705573633414318, - null, - -0.01371621255306728, - 0.11451627274425251, - null, - 0.40032008765014915, - 0.36644156163229963, - null, - 0.5049355109265832, - 0.5309005392074985, - null, - 0.9883208050789435, - 0.8949517925645056, - null, - 0.8318068578089617, - 0.934989436419813, - null, - 0.7894343117141913, - 0.7656526872153646, - null, - -0.9075258872029662, - -0.9547590905712077, - null, - 0.4898304195441895, - 0.5309005392074985, - null, - -0.07724438051860046, - -0.0705573633414318, - null, - -0.17273162374915207, - 0.11451627274425251, - null, - -0.7153094485509525, - -0.6070544952501462, - null, - 0.9402170110548401, - 0.924005727046005, - null, - 0.9188692857569626, - 0.9372625138073847, - null, - -0.166611777356549, - -0.2398491296372285, - null, - -0.8999044328670354, - -0.9195223541018899, - null, - 0.9239121789820389, - 0.924005727046005, - null, - 0.282745103520924, - -0.22771542251103183, - null, - 0.5449318641899187, - 0.9707228674476807, - null, - 0.9614106106424879, - 0.924005727046005, - null, - 0.979582121186607, - 0.9845669279825296, - null, - 0.7710662243747075, - 0.7704619723265075, - null, - -0.4332747506336246, - -0.22771542251103183, - null, - 0.17264631007055736, - 0.11451627274425251, - null, - -0.9999057355770917, - -0.9195223541018899, - null, - 0.11451627274425251, - -0.05010500674502724, - null, - -0.14298519566678491, - -0.16176559783249686, - null, - 0.5959138878613134, - 0.5309005392074985, - null, - -0.8012513466280758, - -0.9195223541018899, - null, - 0.35769715210403974, - 0.36644156163229963, - null, - 0.993232359527207, - 0.861897845047705, - null, - -0.9793528713449409, - -0.9547590905712077, - null, - -0.4860124285084071, - -0.658548383207663, - null, - 0.9987580949579009, - 0.7656526872153646, - null, - 0.6789935072006911, - 0.9078773439325017, - null, - -0.7824775843802029, - -0.658548383207663, - null, - 0.36230087824927887, - 0.36644156163229963, - null, - -0.5669565134384237, - -0.5608848000447176, - null, - 0.9728794577769003, - 0.9871381943743016, - null, - -0.33189879623196716, - -0.11450250109510615, - null, - -0.9719759040905884, - -0.8094170347878016, - null, - 0.8446115471261952, - 0.8949517925645056, - null, - -0.24718677009066528, - -0.18649712634490548, - null, - 0.22297902327668664, - -0.11450250109510615, - null, - 0.11283107452478423, - -0.11450250109510615, - null, - -0.8961412962908429, - -0.8999044328670354, - null, - -0.26111160382559834, - -0.2398491296372285, - null, - 0.32848524478671154, - 0.32546363958087715, - null, - -0.2281382323066293, - -0.1800078470159356, - null, - -0.6239987974074965, - -0.6070544952501462, - null, - 0.9158736710252667, - 0.934989436419813, - null, - 0.9812503907383816, - 0.9845669279825296, - null, - -0.8901942380829772, - -0.658548383207663, - null, - -0.8250634935728909, - -0.8094170347878016, - null, - -0.8542809979814117, - -0.8999044328670354, - null, - 0.724744526881137, - 0.8949517925645056, - null, - -0.8750174813406021, - -0.836863319812823, - null, - 0.7317969187510676, - 0.8949517925645056, - null, - -0.07485951874943271, - -0.0718744168143171, - null, - -0.02781179160141777, - -0.0705573633414318, - null, - -0.06957004761633692, - -0.0718744168143171, - null, - 0.7923509068904075, - 0.7873414922839649, - null, - -0.7576871149725964, - -0.8999044328670354, - null, - 0.9386580202137154, - 0.934989436419813, - null, - -0.22771542251103183, - -0.11450250109510615, - null, - -0.9432943407421661, - -0.8094170347878016, - null, - -0.614288586153413, - -0.6070544952501462, - null, - -0.06043775975213638, - -0.0705573633414318, - null, - -0.12365264431072365, - -0.22771542251103183, - null, - -0.609509473227673, - -0.614288586153413, - null, - -0.24712711951236366, - -0.2398491296372285, - null, - 0.01935258586037077, - -0.0012403061337466997, - null, - 0.7929450534375537, - 0.7873414922839649, - null, - -0.22824668524370115, - -0.2398491296372285, - null, - -0.6479479532545641, - -0.664342636837452, - null, - -0.6911450493957103, - -0.658548383207663, - null, - 0.39994326299416905, - 0.4209825333447655, - null, - 0.46673965273119, - 0.4209825333447655, - null, - 0.04893728704902922, - 0.01935258586037077, - null, - -0.9367027971019825, - -0.9354118994502362, - null, - 0.8841195379701349, - 0.861897845047705, - null, - -0.15215199663656911, - -0.11450250109510615, - null, - -0.8094170347878016, - -0.9547590905712077, - null, - 0.058999370870563346, - 0.17280735719352827, - null, - -0.9927015921587473, - -0.9354118994502362, - null, - 0.3588758478142084, - 0.3640778108787309, - null, - 0.01686789340460195, - 0.013751825928993907, - null, - 0.9617746445940042, - 0.9260465147265805, - null, - -0.1795879660434844, - -0.1800078470159356, - null, - 0.3723574185859199, - 0.36644156163229963, - null, - -0.9229002144497045, - -0.8999044328670354, - null, - -0.9195223541018899, - -0.8943688343448787, - null, - 0.9375468564146912, - 0.9078773439325017, - null, - 0.3705976123510187, - 0.32546363958087715, - null, - -0.9965855158701806, - -0.9959654402984934, - null, - 0.7768879148941928, - 0.7704619723265075, - null, - 0.3284278907263845, - 0.3295078503430154, - null, - -0.38009551359206456, - -0.11450250109510615, - null, - -0.7452216710618185, - -0.658548383207663, - null, - -0.6593062080699952, - -0.664342636837452, - null, - 0.7173009154347887, - 0.7873414922839649, - null, - 0.183824401672422, - 0.17280735719352827, - null, - 0.2947930799930249, - 0.32546363958087715, - null, - 0.4209825333447655, - 0.3648105463534726, - null, - 0.9863515473287413, - 0.9871381943743016, - null - ], - "y": [ - -0.408881756366773, - -0.5031593899191755, - null, - 0.32786174108692323, - 0.37383296441528124, - null, - -0.7589818494383436, - -0.7432746646633447, - null, - -0.9299552591867193, - -0.9302229603832846, - null, - -0.5162336352975141, - -0.546304469122644, - null, - 0.0646404689887051, - 0.17331598163650028, - null, - 0.6268763266447598, - 0.637098975006629, - null, - 0.24147886313905614, - 0.43233941458126335, - null, - -0.8892992343468379, - 0.05872573825805841, - null, - 0.9239970410552293, - 0.9441533476946159, - null, - -0.999727070775885, - -0.999657818655349, - null, - -0.9898273584759455, - -0.9871693479935844, - null, - -0.3799847202043362, - -0.37949825566912865, - null, - 0.9826321656634027, - 0.9868939104052994, - null, - -0.9255064752923954, - -0.054762350091481775, - null, - -0.4394050045705942, - -0.21904835125044786, - null, - 0.9333421413107421, - 0.995873518778533, - null, - 0.9913257940303344, - 0.9868939104052994, - null, - 0.5804181549899076, - 0.5365662218422166, - null, - 0.525360182767002, - 0.5365662218422166, - null, - -0.9429646050088624, - -0.9434239269668026, - null, - -0.979255577880272, - -0.9813681390513571, - null, - -0.5411244322241605, - -0.4133456940719313, - null, - 0.36166298382829015, - 0.4134354904394969, - null, - 0.2977433806930823, - 0.2919739625572666, - null, - -0.8701198061302512, - -0.792223330522825, - null, - -0.8921914258331133, - -0.7432746646633447, - null, - -0.9882774106458883, - -0.9898273584759455, - null, - -0.3095996093171432, - -0.21904835125044786, - null, - 0.419217646457521, - 0.4017775071927024, - null, - -0.21904835125044786, - -0.4133456940719313, - null, - -0.42019830886718784, - -0.34962590077604566, - null, - -0.9858429788931943, - -0.983461394536685, - null, - 0.45429453630334865, - 0.37383296441528124, - null, - -0.5783934958930858, - -0.6416636207854168, - null, - 0.9373244954258041, - 0.9441533476946159, - null, - 0.9017731736266421, - -0.1663959934735289, - null, - 0.013241535203824128, - 0.5365662218422166, - null, - -0.8059137256629503, - -0.5031593899191755, - null, - -0.925143229151573, - -0.9302229603832846, - null, - 0.9984355759155434, - 0.9868939104052994, - null, - -0.9923535921597487, - -0.9898273584759455, - null, - -0.5066864674729419, - -0.7432746646633447, - null, - -0.26292546634712993, - -0.4133456940719313, - null, - 0.999168386251309, - 0.995873518778533, - null, - 0.9332997770276427, - 0.9053357216550473, - null, - 0.3904355949932784, - 0.37383296441528124, - null, - -0.14569381607270362, - -0.3546995178707962, - null, - 0.02803653569956756, - 0.05872573825805841, - null, - 0.06659176532000805, - 0.05872573825805841, - null, - -0.6808857272354875, - -0.546304469122644, - null, - -0.9307133909148392, - -0.9309128373173914, - null, - -0.9398969616743778, - -0.9434239269668026, - null, - -0.9387735905487372, - -0.054762350091481775, - null, - -0.9992812397327047, - -0.9969573740804754, - null, - -0.8278652773164729, - -0.8262754986032512, - null, - 0.995873518778533, - 0.9868939104052994, - null, - -0.7912728727919744, - -0.7888040039326378, - null, - 0.45600029889987637, - 0.2919739625572666, - null, - 0.17021020000399517, - -0.1663959934735289, - null, - -0.8790518333016213, - -0.7432746646633447, - null, - -0.42432305239086404, - -0.34962590077604566, - null, - 0.9998436093161361, - 0.998745724796541, - null, - 0.3021791626165391, - 0.2919739625572666, - null, - -0.9019951423752298, - -0.054762350091481775, - null, - -0.9813681390513571, - -0.981447896270185, - null, - 0.9981866226374008, - 0.9868939104052994, - null, - -0.9434239269668026, - -0.9307133909148392, - null, - -0.07926626991184363, - -0.14569381607270362, - null, - 0.9846573051188015, - 0.9868939104052994, - null, - -0.6468145799999377, - -0.7432746646633447, - null, - -0.6150405267494881, - -0.21904835125044786, - null, - -0.9996555264576602, - -0.981447896270185, - null, - -0.6013500698012303, - -0.7432746646633447, - null, - -0.8883421634110616, - -0.054762350091481775, - null, - 0.09766375524339355, - 0.43233941458126335, - null, - -0.9309128373173914, - -0.054762350091481775, - null, - -0.5281373062790289, - -0.5031593899191755, - null, - -0.9486424754437589, - -0.9434239269668026, - null, - 0.6464699061385135, - 0.5365662218422166, - null, - 0.326918532750541, - 0.3527521464412355, - null, - 0.17266018317830767, - 0.17331598163650028, - null, - 0.060813319564746525, - 0.43233941458126335, - null, - 0.4147114565778754, - 0.43233941458126335, - null, - -0.2944742877017532, - -0.34962590077604566, - null, - 0.686811089148521, - 0.43233941458126335, - null, - -0.9826954873546125, - -0.981447896270185, - null, - 0.9960108630929713, - 0.9868939104052994, - null, - -0.783228276090593, - -0.7888040039326378, - null, - -0.7864888698230016, - -0.7888040039326378, - null, - -0.9829112434129185, - -0.9813681390513571, - null, - 0.22892674746771333, - 0.2919739625572666, - null, - -0.9329115670364648, - -0.9302229603832846, - null, - 0.9545571857950808, - 0.9053357216550473, - null, - 0.036945811446387054, - -0.37949825566912865, - null, - -0.1757704288490784, - 0.43233941458126335, - null, - 0.637098975006629, - 0.6388651262851534, - null, - -0.5791081650976017, - -0.6150405267494881, - null, - -0.9891901485126783, - -0.054762350091481775, - null, - 0.9420943277758203, - 0.9700605141543155, - null, - -0.3271753806333416, - -0.34962590077604566, - null, - 0.6360338567317462, - 0.5365662218422166, - null, - -0.818935659187414, - -0.7432746646633447, - null, - -0.3156040984487907, - 0.5852973887324009, - null, - -0.22723649889160077, - -0.21904835125044786, - null, - -0.988836211497274, - -0.983461394536685, - null, - -0.10002850530725281, - -0.3546995178707962, - null, - -0.3607266295912267, - -0.34962590077604566, - null, - 0.9867167724451952, - 0.9868939104052994, - null, - 0.5365662218422166, - 0.419217646457521, - null, - -0.8262754986032512, - -0.8258927670460846, - null, - -0.36489977760649883, - -0.34962590077604566, - null, - 0.7308560454911576, - 0.4017775071927024, - null, - -0.7726886319386639, - -0.7888040039326378, - null, - 0.23271266578061056, - 0.233392336090964, - null, - 0.6568070186753749, - 0.637098975006629, - null, - 0.233392336090964, - -0.1663959934735289, - null, - -0.03311817536723519, - -0.3546995178707962, - null, - 0.9846033752463714, - 0.9716459646429945, - null, - 0.6388908955080073, - 0.419217646457521, - null, - -0.9918601665335289, - -0.9826954873546125, - null, - 0.41299350301882953, - 0.3527521464412355, - null, - -0.985007072003706, - -0.9860939961607463, - null, - -0.7432746646633447, - -0.054762350091481775, - null, - -0.6416636207854168, - -0.4133456940719313, - null, - -0.9860939961607463, - -0.9813681390513571, - null, - -0.9880000928999717, - -0.9813681390513571, - null, - 0.9864263927031944, - 0.9868939104052994, - null, - -0.7142461248780808, - -0.7432746646633447, - null, - -0.24444436379698084, - -0.21904835125044786, - null, - -0.9931152290727107, - -0.981447896270185, - null, - 0.9694914292574567, - 0.9441533476946159, - null, - 0.9105328717601825, - 0.9868939104052994, - null, - -0.9368874635847932, - 0.995873518778533, - null, - 0.9819634854977342, - 0.9868939104052994, - null, - 0.709775109374398, - 0.419217646457521, - null, - 0.06381788872014356, - 0.05872573825805841, - null, - 0.9420272516734303, - 0.9441533476946159, - null, - 0.5904809779276919, - 0.5852973887324009, - null, - 0.9470047686680184, - 0.9441533476946159, - null, - -0.400995314776881, - 0.43233941458126335, - null, - 0.2919739625572666, - 0.2250399388947308, - null, - 0.9820613852795731, - 0.9868939104052994, - null, - -0.9818635843408989, - -0.9860939961607463, - null, - -0.6792784464161313, - -0.5031593899191755, - null, - -0.7284076333799183, - -0.6150405267494881, - null, - -0.8094232257332367, - -0.3546995178707962, - null, - 0.9206504610533146, - 0.998745724796541, - null, - 0.5896586298883478, - -0.054762350091481775, - null, - -0.13065516490498144, - -0.34962590077604566, - null, - -0.9869714604778336, - -0.983461394536685, - null, - -0.7453545843021963, - -0.7470832699206605, - null, - -0.9987694917651866, - -0.9826954873546125, - null, - -0.1663959934735289, - -0.054762350091481775, - null, - -0.9681160643680236, - -0.9898273584759455, - null, - 0.22469265000216063, - 0.233392336090964, - null, - 0.3876503101973203, - 0.3527521464412355, - null, - -0.41630586126095104, - -0.34962590077604566, - null, - 0.3527521464412355, - 0.3471405058436117, - null, - -0.9246140885741954, - -0.6150405267494881, - null, - -0.5031593899191755, - -0.387865814670145, - null, - -0.9230993348791311, - -0.9307133909148392, - null, - 0.28647008236113786, - 0.9053357216550473, - null, - 0.3774044565429561, - 0.3527521464412355, - null, - -0.781649426735175, - -0.7888040039326378, - null, - 0.28329068071375935, - 0.233392336090964, - null, - 0.7803767096814201, - 0.05872573825805841, - null, - 0.32385626672592827, - 0.5852973887324009, - null, - -0.41902111518699137, - -0.34962590077604566, - null, - -0.9674293878967767, - -0.983461394536685, - null, - -0.3430508632066404, - -0.34962590077604566, - null, - -0.2687215360473567, - -0.34962590077604566, - null, - -0.748311229998479, - -0.7470832699206605, - null, - -0.996225994899041, - -0.9969573740804754, - null, - -0.8001749254478624, - -0.7432746646633447, - null, - 0.6738231380160472, - 0.637098975006629, - null, - -0.45258605025765997, - -0.5031593899191755, - null, - -0.9867924934265282, - -0.9860939961607463, - null, - 0.9988060043663809, - 0.995873518778533, - null, - 0.11160209478337843, - 0.5365662218422166, - null, - 0.3035664810262567, - 0.43233941458126335, - null, - -0.4114543819340703, - -0.37949825566912865, - null, - 0.8788360914375909, - 0.9441533476946159, - null, - 0.618628348066958, - 0.637098975006629, - null, - 0.9759923291832822, - 0.9700605141543155, - null, - -0.0525464238458064, - -0.6150405267494881, - null, - -0.8081255583985809, - -0.8262754986032512, - null, - -0.04208075163657364, - 0.998745724796541, - null, - -0.6226203981733286, - -0.34962590077604566, - null, - -0.6762317868026004, - -0.8262754986032512, - null, - -0.5025143972769219, - -0.5031593899191755, - null, - -0.7796687176718227, - -0.792223330522825, - null, - -0.4202569846705832, - -0.34962590077604566, - null, - 0.9952380022246733, - 0.9716459646429945, - null, - 0.9013218689416806, - 0.9053357216550473, - null, - -0.9934232438790032, - -0.054762350091481775, - null, - -0.9350689112116087, - -0.9434239269668026, - null, - -0.546304469122644, - -0.7432746646633447, - null, - 0.32481198463837163, - 0.4134354904394969, - null, - 0.184033112716752, - 0.17331598163650028, - null, - -0.6382455136657323, - -0.6150405267494881, - null, - 0.618422189400453, - 0.37383296441528124, - null, - 0.2573931982419754, - 0.419217646457521, - null, - -0.7364689257459748, - -0.7470832699206605, - null, - -0.9893353767032849, - -0.983461394536685, - null, - -0.803511086494865, - -0.8262754986032512, - null, - -0.6037024738874821, - -0.6150405267494881, - null, - 0.9794743308941528, - 0.9700605141543155, - null, - -0.7913316405403773, - -0.4133456940719313, - null, - 0.9109697113496676, - 0.9053357216550473, - null, - -0.9914285210192629, - -0.054762350091481775, - null, - 0.35911374776516347, - 0.3527521464412355, - null, - 0.9920400788541248, - 0.9868939104052994, - null, - -0.353234733748948, - -0.34962590077604566, - null, - 0.9540866663912335, - 0.995873518778533, - null, - -0.9952004946342513, - -0.9898273584759455, - null, - -0.44376897459360964, - -0.5031593899191755, - null, - -0.9685867434374072, - -0.9307133909148392, - null, - 0.39783007718944857, - 0.43233941458126335, - null, - -0.7470832699206605, - -0.7476754358639707, - null, - -0.9884381899415875, - -0.9860939961607463, - null, - -0.7127604301080076, - -0.9434239269668026, - null, - -0.3063068793937506, - -0.34962590077604566, - null, - -0.8791548107337299, - -0.054762350091481775, - null, - -0.06000297456058472, - -0.5031593899191755, - null, - -0.3238126302604294, - -0.3715310914375972, - null, - -0.9759111963319108, - -0.9826954873546125, - null, - 0.9000819191968155, - 0.9053357216550473, - null, - 0.958094184601011, - 0.995873518778533, - null, - 0.9938217536066828, - 0.995873518778533, - null, - 0.7457288049532897, - 0.05872573825805841, - null, - -0.19187627876781485, - -0.4133456940719313, - null, - -0.4769226257206028, - -0.5031593899191755, - null, - -0.983048531261517, - -0.9826954873546125, - null, - -0.9523955205124722, - -0.9434239269668026, - null, - -0.7346431203486812, - -0.7432746646633447, - null, - 0.4672446069799521, - 0.4134354904394969, - null, - -0.20124268414380425, - -0.21904835125044786, - null, - -0.981447896270185, - -0.054762350091481775, - null, - 0.30624635014965285, - 0.3527521464412355, - null, - -0.9999131104604517, - -0.999657818655349, - null, - 0.9943379689802332, - 0.995873518778533, - null, - 0.6542681947776617, - 0.5365662218422166, - null, - -0.7046297605514473, - -0.7470832699206605, - null, - 0.3655074589355835, - 0.4134354904394969, - null, - 0.8229030782836027, - 0.8460411449908146, - null, - 0.8401751572205258, - 0.8460411449908146, - null, - -0.10704457469940869, - -0.4133456940719313, - null, - -0.4199576954096154, - -0.7432746646633447, - null, - -0.9225725397153168, - -0.9307133909148392, - null, - 0.7842542951860295, - 0.4017775071927024, - null, - 0.17502322948126015, - 0.43233941458126335, - null, - 0.976600429147221, - 0.9716459646429945, - null, - 0.40355073440214306, - 0.4134354904394969, - null, - -0.3715310914375972, - -0.387865814670145, - null, - -0.6631444614748275, - -0.6416636207854168, - null, - -0.9150710296156299, - -0.9302229603832846, - null, - 0.9959068825653523, - 0.995873518778533, - null, - -0.7435325897249961, - -0.7470832699206605, - null, - -0.8428644567305875, - -0.5031593899191755, - null, - -0.7442082896796898, - -0.7432746646633447, - null, - -0.7190478833241414, - -0.7432746646633447, - null, - 0.9651263114668018, - 0.9441533476946159, - null, - 0.9609813949387468, - 0.9441533476946159, - null, - 0.9745705348898142, - 0.9868939104052994, - null, - -0.5275474878820486, - -0.4133456940719313, - null, - -0.9782617986444876, - -0.9813681390513571, - null, - 0.9366934628769444, - 0.9053357216550473, - null, - -0.9964700308074317, - -0.054762350091481775, - null, - -0.9129503904725041, - -0.9307133909148392, - null, - -0.6772319693529333, - -0.6416636207854168, - null, - 0.37838999769070997, - -0.054762350091481775, - null, - -0.7715566433815789, - -0.4133456940719313, - null, - -0.48431768902143674, - -0.5031593899191755, - null, - -0.4133456940719313, - -0.3546995178707962, - null, - -0.9800140106224601, - -0.9813681390513571, - null, - 0.4355312774005718, - 0.43233941458126335, - null, - 0.35058653570532533, - 0.4134354904394969, - null, - -0.996843285229643, - -0.983461394536685, - null, - 0.315330625139537, - 0.2919739625572666, - null, - -0.7500719263255996, - -0.7470832699206605, - null, - -0.5606035799838047, - -0.5031593899191755, - null, - 0.14871038079848062, - 0.5365662218422166, - null, - 0.8770319884476706, - 0.998745724796541, - null, - -0.8683776286132218, - -0.21904835125044786, - null, - 0.4345431958088624, - 0.4134354904394969, - null, - -0.6434304414629954, - -0.5031593899191755, - null, - 0.27654100883397886, - 0.43233941458126335, - null, - -0.9275112879207282, - -0.9302229603832846, - null, - -0.4916106251312496, - -0.5031593899191755, - null, - -0.3749248979935729, - -0.3715310914375972, - null, - -0.9871693479935844, - -0.054762350091481775, - null, - -0.9938122777601816, - -0.9969573740804754, - null, - -0.5998123013581259, - -0.3715310914375972, - null, - -0.5888776025229273, - -0.546304469122644, - null, - -0.9124072507679903, - -0.054762350091481775, - null, - -0.931411477207755, - -0.7432746646633447, - null, - 0.7617565414378653, - -0.14569381607270362, - null, - -0.996041607863871, - -0.981447896270185, - null, - 0.2815985138818039, - -0.1663959934735289, - null, - -0.1127340210108008, - -0.4133456940719313, - null, - -0.24739631357530675, - -0.4133456940719313, - null, - 0.5376303136150482, - 0.5365662218422166, - null, - -0.47847167132458945, - -0.546304469122644, - null, - 0.9326332536616682, - 0.9441533476946159, - null, - -0.9934460088808937, - -0.054762350091481775, - null, - -0.3353139029420087, - -0.34962590077604566, - null, - -0.9443120283174803, - -0.981447896270185, - null, - 0.12390956162538325, - 0.5365662218422166, - null, - 0.9877132139884377, - 0.9868939104052994, - null, - 0.9000532592373155, - 0.9700605141543155, - null, - 0.16560350345751784, - -0.1663959934735289, - null, - 0.9800057794857826, - 0.9716459646429945, - null, - -0.7110730598623788, - -0.7432746646633447, - null, - 0.17331598163650028, - 0.16560350345751784, - null, - -0.7189821314797709, - -0.7432746646633447, - null, - -0.7595811713539509, - -0.7432746646633447, - null, - 0.2805451151373655, - 0.43233941458126335, - null, - 0.561800379782143, - 0.5365662218422166, - null, - 0.9951737116808191, - 0.995873518778533, - null, - 0.9616546438542983, - 0.9700605141543155, - null, - 0.465061953566876, - 0.43233941458126335, - null, - 0.9966105741981409, - 0.995873518778533, - null, - -0.20513369452267954, - -0.6416636207854168, - null, - 0.8140175700884437, - 0.4017775071927024, - null, - 0.9134676930566625, - 0.9053357216550473, - null, - 0.9750890449788752, - 0.9716459646429945, - null, - -0.1946060908496355, - -0.21904835125044786, - null, - -0.9762359517899275, - -0.9826954873546125, - null, - -0.36430392616358453, - -0.3715310914375972, - null, - -0.5977562356365329, - -0.6150405267494881, - null, - 0.47715596653272907, - 0.43233941458126335, - null, - 0.4250491852903842, - 0.43233941458126335, - null, - 0.22201324607173523, - 0.2919739625572666, - null, - -0.5335236974418304, - -0.5031593899191755, - null, - 0.5518255610280435, - 0.4134354904394969, - null, - 0.9173560814640797, - 0.9441533476946159, - null, - 0.9012479242597485, - 0.9053357216550473, - null, - -0.7528421965099132, - -0.14569381607270362, - null, - 0.9831760736756715, - 0.9868939104052994, - null, - 0.14440720354803113, - 0.17331598163650028, - null, - 0.8281116850038828, - 0.8460411449908146, - null, - 0.33330590121110604, - 0.419217646457521, - null, - -0.6185063182919639, - -0.7432746646633447, - null, - 0.4066789438868625, - 0.43233941458126335, - null, - 0.978361740668675, - 0.9716459646429945, - null, - -0.997337366136144, - -0.983461394536685, - null, - -0.9985455094332137, - -0.054762350091481775, - null, - -0.5769100808254594, - -0.7432746646633447, - null, - 0.5598040589542902, - 0.5365662218422166, - null, - -0.9996974815393522, - -0.999657818655349, - null, - 0.7882678918984691, - 0.8460411449908146, - null, - -0.8288005950053887, - -0.8262754986032512, - null, - 0.6407902901040736, - 0.637098975006629, - null, - 0.9921156384495284, - 0.995873518778533, - null, - 0.4814906544590024, - 0.5365662218422166, - null, - 0.9700605141543155, - 0.9716459646429945, - null, - 0.6629586652757256, - 0.5852973887324009, - null, - 0.12169519585500703, - 0.17331598163650028, - null, - -0.013412673624480736, - 0.4017775071927024, - null, - -0.988844078055153, - -0.9898273584759455, - null, - -0.9969573740804754, - -0.9965247176696648, - null, - 0.9320738670350328, - 0.9441533476946159, - null, - -0.7002244765766121, - -0.7432746646633447, - null, - -0.9302229603832846, - -0.9307133909148392, - null, - -0.9810797585845811, - -0.9826954873546125, - null, - 0.23056378947283232, - 0.233392336090964, - null, - 0.8460411449908146, - 0.9017731736266421, - null, - -0.15507231752999176, - -0.14569381607270362, - null, - 0.2250399388947308, - 0.37383296441528124, - null, - -0.6687392939866369, - -0.7432746646633447, - null, - -0.8699588810147737, - 0.9700605141543155, - null, - -0.649251708548719, - -0.6416636207854168, - null, - 0.40815822385398104, - 0.4134354904394969, - null, - -0.5504812113955575, - -0.4133456940719313, - null, - 0.022546839161628977, - -0.21904835125044786, - null, - -0.7340244899460417, - -0.7432746646633447, - null, - -0.983461394536685, - -0.9965247176696648, - null, - 0.22756457498741253, - 0.233392336090964, - null, - -0.8262525540103685, - -0.8262754986032512, - null, - 0.9996928837259895, - 0.998745724796541, - null, - 0.866457977409469, - 0.8460411449908146, - null, - 0.7400388311008103, - 0.5852973887324009, - null, - -0.8006132889472164, - -0.792223330522825, - null, - -0.9325975364004978, - -0.9302229603832846, - null, - -0.4371809461920555, - -0.5031593899191755, - null, - 0.7304598746692298, - -0.054762350091481775, - null, - 0.5958760218576016, - -0.054762350091481775, - null, - -0.6260099081521087, - -0.7432746646633447, - null, - -0.37949825566912865, - -0.3715310914375972, - null, - 0.9998979111052312, - 0.998745724796541, - null, - -0.6168878407705092, - -0.7432746646633447, - null, - 0.5305046035480039, - 0.2919739625572666, - null, - -0.931845023547099, - -0.9302229603832846, - null, - 0.9959123289729319, - 0.9868939104052994, - null, - -0.38517590378677974, - -0.3715310914375972, - null, - -0.31425851371364166, - -0.34962590077604566, - null, - -0.9872779335918067, - -0.9826954873546125, - null, - -0.5324381324729128, - -0.4133456940719313, - null, - -0.1409279042320007, - -0.14569381607270362, - null, - -0.8545929855262911, - -0.8262754986032512, - null, - 0.0730357439529666, - -0.3546995178707962, - null, - -0.5143294931039966, - -0.5031593899191755, - null, - 0.4250982475918389, - 0.4134354904394969, - null, - -0.9890255288170483, - -0.9860939961607463, - null, - -0.3190480478855974, - -0.5031593899191755, - null, - -0.9421861172502805, - -0.9302229603832846, - null, - -0.9859781303846927, - -0.9860939961607463, - null, - 0.9441533476946159, - 0.9287044556480543, - null, - -0.5811501137524555, - -0.7432746646633447, - null, - -0.7647051387199354, - -0.792223330522825, - null, - 0.5172690931134367, - 0.5365662218422166, - null, - 0.9977930628227278, - 0.9868939104052994, - null, - -0.9998641786868065, - -0.999657818655349, - null, - 0.35077549762591154, - 0.3527521464412355, - null, - -0.996197690259654, - -0.9969573740804754, - null, - -0.9965247176696648, - -0.981447896270185, - null, - -0.9940343926835679, - -0.981447896270185, - null, - -0.2534716931473827, - -0.21904835125044786, - null, - 0.26450253505686105, - 0.233392336090964, - null, - 0.9299370312179364, - 0.9441533476946159, - null, - -0.34962590077604566, - -0.387865814670145, - null, - 0.32016660474572917, - 0.4134354904394969, - null, - 0.784087655997144, - 0.4017775071927024, - null, - -0.35838081774580693, - -0.37949825566912865, - null, - 0.6452955445235189, - 0.637098975006629, - null, - 0.9986292214026841, - 0.9868939104052994, - null, - -0.987998643171809, - -0.983461394536685, - null, - -0.17582111882350548, - -0.21904835125044786, - null, - 0.7521302952174758, - -0.7432746646633447, - null, - 0.3471405058436117, - 0.37383296441528124, - null, - -0.9988950618332707, - -0.999657818655349, - null, - 0.9868939104052994, - 0.9798529291652749, - null, - -0.387865814670145, - -0.4133456940719313, - null, - 0.19113772677448426, - 0.5365662218422166, - null, - 0.9619790572001333, - 0.9868939104052994, - null, - 0.9907223144362793, - 0.9700605141543155, - null, - 0.9862276626675607, - 0.9868939104052994, - null, - -0.7176911523643805, - -0.14569381607270362, - null, - 0.4134354904394969, - -0.1663959934735289, - null, - 0.9193180921983811, - 0.9441533476946159, - null, - 0.3811015916159905, - 0.4134354904394969, - null, - 0.9966815886506832, - 0.9868939104052994, - null, - -0.9826341095700896, - -0.9898273584759455, - null, - -0.9329766027061513, - -0.054762350091481775, - null, - -0.9082978721905037, - -0.9434239269668026, - null, - -0.703403525647805, - -0.5031593899191755, - null, - -0.5031799286821245, - -0.5031593899191755, - null, - -0.4298589578129376, - 0.9053357216550473, - null, - -0.7476754358639707, - -0.7432746646633447, - null, - -0.9911275835919363, - -0.9898273584759455, - null, - 0.9033445713108679, - 0.9053357216550473, - null, - -0.6707931040793855, - -0.3546995178707962, - null, - -0.9318114457150964, - -0.054762350091481775, - null, - 0.03283301913762097, - -0.21904835125044786, - null, - -0.7896209961284653, - -0.7888040039326378, - null, - 0.05872573825805841, - 0.4017775071927024, - null, - 0.8442054441872747, - 0.8460411449908146, - null, - -0.45586419989195354, - -0.21904835125044786, - null, - -0.5496563693668419, - -0.546304469122644, - null, - 0.9997312689616408, - 0.995873518778533, - null, - -0.17316701717995356, - -0.5031593899191755, - null, - -0.9991877788900292, - -0.999657818655349, - null, - -0.8810191666043795, - -0.054762350091481775, - null, - -0.999657818655349, - -0.9994732896777814, - null, - 0.989469562101152, - 0.9868939104052994, - null, - -0.24463626559676208, - -0.5031593899191755, - null, - 0.33876906892930125, - 0.2919739625572666, - null, - -0.34859443818670494, - 0.2919739625572666, - null, - -0.5796723698126736, - -0.6150405267494881, - null, - -0.6891499230888996, - -0.7432746646633447, - null, - 0.9999181537596229, - 0.995873518778533, - null, - 0.4017775071927024, - 0.5896586298883478, - null, - -0.9572768417176494, - -0.981447896270185, - null, - -0.792223330522825, - -0.7432746646633447, - null, - 0.4891091712181144, - 0.5365662218422166, - null, - 0.9978590079865247, - 0.995873518778533, - null, - -0.47709488619253765, - -0.054762350091481775, - null, - 0.38010699787617414, - 0.37383296441528124, - null, - -0.7358927528851745, - -0.21904835125044786, - null, - 0.23702421679753785, - 0.233392336090964, - null, - -0.9984646439432301, - -0.9969573740804754, - null, - -0.9994403104150834, - -0.054762350091481775, - null, - -0.9163097675883054, - -0.9302229603832846, - null, - 0.8630874047483534, - 0.8460411449908146, - null, - -0.15097041422888582, - -0.4133456940719313, - null, - -0.555039728441279, - -0.34962590077604566, - null, - -0.6137846786087384, - -0.6416636207854168, - null, - 0.41993248328425076, - 0.2919739625572666, - null, - 0.8717081440961149, - 0.8460411449908146, - null, - -0.9969466827646306, - -0.9969573740804754, - null, - -0.9845857356192664, - -0.054762350091481775, - null, - -0.6986922526299895, - -0.792223330522825, - null, - -0.3387450265715322, - -0.37949825566912865, - null, - -0.3546995178707962, - -0.1663959934735289, - null, - 0.9860009373392545, - 0.9700605141543155, - null, - 0.43233941458126335, - 0.37383296441528124, - null, - -0.3825399389329436, - -0.37949825566912865, - null, - 0.9591660969000643, - 0.9716459646429945, - null, - -0.8384094523953758, - -0.21904835125044786, - null, - -0.2750263311187704, - -0.37949825566912865, - null, - 0.20067239365543937, - 0.17331598163650028, - null, - 0.6367116727639551, - 0.637098975006629, - null, - 0.9011165972723566, - 0.9716459646429945, - null, - -0.9845254452515471, - -0.054762350091481775, - null, - 0.0064039382216315496, - 0.37383296441528124, - null, - -0.054762350091481775, - -0.1032154295293315, - null, - -0.9890550501668381, - -0.9860939961607463, - null, - 0.8010808670789424, - 0.8460411449908146, - null, - 0.5966669088691905, - 0.37383296441528124, - null, - -0.9338016570559337, - -0.9302229603832846, - null, - 0.11604149413515165, - -0.5031593899191755, - null, - 0.20100036674888017, - 0.2919739625572666, - null, - -0.8736204736834848, - -0.7432746646633447, - null, - 0.049298806808789924, - -0.6416636207854168, - null, - 0.7339130370548832, - 0.4134354904394969, - null, - -0.6225464571012636, - -0.7432746646633447, - null, - -0.9320157986375388, - -0.9302229603832846, - null, - -0.8235555364708117, - -0.8262754986032512, - null, - -0.23114119837642066, - -0.14569381607270362, - null, - 0.9432647712796597, - 0.9868939104052994, - null, - 0.2350127722885551, - 0.5852973887324009, - null, - -0.5353117160432047, - -0.4133456940719313, - null, - -0.9688028422487136, - -0.9813681390513571, - null, - 0.974017255468333, - 0.9868939104052994, - null, - 0.9927012554596057, - 0.9868939104052994, - null, - 0.4436875796997468, - 0.43233941458126335, - null, - 0.9652810108379646, - 0.9700605141543155, - null, - 0.9444720190405922, - 0.9441533476946159, - null, - -0.9734881154135133, - -0.9826954873546125, - null, - -0.7813133342953449, - -0.792223330522825, - null, - -0.4013965581095551, - -0.34962590077604566, - null, - 0.19232533403607308, - 0.17331598163650028, - null, - -0.45530524569150466, - -0.7432746646633447, - null, - 0.5650172056961607, - 0.5852973887324009, - null, - 0.5193981577327444, - 0.43233941458126335, - null, - -0.6884361221289026, - -0.4133456940719313, - null, - -0.48358676480615415, - -0.546304469122644, - null, - -0.6814559906587296, - -0.4133456940719313, - null, - 0.9971607737090937, - 0.995873518778533, - null, - -0.9995260289536897, - -0.9969573740804754, - null, - 0.997554075852912, - 0.995873518778533, - null, - -0.6100271922700925, - -0.6150405267494881, - null, - 0.6525864063439551, - 0.43233941458126335, - null, - -0.3447793983778856, - -0.34962590077604566, - null, - 0.9716459646429945, - 0.9868939104052994, - null, - 0.33190406772634007, - 0.5852973887324009, - null, - -0.7888040039326378, - -0.792223330522825, - null, - -0.9980999355016797, - -0.9969573740804754, - null, - 0.9922980849812842, - 0.9716459646429945, - null, - -0.7926557120056695, - -0.7888040039326378, - null, - 0.9689545754340202, - 0.9700605141543155, - null, - 0.998745724796541, - 0.9984355759155434, - null, - -0.6092390717718396, - -0.6150405267494881, - null, - 0.9735875067062512, - 0.9700605141543155, - null, - -0.7616070494547275, - -0.7470832699206605, - null, - -0.7226055864269547, - -0.7432746646633447, - null, - 0.9165087102784665, - 0.9053357216550473, - null, - 0.8843579677275162, - 0.9053357216550473, - null, - 0.9987664871809845, - 0.998745724796541, - null, - 0.3500948995813668, - 0.3527521464412355, - null, - -0.46721413919595606, - -0.5031593899191755, - null, - 0.9883201820219933, - 0.9868939104052994, - null, - 0.5852973887324009, - 0.2919739625572666, - null, - -0.9981120479376627, - -0.983461394536685, - null, - 0.1203478079748191, - 0.3527521464412355, - null, - -0.9333187870393623, - -0.9307133909148392, - null, - -0.9997992704589059, - -0.999657818655349, - null, - -0.27291401502847334, - -0.3715310914375972, - null, - -0.983636370666858, - -0.9826954873546125, - null, - -0.9280339561031019, - -0.9302229603832846, - null, - 0.3849937194916824, - 0.43233941458126335, - null, - 0.37383296441528124, - 0.419217646457521, - null, - 0.34706299069206087, - 0.4134354904394969, - null, - 0.9287567965028735, - 0.9441533476946159, - null, - -0.08197839842741869, - 0.05872573825805841, - null, - 0.6296067454371772, - 0.637098975006629, - null, - -0.9444549178799838, - -0.9434239269668026, - null, - 0.924908311383364, - 0.9868939104052994, - null, - -0.666715386761927, - -0.7432746646633447, - null, - -0.7517753944066009, - -0.7470832699206605, - null, - -0.6967361630446481, - -0.6150405267494881, - null, - -0.9828502552609492, - -0.983461394536685, - null, - 0.9555203052228217, - 0.9441533476946159, - null, - 0.9053357216550473, - 0.9287044556480543, - null, - -0.16440671202065463, - -0.14569381607270362, - null - ] - }, - { - "marker": { - "color": "rgb(30, 100, 200)" - }, - "mode": "markers", - "text": [ - "kangaroo.n.01", - "marsupial.n.01", - "domestic_goat.n.01", - "even-toed_ungulate.n.01", - "rock_squirrel.n.01", - "ground_squirrel.n.02", - "vizsla.n.01", - "dog.n.01", - "dandie_dinmont.n.01", - "mammal.n.01", - "broodmare.n.01", - "horse.n.01", - "spotted_skunk.n.01", - "hispid_pocket_mouse.n.01", - "lesser_kudu.n.01", - "placental.n.01", - "water_shrew.n.01", - "insectivore.n.01", - "silky_anteater.n.01", - "giant_kangaroo.n.01", - "metatherian.n.01", - "bronco.n.01", - "pekinese.n.01", - "seattle_slew.n.01", - "thoroughbred.n.02", - "kinkajou.n.01", - "boxer.n.04", - "rabbit.n.01", - "longhorn.n.01", - "bovid.n.01", - "blue_fox.n.01", - "fox.n.01", - "woolly_monkey.n.01", - "new_world_monkey.n.01", - "jungle_cat.n.01", - "vole.n.01", - "western_big-eared_bat.n.01", - "long-eared_bat.n.01", - "leopard.n.02", - "hackney.n.02", - "shetland_sheepdog.n.01", - "coati.n.01", - "carnivore.n.01", - "wild_boar.n.01", - "post_horse.n.01", - "porker.n.01", - "mouflon.n.01", - "australian_sea_lion.n.01", - "seal.n.09", - "coondog.n.01", - "schipperke.n.01", - "black_rat.n.01", - "rodent.n.01", - "waterbuck.n.01", - "hack.n.06", - "odd-toed_ungulate.n.01", - "central_chimpanzee.n.01", - "anthropoid_ape.n.01", - "harrier.n.02", - "lesser_panda.n.01", - "wether.n.01", - "ruminant.n.01", - "collie.n.01", - "shepherd_dog.n.01", - "prancer.n.01", - "doberman.n.01", - "pygmy_marmoset.n.01", - "monkey.n.01", - "phalanger.n.01", - "black-and-tan_coonhound.n.01", - "primate.n.02", - "ferret_badger.n.01", - "badger.n.02", - "cave_myotis.n.01", - "desmodus_rotundus.n.01", - "vampire_bat.n.01", - "malinois.n.01", - "mexican_pocket_mouse.n.01", - "american_flying_squirrel.n.01", - "syrian_bear.n.01", - "brown_bear.n.01", - "dugong.n.01", - "sea_cow.n.01", - "collared_pika.n.01", - "pika.n.01", - "grey.n.07", - "domestic_llama.n.01", - "proboscidean.n.01", - "gib.n.02", - "tom.n.02", - "eurasian_otter.n.01", - "tree_squirrel.n.01", - "flat-coated_retriever.n.01", - "plantigrade_mammal.n.01", - "cotswold.n.01", - "welsh_pony.n.01", - "equine.n.01", - "american_foxhound.n.01", - "addax.n.01", - "aberdeen_angus.n.01", - "clydesdale.n.01", - "ungulate.n.01", - "angora.n.02", - "goat.n.01", - "taguan.n.01", - "prototherian.n.01", - "grade.n.09", - "cattle.n.01", - "yearling.n.02", - "racehorse.n.01", - "nyala.n.02", - "antelope.n.01", - "springer.n.02", - "seizure-alert_dog.n.01", - "cat.n.01", - "striped_skunk.n.01", - "coonhound.n.01", - "hunting_dog.n.01", - "cur.n.01", - "canine.n.02", - "exmoor.n.02", - "pony.n.05", - "vicuna.n.03", - "white-tailed_jackrabbit.n.01", - "kitty.n.04", - "feline.n.01", - "pinscher.n.01", - "afghan_hound.n.01", - "fur_seal.n.01", - "bull_mastiff.n.01", - "hazel_mouse.n.01", - "dormouse.n.01", - "ocelot.n.01", - "marco_polo_sheep.n.01", - "baleen_whale.n.01", - "whale.n.02", - "porcupine.n.01", - "whitetail_prairie_dog.n.01", - "kudu.n.01", - "rudapithecus.n.01", - "hominid.n.01", - "blacktail_jackrabbit.n.01", - "lagomorph.n.01", - "drill.n.02", - "baboon.n.01", - "bluetick.n.01", - "vaquita.n.01", - "tiger_cat.n.01", - "wildcat.n.03", - "wheel_horse.n.01", - "flying_mouse.n.01", - "hound.n.01", - "bighorn.n.02", - "chinchilla.n.03", - "raccoon_dog.n.01", - "palfrey.n.01", - "rorqual.n.01", - "sassaby.n.01", - "sloth_bear.n.01", - "rogue_elephant.n.01", - "white_elephant.n.02", - "virginia_deer.n.01", - "count_fleet.n.01", - "lakeland_terrier.n.01", - "billy.n.02", - "omaha.n.04", - "soft-coated_wheaten_terrier.n.01", - "terrier.n.01", - "bedlington_terrier.n.01", - "wisent.n.01", - "sable_antelope.n.01", - "staffordshire_bullterrier.n.01", - "american_staffordshire_terrier.n.01", - "belgian_hare.n.01", - "aquatic_mammal.n.01", - "tibetan_terrier.n.01", - "exmoor.n.01", - "procyonid.n.01", - "canada_lynx.n.01", - "old_english_sheepdog.n.01", - "raccoon.n.02", - "leafnose_bat.n.01", - "bat.n.01", - "pygmy_sperm_whale.n.01", - "cetacean.n.01", - "african_hunting_dog.n.01", - "spearnose_bat.n.01", - "pooch.n.01", - "percheron.n.01", - "blenheim_spaniel.n.01", - "persian_cat.n.01", - "dun.n.01", - "nail-tailed_wallaby.n.01", - "tabby.n.01", - "three-year-old_horse.n.01", - "broadtail.n.02", - "springbok.n.01", - "sporting_dog.n.01", - "new_world_tapir.n.01", - "muskrat.n.02", - "banteng.n.01", - "yak.n.02", - "hog.n.03", - "basenji.n.01", - "panther.n.02", - "gibbon.n.02", - "ape.n.01", - "tamarisk_gerbil.n.01", - "beagle.n.01", - "small_civet.n.01", - "hind.n.02", - "blue_point_siamese.n.01", - "babirusa.n.01", - "swine.n.01", - "wire-haired_fox_terrier.n.01", - "wood_rabbit.n.01", - "pacific_walrus.n.01", - "walrus.n.01", - "long-tailed_porcupine.n.01", - "hyrax.n.01", - "airedale.n.01", - "silky_tamarin.n.01", - "gomphothere.n.01", - "nanny.n.02", - "urial.n.01", - "bullock.n.02", - "lapdog.n.01", - "german_short-haired_pointer.n.01", - "northern_flying_squirrel.n.01", - "eastern_chipmunk.n.01", - "warhorse.n.03", - "saddle_horse.n.01", - "llama.n.01", - "javanthropus.n.01", - "squirrel.n.01", - "harness_horse.n.01", - "toy_manchester.n.01", - "homo_habilis.n.01", - "chimpanzee.n.01", - "egyptian_cat.n.01", - "domestic_cat.n.01", - "standard_poodle.n.01", - "sambar.n.01", - "potoroo.n.01", - "chow.n.03", - "lincoln.n.03", - "black_squirrel.n.01", - "common_raccoon.n.01", - "wild_sheep.n.01", - "goat_antelope.n.01", - "pygmy_chimpanzee.n.01", - "eared_seal.n.01", - "lesser_rorqual.n.01", - "woodland_caribou.n.01", - "common_shrew.n.01", - "gemsbok.n.01", - "tabby.n.02", - "marmoset.n.01", - "english_toy_spaniel.n.01", - "fawn.n.02", - "pacer.n.02", - "deer_mouse.n.01", - "beef.n.01", - "ox.n.02", - "shire.n.02", - "american_saddle_horse.n.01", - "bassarisk.n.01", - "coach_horse.n.01", - "greater_pichiciego.n.01", - "armadillo.n.01", - "water_rat.n.03", - "guereza.n.01", - "carnivorous_bat.n.01", - "thomson's_gazelle.n.01", - "stablemate.n.01", - "leveret.n.01", - "eurasian_hamster.n.01", - "steed.n.01", - "harpy.n.03", - "fruit_bat.n.01", - "irish_wolfhound.n.01", - "talapoin.n.01", - "stallion.n.01", - "ermine.n.02", - "musteline_mammal.n.01", - "leporid.n.01", - "african_elephant.n.01", - "wood_rat.n.01", - "megatherian.n.01", - "kangaroo_mouse.n.01", - "dairy_cattle.n.01", - "boston_bull.n.01", - "harbor_porpoise.n.01", - "pichiciago.n.01", - "domestic_ass.n.01", - "homo_soloensis.n.01", - "kuvasz.n.01", - "watchdog.n.02", - "black-footed_ferret.n.01", - "german_shepherd.n.01", - "cavalry_horse.n.01", - "mylodontid.n.01", - "wild_ass.n.01", - "big_cat.n.01", - "clumber.n.01", - "spaniel.n.01", - "ant_bear.n.01", - "tamarin.n.01", - "rat.n.01", - "sinanthropus.n.01", - "charolais.n.01", - "citation.n.06", - "liver-spotted_dalmatian.n.01", - "tapir.n.01", - "flying_phalanger.n.01", - "atlantic_walrus.n.01", - "gelding.n.01", - "alaskan_brown_bear.n.01", - "jackass_bat.n.01", - "bull.n.01", - "jaguar.n.01", - "affirmed.n.01", - "false_vampire.n.01", - "stud.n.04", - "male_horse.n.01", - "bird_dog.n.01", - "cattalo.n.01", - "two-year-old_horse.n.01", - "ewe.n.03", - "standard_schnauzer.n.01", - "lemur.n.01", - "zinjanthropus.n.01", - "genet.n.03", - "gordon_setter.n.01", - "groundhog.n.01", - "earless_seal.n.01", - "killer_whale.n.01", - "toothed_whale.n.01", - "jerboa_rat.n.01", - "plains_pocket_mouse.n.01", - "curly-coated_retriever.n.01", - "retriever.n.01", - "fanaloka.n.01", - "viverrine.n.01", - "muishond.n.01", - "corgi.n.01", - "grevy's_zebra.n.01", - "zebra.n.01", - "homo_sapiens_sapiens.n.01", - "homo_sapiens.n.01", - "english_setter.n.01", - "wombat.n.01", - "whirlaway.n.01", - "heifer.n.01", - "uakari.n.01", - "hognose_bat.n.01", - "northern_pocket_gopher.n.01", - "gopher.n.04", - "crabeater_seal.n.01", - "kiang.n.01", - "sennenhunde.n.01", - "pony.n.02", - "tatouay.n.01", - "white-footed_mouse.n.01", - "gnu.n.01", - "tiglon.n.01", - "golden_hamster.n.01", - "appaloosa.n.01", - "pricket.n.02", - "neandertal_man.n.01", - "angora.n.03", - "ass.n.03", - "basset.n.01", - "marten.n.01", - "golden_mole.n.01", - "common_dolphin.n.01", - "sivapithecus.n.01", - "friesian.n.01", - "bovine.n.01", - "water_buffalo.n.01", - "short-tailed_shrew.n.01", - "serval.n.01", - "war_admiral.n.01", - "dachshund.n.01", - "pomeranian.n.01", - "spitz.n.01", - "gaur.n.01", - "cynopterus_sphinx.n.01", - "cotton_mouse.n.01", - "mouse.n.01", - "steller_sea_lion.n.01", - "brocket.n.02", - "shrew.n.02", - "bucking_bronco.n.01", - "rock_wallaby.n.01", - "carthorse.n.01", - "tamarau.n.01", - "buckskin.n.01", - "brahman.n.04", - "bonnet_macaque.n.01", - "anthropoid.n.02", - "entlebucher.n.01", - "pinniped_mammal.n.01", - "newfoundland.n.01", - "durham.n.02", - "wood_mouse.n.01", - "assault.n.03", - "aardvark.n.01", - "giant_schnauzer.n.01", - "common_wallaby.n.01", - "mantled_ground_squirrel.n.01", - "bullterrier.n.01", - "homo.n.02", - "gorilla.n.01", - "great_ape.n.01", - "jackrabbit.n.01", - "roe_deer.n.01", - "imperial_mammoth.n.01", - "elephant.n.01", - "rabbit-eared_bandicoot.n.01", - "chickeree.n.01", - "flickertail.n.01", - "reynard.n.01", - "clydesdale_terrier.n.01", - "bear_cub.n.01", - "bear.n.01", - "stoat.n.01", - "rhodesian_man.n.01", - "ram.n.05", - "sheep.n.01", - "santa_gertrudis.n.01", - "mountain_sheep.n.01", - "eastern_chimpanzee.n.01", - "pouched_mouse.n.01", - "pacific_bottlenose_dolphin.n.01", - "attack_dog.n.01", - "ungulata.n.01", - "deer.n.01", - "domestic_sheep.n.01", - "welsh.n.03", - "solo_man.n.01", - "great_dane.n.01", - "pithecanthropus.n.01", - "lhasa.n.02", - "italian_greyhound.n.01", - "bull.n.11", - "jersey.n.05", - "polo_pony.n.01", - "hare.n.01", - "working_dog.n.01", - "trotting_horse.n.01", - "wirehair.n.01", - "lionet.n.01", - "zebu.n.01", - "glutton.n.02", - "irish_water_spaniel.n.01", - "sealyham_terrier.n.01", - "musk_kangaroo.n.01", - "water_chevrotain.n.01", - "baronduki.n.01", - "guinea_pig.n.02", - "english_springer.n.01", - "viscacha.n.01", - "harnessed_antelope.n.01", - "chesapeake_bay_retriever.n.01", - "numbat.n.01", - "dasyurid_marsupial.n.01", - "large_poodle.n.01", - "roan.n.02", - "entellus.n.01", - "old_world_monkey.n.01", - "squirrel_monkey.n.01", - "wild_goat.n.01", - "anoa.n.01", - "native_cat.n.01", - "bandicoot.n.01", - "mare.n.01", - "river_dolphin.n.01", - "wharf_rat.n.02", - "cardigan.n.02", - "saki.n.03", - "zoril.n.01", - "dark_horse.n.02", - "world.n.08", - "schnauzer.n.01", - "irish_terrier.n.01", - "keeshond.n.01", - "aardwolf.n.01", - "pembroke.n.01", - "foxhound.n.01", - "red_fox.n.03", - "hooded_skunk.n.01", - "woolly_indris.n.01", - "miniature_poodle.n.01", - "pocket_rat.n.01", - "japanese_deer.n.01", - "lesser_ape.n.01", - "slender_loris.n.01", - "cow.n.02", - "merino.n.01", - "bullock.n.01", - "cavy.n.01", - "fur_seal.n.02", - "jird.n.01", - "protohippus.n.01", - "greater_swiss_mountain_dog.n.01", - "capuchin.n.02", - "chigetai.n.01", - "southern_flying_squirrel.n.01", - "mangabey.n.01", - "sled_dog.n.01", - "spouter.n.03", - "tennessee_walker.n.01", - "pangolin.n.01", - "old_world_porcupine.n.01", - "sewer_rat.n.01", - "brown_rat.n.01", - "swamp_rabbit.n.02", - "cheviot.n.01", - "collared_peccary.n.01", - "mountain_goat.n.01", - "golden_retriever.n.01", - "yorkshire_terrier.n.01", - "pachyderm.n.01", - "fisher.n.02", - "tenrec.n.01", - "jumping_mouse.n.01", - "cinnamon_bear.n.01", - "american_black_bear.n.01", - "liver_chestnut.n.01", - "howler_monkey.n.01", - "sow.n.01", - "manchester_terrier.n.01", - "king_charles_spaniel.n.01", - "mouser.n.01", - "american_shrew_mole.n.01", - "peba.n.01", - "asiatic_shrew_mole.n.01", - "hudson_bay_collared_lemming.n.01", - "bunny.n.02", - "rat_terrier.n.01", - "langur.n.01", - "european_wood_mouse.n.01", - "nude_mouse.n.01", - "mole.n.06", - "mule.n.01", - "barren_ground_caribou.n.01", - "galago.n.01", - "paca.n.01", - "wolfhound.n.01", - "mountain_nyala.n.01", - "bezoar_goat.n.01", - "muntjac.n.01", - "packrat.n.02", - "skye_terrier.n.01", - "douroucouli.n.01", - "prairie_dog.n.01", - "lucy.n.01", - "hack.n.07", - "seeing_eye_dog.n.01", - "grivet.n.01", - "rhodesian_ridgeback.n.01", - "manatee.n.01", - "farm_horse.n.01", - "quagga.n.01", - "bouvier_des_flandres.n.01", - "poodle.n.01", - "stepper.n.03", - "rottweiler.n.01", - "tarsius_syrichta.n.01", - "affenpinscher.n.01", - "tailless_tenrec.n.01", - "eastern_dasyure.n.01", - "dasyure.n.01", - "elk.n.01", - "boarhound.n.01", - "woolly_rhinoceros.n.01", - "rambouillet.n.01", - "bowhead.n.01", - "grasshopper_mouse.n.01", - "dall_sheep.n.01", - "gerbil.n.01", - "prairie_vole.n.01", - "finback.n.01", - "polar_hare.n.01", - "hairy-legged_vampire_bat.n.01", - "white-lipped_peccary.n.01", - "peccary.n.01", - "dwarf_sperm_whale.n.01", - "mule_deer.n.01", - "sausage_dog.n.01", - "female_mammal.n.01", - "digitigrade_mammal.n.01", - "siamang.n.01", - "kanchil.n.01", - "chevrotain.n.01", - "giant_eland.n.01", - "timber_wolf.n.01", - "european_hare.n.01", - "guernsey.n.02", - "warrigal.n.01", - "european_rabbit.n.01", - "pug.n.01", - "white_wolf.n.01", - "new_world_mouse.n.01", - "beaked_whale.n.01", - "leonberg.n.01", - "pinche.n.01", - "big_brown_bat.n.01", - "mexican_hairless.n.01", - "american_marten.n.01", - "asian_wild_ox.n.01", - "steller's_sea_cow.n.01", - "old_world_buffalo.n.01", - "ord_kangaroo_rat.n.01", - "kangaroo_rat.n.01", - "lynx.n.02", - "alley_cat.n.01", - "serow.n.01", - "grison.n.01", - "common_eland.n.01", - "phyllostomus_hastatus.n.01", - "grizzly.n.01", - "eland.n.01", - "silky_pocket_mouse.n.01", - "elephant_seal.n.01", - "starnose_mole.n.01", - "gazella_subgutturosa.n.01", - "kerry_blue_terrier.n.01", - "vespertilian_bat.n.01", - "colobus.n.01", - "sea_otter.n.01", - "flying_fox.n.01", - "black-tailed_deer.n.01", - "mouse-eared_bat.n.01", - "chestnut.n.06", - "burro.n.01", - "kid.n.05", - "hereford.n.01", - "snow_leopard.n.01", - "indri.n.01", - "cocker_spaniel.n.01", - "kob.n.01", - "european_lemming.n.01", - "carabao.n.01", - "harbor_seal.n.01", - "shetland_pony.n.01", - "water_spaniel.n.01", - "grey_whale.n.01", - "papillon.n.01", - "toy_dog.n.01", - "draft_horse.n.01", - "eastern_grey_squirrel.n.01", - "arabian.n.02", - "northern_bog_lemming.n.01", - "lemming.n.01", - "weimaraner.n.01", - "civet.n.01", - "saiga.n.01", - "jennet.n.01", - "edentate.n.01", - "pilot_whale.n.01", - "dolphin.n.02", - "grey_fox.n.01", - "grampus.n.02", - "devon.n.02", - "walker_hound.n.01", - "shrew_mole.n.01", - "chihuahua.n.03", - "redbone.n.01", - "borzoi.n.01", - "mapinguari.n.01", - "binturong.n.01", - "scottish_deerhound.n.01", - "greyhound.n.01", - "field_spaniel.n.01", - "griffon.n.03", - "forest_goat.n.01", - "pocket_mouse.n.01", - "hart.n.03", - "pere_david's_deer.n.01", - "algeripithecus_minutus.n.01", - "red_bat.n.01", - "vixen.n.02", - "malamute.n.01", - "western_grey_squirrel.n.01", - "striped_muishond.n.01", - "gallant_fox.n.01", - "margay.n.01", - "saber-toothed_tiger.n.01", - "groenendael.n.01", - "silver_fox.n.01", - "jack.n.12", - "bengal_tiger.n.01", - "mandrill.n.01", - "asiatic_black_bear.n.01", - "pied_lemming.n.01", - "lioness.n.01", - "bloodhound.n.01", - "australopithecus_boisei.n.01", - "milking_shorthorn.n.01", - "jerboa.n.01", - "bongo.n.02", - "norfolk_terrier.n.01", - "serotine.n.01", - "rock_hyrax.n.01", - "welsh_terrier.n.01", - "west_highland_white_terrier.n.01", - "water_dog.n.02", - "red_deer.n.01", - "takin.n.01", - "blue_whale.n.01", - "hooded_seal.n.01", - "secretariat.n.02", - "cape_buffalo.n.01", - "stone_marten.n.01", - "whippet.n.01", - "aoudad.n.01", - "bottlenose_dolphin.n.01", - "lechwe.n.01", - "lion.n.01", - "hartebeest.n.01", - "red_poll.n.01", - "eastern_cottontail.n.01", - "murine.n.01", - "sussex_spaniel.n.01", - "leopard_cat.n.01", - "coydog.n.01", - "big-eared_bat.n.01", - "java_man.n.01", - "coyote.n.01", - "macaque.n.01", - "american_harvest_mouse.n.01", - "belgian_sheepdog.n.01", - "eohippus.n.01", - "ibex.n.01", - "longwool.n.01", - "nilgai.n.01", - "quarter_horse.n.01", - "africander.n.01", - "stalking-horse.n.04", - "apar.n.01", - "three-toed_sloth.n.01", - "indian_elephant.n.01", - "gayal.n.01", - "malayan_tapir.n.01", - "cairn.n.02", - "chiacoan_peccary.n.01", - "rhinoceros.n.01", - "naked_mole_rat.n.01", - "loir.n.01", - "hack.n.08", - "eskimo_dog.n.01", - "queen.n.09", - "south_american_sea_lion.n.01", - "lippizan.n.01", - "smiledon_californicus.n.01", - "norwegian_elkhound.n.01", - "stirk.n.01", - "mustang.n.01", - "cayuse.n.01", - "courser.n.03", - "paranthropus.n.01", - "hominoid.n.01", - "napu.n.01", - "bushbuck.n.01", - "atlantic_bottlenose_dolphin.n.01", - "ayrshire.n.01", - "border_collie.n.01", - "norwich_terrier.n.01", - "liger.n.01", - "oryx.n.01", - "pine_vole.n.01", - "european_water_shrew.n.01", - "two-toed_sloth.n.02", - "sloth.n.02", - "bison.n.01", - "burmese_cat.n.01", - "wolverine.n.03", - "aye-aye.n.01", - "puku.n.01", - "mastiff.n.01", - "common_opossum.n.01", - "potto.n.02", - "typical_jerboa.n.01", - "house_mouse.n.01", - "tarsius_glis.n.01", - "tarsier.n.01", - "slender-tailed_meerkat.n.01", - "cow_pony.n.01", - "fox_squirrel.n.01", - "bay.n.07", - "madagascar_cat.n.01", - "australopithecus_afarensis.n.01", - "australopithecine.n.01", - "livestock.n.01", - "lerot.n.01", - "pole_horse.n.01", - "banded_palm_civet.n.01", - "american_red_squirrel.n.01", - "mara.n.02", - "pteropus_hypomelanus.n.01", - "meerkat.n.01", - "bernese_mountain_dog.n.01", - "przewalski's_horse.n.01", - "sea_lion.n.01", - "black_rhinoceros.n.01", - "onager.n.02", - "common_zebra.n.01", - "narwhal.n.01", - "pouched_mole.n.01", - "crab-eating_opossum.n.01", - "pollard.n.02", - "porpoise.n.01", - "brush-tailed_phalanger.n.01", - "arabian_camel.n.01", - "camel.n.01", - "sei_whale.n.01", - "field_mouse.n.02", - "packhorse.n.01", - "lapin.n.02", - "palomino.n.01", - "prosimian.n.01", - "greater_kudu.n.01", - "macrotus.n.01", - "horseshoe_bat.n.02", - "pademelon.n.01", - "indian_buffalo.n.01", - "new_world_beaver.n.01", - "charger.n.01", - "irish_setter.n.01", - "hog-nosed_skunk.n.01", - "cow.n.01", - "ox.n.01", - "workhorse.n.02", - "tree_wallaby.n.01", - "pygmy_mouse.n.01", - "bearded_seal.n.01", - "guenon.n.01", - "brood_bitch.n.01", - "masked_shrew.n.01", - "sir_barton.n.01", - "cheetah.n.01", - "columbian_mammoth.n.01", - "giant_panda.n.01", - "american_bison.n.01", - "round-tailed_muskrat.n.01", - "gerenuk.n.01", - "smooth-haired_fox_terrier.n.01", - "platypus.n.01", - "monotreme.n.01", - "feist.n.01", - "jaculus_jaculus.n.01", - "wolf.n.01", - "coypu.n.01", - "remount.n.01", - "kit_fox.n.02", - "jaguarundi.n.01", - "american_mink.n.01", - "arctic_ground_squirrel.n.01", - "weasel.n.02", - "abrocome.n.01", - "pteropus_capestratus.n.01", - "fissiped_mammal.n.01", - "eurasian_badger.n.01", - "little_chief_hare.n.01", - "fossorial_mammal.n.01", - "phenacomys.n.01", - "gee-gee.n.01", - "blacktail_prairie_dog.n.01", - "little_brown_bat.n.01", - "hog_badger.n.01", - "pointer.n.04", - "large_civet.n.01", - "roebuck.n.01", - "bandicoot_rat.n.01", - "common_lynx.n.01", - "razorback.n.01", - "puppy.n.01", - "kelpie.n.02", - "pipistrelle.n.01", - "sable.n.05", - "pacer.n.01", - "brocket.n.01", - "alaska_fur_seal.n.01", - "hoary_marmot.n.01", - "marmot.n.01", - "alpaca.n.03", - "spotted_lynx.n.01", - "setter.n.02", - "dusky-footed_woodrat.n.01", - "stag.n.02", - "dik-dik.n.01", - "hippopotamus.n.01", - "mountain_beaver.n.01", - "argali.n.01", - "impala.n.01", - "mastodon.n.01", - "dryopithecine.n.01", - "pole_horse.n.02", - "true_marmoset.n.01", - "royal.n.02", - "plains_pocket_gopher.n.01", - "rat_kangaroo.n.01", - "ferret.n.02", - "australopithecus_robustus.n.01", - "patas.n.01", - "orange_bat.n.01", - "harvest_mouse.n.02", - "dinoceras.n.01", - "siberian_husky.n.01", - "water_vole.n.01", - "wolf_pup.n.01", - "briard.n.01", - "plow_horse.n.01", - "ice_bear.n.01", - "siamese_cat.n.01", - "southeastern_pocket_gopher.n.01", - "kaffir_cat.n.01", - "grey_lemming.n.01", - "cob.n.02", - "white_whale.n.01", - "american_water_spaniel.n.01", - "leopardess.n.01", - "tamandua.n.01", - "longtail_weasel.n.01", - "springer_spaniel.n.01", - "spider_monkey.n.01", - "skunk.n.04", - "brush-tailed_porcupine.n.01", - "fallow_deer.n.01", - "white_rhinoceros.n.01", - "crowbait.n.01", - "bactrian_camel.n.01", - "brown_hyena.n.01", - "cynocephalus_variegatus.n.01", - "flying_lemur.n.01", - "galloway.n.02", - "tiger.n.02", - "welsh_springer_spaniel.n.01", - "valley_pocket_gopher.n.01", - "mesohippus.n.01", - "mammoth.n.01", - "okapi.n.01", - "moke.n.01", - "angora.n.04", - "cougar.n.01", - "humpback.n.03", - "river_otter.n.01", - "otter.n.02", - "bitch.n.04", - "maltese_dog.n.01", - "yellowbelly_marmot.n.01", - "housedog.n.01", - "miniature_schnauzer.n.01", - "aurochs.n.02", - "guadalupe_fur_seal.n.01", - "suricate.n.01", - "ground_sloth.n.01", - "american_water_shrew.n.01", - "old_world_least_weasel.n.01", - "agouti.n.01", - "indian_mongoose.n.01", - "gazelle.n.01", - "crab-eating_dog.n.01", - "tusker.n.01", - "kit_fox.n.01", - "green_monkey.n.01", - "hamster.n.01", - "saluki.n.01", - "mongoose.n.01", - "new_world_porcupine.n.01", - "sorrel.n.05", - "border_terrier.n.01", - "bellwether.n.02", - "sperm_whale.n.01", - "western_chimpanzee.n.01", - "bottle-nosed_whale.n.01", - "false_saber-toothed_tiger.n.01", - "markhor.n.01", - "cro-magnon.n.01", - "meadow_vole.n.01", - "steenbok.n.01", - "kangaroo_mouse.n.02", - "freetail.n.01", - "musk_ox.n.01", - "american_mastodon.n.01", - "western_lowland_gorilla.n.01", - "pony.n.01", - "woolly_mammoth.n.01", - "steeplechaser.n.01", - "striped_hyena.n.01", - "hyena.n.01", - "chamois.n.02", - "appenzeller.n.01", - "snake_muishond.n.01", - "sand_rat.n.02", - "mink.n.03", - "great_pyrenees.n.01", - "blackbuck.n.01", - "rhesus.n.01", - "sand_cat.n.01", - "meadow_jumping_mouse.n.01", - "brittany_spaniel.n.01", - "lion_cub.n.01", - "palm_cat.n.01", - "red-backed_mouse.n.01", - "tigress.n.01", - "peking_man.n.01", - "homo_erectus.n.01", - "pocketed_bat.n.01", - "beaver_rat.n.01", - "guide_dog.n.01", - "ibizan_hound.n.01", - "griffon.n.02", - "echidna.n.02", - "brown_swiss.n.01", - "water_vole.n.02", - "new_world_least_weasel.n.01", - "tibetan_mastiff.n.01", - "tiger_cat.n.02", - "fox_terrier.n.01", - "least_shrew.n.01", - "vervet.n.01", - "hampshire.n.02", - "toy_spaniel.n.01", - "rice_rat.n.01", - "angwantibo.n.01", - "tasmanian_devil.n.01", - "eastern_pipistrel.n.01", - "bruin.n.01", - "wild_horse.n.01", - "proboscis_monkey.n.01", - "buck.n.05", - "hare_wallaby.n.01", - "english_foxhound.n.01", - "yearling.n.03", - "musk_deer.n.01", - "cuscus.n.01", - "frosted_bat.n.01", - "orangutan.n.01", - "dingo.n.01", - "koala.n.01", - "jerboa_kangaroo.n.01", - "brabancon_griffon.n.01", - "labrador_retriever.n.01", - "guanaco.n.01", - "giraffe.n.01", - "bettong.n.01", - "slow_loris.n.01", - "wallaby.n.01", - "brewer's_mole.n.01", - "silverback.n.01", - "aegyptopithecus.n.01", - "wapiti.n.01", - "tarpan.n.01", - "komondor.n.01", - "damaraland_mole_rat.n.01", - "marsh_hare.n.01", - "plott_hound.n.01", - "samoyed.n.03", - "harp_seal.n.01", - "old_world_beaver.n.01", - "mountain_gorilla.n.01", - "indian_rhinoceros.n.01", - "crab-eating_raccoon.n.01", - "nonstarter.n.02", - "red_fox.n.02", - "caracal.n.01", - "hinny.n.01", - "snowshoe_hare.n.01", - "spotted_hyena.n.01", - "toy_terrier.n.01", - "miniature_pinscher.n.01", - "rabbit_ears.n.02", - "tiger_cub.n.01", - "duplicidentata.n.01", - "wild_dog.n.01", - "horseshoe_bat.n.01", - "shih-tzu.n.01", - "boar.n.02", - "black_sheep.n.02", - "beaver.n.07", - "japanese_spaniel.n.01", - "police_dog.n.01", - "pallid_bat.n.01", - "manul.n.01", - "western_pipistrel.n.01", - "mole_rat.n.01", - "cryptoprocta.n.01", - "dinocerate.n.01", - "chacma.n.01", - "eastern_lowland_gorilla.n.01", - "echidna.n.01", - "crab-eating_macaque.n.01", - "hedgehog.n.02", - "proconsul.n.03", - "ratel.n.01", - "right_whale.n.01", - "capybara.n.01", - "thylacine.n.01", - "french_bulldog.n.01", - "bulldog.n.01", - "brown_lemming.n.01", - "pentail.n.01", - "red_wolf.n.01", - "staghound.n.01", - "black_fox.n.01", - "pronghorn.n.01", - "guano_bat.n.01", - "american_badger.n.01", - "scotch_terrier.n.01", - "mudder.n.01", - "yellow-throated_marten.n.01", - "cashmere_goat.n.01", - "california_sea_lion.n.01", - "otterhound.n.01", - "dusky-footed_wood_rat.n.01", - "caribou.n.01", - "cactus_mouse.n.01", - "opossum.n.02", - "dhole.n.01", - "eastern_woodrat.n.01", - "mountain_zebra.n.01", - "chipmunk.n.01", - "mastiff_bat.n.01", - "otter_shrew.n.01", - "southern_bog_lemming.n.01", - "red_squirrel.n.02", - "african_wild_ass.n.01", - "tayra.n.01", - "saint_bernard.n.01", - "fissipedia.n.01", - "maltese.n.03", - "pine_marten.n.01", - "cotton_rat.n.01", - "simian.n.01", - "doe.n.02", - "australian_terrier.n.01", - "boskop_man.n.01", - "silky_terrier.n.01", - "goral.n.01", - "tree_shrew.n.01", - "jackal.n.01", - "warthog.n.01", - "dalmatian.n.02", - "toy_poodle.n.01", - "antelope_squirrel.n.01", - "fossa.n.03", - "pinto.n.01", - "titi.n.03", - "unguiculate.n.01", - "ichneumon.n.01", - "abyssinian.n.01", - "arctic_fox.n.01", - "barbary_ape.n.01", - "anteater.n.02", - "australopithecus_africanus.n.01", - "mediterranean_water_shrew.n.01", - "mylodon.n.01", - "polecat.n.02", - "aperea.n.01", - "brown_bat.n.01", - "opossum_rat.n.01", - "european_wildcat.n.01", - "unguiculata.n.01", - "giant_armadillo.n.01", - "suslik.n.01", - "peludo.n.01", - "pariah_dog.n.01", - "manx.n.02", - "canada_porcupine.n.01", - "tortoiseshell.n.03", - "sand_rat.n.01", - "mountain_paca.n.01", - "bobcat.n.01", - "mole_rat.n.02", - "hearing_dog.n.01", - "two-toed_sloth.n.01", - "mountain_chinchilla.n.01", - "asiatic_flying_squirrel.n.01", - "morgan.n.06" - ], - "textposition": "bottom", - "type": "scatter", - "x": [ - -0.5577750721301247, - -0.5608848000447176, - -0.987839038530239, - -0.9040980095816089, - -0.49349706589464404, - -0.4919734714763398, - 0.8704449068283907, - 0.8949517925645056, - 0.8641600598097161, - -0.05010500674502724, - 0.9460745202632996, - -0.11450250109510615, - 0.8545888304745551, - -0.8492244752032646, - -0.8982643311419388, - 0.11451627274425251, - -0.7475649797563494, - -0.3901117340862227, - 0.11940409147435056, - -0.5623702536854693, - -0.5606025063183887, - -0.39820014919972285, - 0.9987580949579009, - -0.33525086664184406, - -0.2398491296372285, - 0.5874147242199752, - 0.9808336044053236, - 0.013751825928993907, - -0.9488472027816865, - -0.9195223541018899, - 0.9859303009476215, - 0.9871381943743016, - 0.183824401672422, - 0.17280735719352827, - 0.41238798742047866, - -0.664342636837452, - 0.35723722030088995, - 0.3627263723261937, - 0.4898304195441895, - -0.13407806906049574, - 0.8148251068239105, - 0.9825936964593202, - 0.9372625138073847, - -0.9965855158701806, - -0.05925572929044244, - -0.9999410675339253, - -0.7230603783206385, - 0.8588272766621241, - 0.8481612826175042, - 0.9670753794666442, - 0.9871123589026806, - -0.8081194799231878, - -0.658548383207663, - -0.8787293305389015, - -0.15215199663656911, - -0.17267991240321653, - 0.3399935453594394, - -0.2821970768450633, - 0.8318068578089617, - 0.9821623735122418, - -0.993942490369798, - -0.8943688343448787, - 0.7971897416021178, - 0.7873414922839649, - 0.008103065813850523, - 0.9918841817875496, - 0.2117655017804307, - -0.04028191941240203, - -0.5181022068285979, - 0.9566763733494462, - -0.15751414483706927, - 0.9351834215115847, - 0.9375468564146912, - 0.3599867813868042, - 0.37715817908329763, - 0.3855746464643252, - 0.7011206416329232, - -0.8448237235683059, - -0.7153094485509525, - 0.9720190800721314, - 0.9724786859984542, - 0.820990982546522, - 0.820903242438066, - -0.42602593185924675, - -0.4100157219730726, - -0.11071715890329227, - -0.5965281902563411, - 0.10868167571476661, - 0.2312492058482103, - 0.27610833560896186, - 0.9042436390553101, - -0.614288586153413, - 0.9995309019351573, - 0.34363265524244097, - -0.9519349107761043, - -0.11886499332097046, - -0.1514086644448707, - 0.9057183688835632, - -0.984401061675375, - -0.9719759040905884, - 0.04893728704902922, - -0.756037492343237, - -0.9673122173842179, - -0.8012513466280758, - -0.6025881033030696, - 0.4259361540561458, - -0.937239256392224, - -0.9547590905712077, - 0.282745103520924, - -0.22771542251103183, - -0.9116612980844468, - -0.8999044328670354, - -0.9880559980663423, - 0.5449318641899187, - 0.3648105463534726, - 0.8265174117473013, - 0.9631024782966779, - 0.9162235504250108, - 0.6108232304038734, - 0.9188692857569626, - -0.3040309526986416, - -0.2208086487803287, - -0.6201931838632604, - 0.025245675549483898, - 0.2947930799930249, - 0.4227710646614852, - 0.9920564575330724, - 0.9449329976201587, - 0.8473816569203049, - 0.9508159093487326, - -0.7914521918764001, - -0.7796729189262178, - 0.35904055446427036, - -0.9767852533388629, - 0.7991466758949364, - 0.7748305209948197, - -0.7824775843802029, - -0.7916703500044782, - -0.8542809979814117, - -0.212616588033968, - -0.18649712634490548, - 0.016523905829097605, - 0.018738997631740643, - -0.13282543360848592, - -0.10964740722574473, - 0.9913946002520194, - 0.7637273366954045, - 0.2978383372619074, - 0.4209825333447655, - 0.014768895864881906, - -0.5141402754261124, - 0.934989436419813, - -0.8522121818026583, - -0.9073416523356479, - 0.9910907708319839, - 0.3495569029194279, - 0.8016711149531578, - -0.9981180458681915, - 0.9714169356147938, - 0.11266003640021141, - 0.11512261029247281, - -0.8764049360289671, - -0.2741529176876748, - 0.8736709333390589, - -0.8035726198001538, - -0.22824668524370115, - 0.8789133778827983, - 0.861897845047705, - 0.864545779567469, - -0.9988831677455586, - -0.8852377740167442, - 0.9161997026272717, - 0.8912251106787203, - 0.03801395875945148, - 0.8004589871231068, - 0.8961158132155895, - -0.945036173520102, - 0.9846693449347257, - 0.4165603415828374, - 0.3808215690525398, - 0.9881943857819414, - 0.3295078503430154, - 0.3622988675388498, - 0.765390390663855, - 0.7769444359477933, - 0.9970448238737128, - 0.34130574217163445, - 0.8446115471261952, - -0.011065549245332892, - 0.7747270595702029, - 0.2447459879360427, - -0.09789618671528716, - -0.5564129438477773, - 0.39798153489671084, - -0.2216950323197477, - -0.9364362587773297, - -0.9346816784132365, - 0.9260465147265805, - -0.46241042695420714, - -0.7869253769085935, - -0.6572696256790209, - -0.6994675045714663, - -0.9995322257047733, - 0.8494753698225276, - 0.48594554157524256, - -0.29957553175235785, - -0.28594298787649225, - -0.7451572469025288, - 0.9386580202137154, - 0.979582121186607, - -0.8623706117678708, - -0.9717731580563324, - -0.457006014567949, - -0.9959654402984934, - 0.99977774808219, - 0.009699670776640678, - 0.8288822147547917, - 0.8326999754047065, - -0.7845384921377916, - 0.1271506987697991, - 0.912557472068119, - 0.270082351359735, - 0.12871525172557585, - -0.840468071901238, - -0.8281131358608449, - -0.9546287510849186, - 0.8348085897227455, - 0.9700618984423939, - -0.7103178049402941, - -0.6441459072305219, - -0.0844573587364588, - -0.0718744168143171, - -0.5778921939484963, - -0.1537013752338476, - -0.6070544952501462, - -0.12537848597117662, - 0.4671755873608687, - -0.18915639914720692, - -0.27704909150782275, - 0.36763186482700305, - 0.32546363958087715, - 0.8213915005270562, - -0.9998810422008403, - -0.5784593555755773, - 0.8343678874160997, - -0.9260284137581745, - -0.634636734408428, - 0.990434816293063, - -0.7840507333074039, - -0.9443430116801966, - -0.2742781269043764, - 0.8547196400658671, - 0.8078370267960702, - -0.9816869705034369, - -0.4243297023580865, - -0.9911236123553803, - 0.3621995122398284, - 0.2518861959053926, - 0.7629150943268985, - -0.7562011553347936, - -0.16508369758595018, - -0.8887387668528107, - -0.8094170347878016, - -0.7399299118656987, - -0.9990743510872399, - -0.3588708691804945, - 0.9943734683969999, - -0.39029365441023955, - 0.13153097970661917, - 0.13789317143985486, - -0.6911450493957103, - -0.03153576352075989, - 0.3640778108787309, - -0.9600960461488594, - -0.14452404758119558, - 0.029707719955216087, - -0.9011813482027522, - -0.25111316014758717, - 0.30105174965341686, - 0.26514072333767674, - 0.9586697686053359, - -0.06733914668325557, - 0.4653161978368131, - 0.885879654480572, - 0.9078773439325017, - 0.02093417525511497, - 0.11772863771449547, - -0.6632973608809052, - 0.09259244004129141, - -0.8380853636282761, - -0.9728442266782935, - 0.5919418845224418, - 0.7479336159997508, - 0.0957082093399271, - -0.3706343187130726, - -0.16164959121696107, - 0.9976496246122109, - 0.9990034461870403, - 0.905031015889471, - 0.8152021551925026, - -0.9973447467602712, - 0.6306278994696418, - -0.5069507927461486, - 0.5309005392074985, - 0.9614106106424879, - 0.924005727046005, - 0.6963498321576056, - 0.27424942438316696, - -0.836863319812823, - -0.19846354876271596, - -0.946085809426516, - -0.166611777356549, - 0.9860503679914508, - -0.48092228318460684, - -0.5151468819216782, - 0.8281094527552906, - 0.2074070116065461, - 0.972699177859245, - 0.37944048612246206, - -0.8476430421727907, - 0.5359159979356352, - -0.24712711951236366, - 0.3046293956905703, - 0.44396022313129474, - 0.22297902327668664, - 0.9270281517053696, - -0.6725146186335873, - 0.09665736933029924, - -0.9222245240627933, - 0.853270369130142, - -0.1800078470159356, - -0.2202253682427984, - 0.9939456504968236, - 0.8671313116949735, - -0.8053543915818164, - 0.8426358355794804, - 0.7790808872998797, - 0.7686861957244132, - -0.8563857188092047, - -0.8403798946971588, - 0.9424436520883971, - 0.9452253765254877, - 0.9849075810619005, - 0.9854526520398087, - 0.8824016518772984, - 0.9883208050789435, - -0.995661383789946, - 0.07867017022967256, - -0.13974715210889785, - -0.14298519566678491, - 0.9301975071577891, - -0.736514136768076, - -0.21771466228266262, - -0.8721085709994569, - 0.14503908081682138, - 0.35435762730171794, - -0.8101160545434133, - -0.8254805390257728, - 0.8231594238749074, - -0.4786463214389543, - 0.9737121104445094, - -0.1987834580045823, - 0.15184324860847417, - -0.8540222934734991, - -0.9527893627232811, - 0.5420835245697138, - -0.891189421844747, - 0.2994493455787637, - -0.7628866100940724, - -0.14725593032412293, - 0.008132307357293313, - -0.4216204413117397, - 0.9073901411949882, - 0.9147614974363741, - 0.2551860257730893, - 0.7388161230913316, - -0.24718677009066528, - -0.9818280160458944, - -0.9698252421162012, - -0.9278668593270534, - -0.4290110690005367, - 0.40683225499196923, - -0.4356803452755577, - 0.7436498357659752, - 0.6122328070051265, - 0.724744526881137, - -0.9913665067971531, - 0.22074082036209292, - -0.8827054130814052, - -0.8615468075309849, - 0.8639619344540178, - -0.8188137138847649, - -0.4674158142290416, - -0.3891948521078004, - -0.46657217480881874, - 0.48040555567579724, - -0.9222554126435281, - 0.039661928659308475, - -0.9663238758845761, - -0.06026607488302683, - -0.08605199976573685, - 0.9743627340602569, - 0.8472357764337582, - 0.8409035502956267, - -0.748630279937278, - -0.8583754356242079, - -0.20147512736137727, - -0.3772070232069181, - 0.8569242571203489, - -0.5594180722737166, - -0.5239521776355911, - 0.8992354122900377, - -0.16176559783249686, - -0.2894282248706739, - -0.2788197855466757, - 0.021004526866180574, - -0.8141774089662994, - 0.10656496760384095, - 0.11165685971397364, - -0.5621358857615602, - -0.6134604495109929, - -0.48039456242390216, - 0.9863515473287413, - -0.35570886084751063, - 0.9729386060663637, - 0.9721346549682581, - 0.8766286486162702, - -0.15110019646226727, - -0.9157402677581205, - -0.9366799517265493, - -0.9432943407421661, - -0.8077828880898575, - -0.28461976688053786, - -0.5631634583637518, - 0.7837544398636493, - 0.9904236162819715, - -0.01371621255306728, - -0.8417602025486345, - -0.9354118994502362, - -0.9532290058574495, - -0.16093757011819482, - 0.9843888786112054, - -0.18362654027418052, - 0.9981617474975439, - 0.8879996010137126, - -0.4300469338197953, - -0.9296581078728308, - -0.1621639316157397, - 0.02466969712861225, - 0.9707228674476807, - -0.4332747506336246, - 0.8748558301150213, - -0.9022080084351346, - -0.7550938466316066, - 0.9321993730518686, - 0.8301964182375398, - 0.881375204961191, - -0.5350277919729314, - -0.7540172455208662, - -0.625954195281967, - -0.4431497105463547, - -0.7405282794587479, - -0.798822139744454, - -0.9051015041676672, - 0.9432842887252485, - -0.5687699623862037, - -0.5669565134384237, - 0.9952395534053959, - -0.1883702180123972, - -0.055707131238350555, - -0.0705573633414318, - 0.15398363458887757, - -0.7804866626330113, - -0.8878981889680232, - -0.5685295995826943, - -0.563005376149324, - 0.11283107452478423, - 0.7638563779973578, - -0.8293097076787393, - 0.9785332235851929, - 0.058999370870563346, - 0.912392888250739, - -0.21492438395112595, - -0.16637959960726104, - 0.8575542548816998, - 0.8280546000654804, - 0.6987350845339365, - 0.9996496438565259, - 0.9960879134090597, - 0.9051931583926858, - 0.695517051720713, - 0.8984131565372075, - -0.21629191565228675, - 0.9998392794878692, - -0.8351259386047009, - -0.8721771246774501, - -0.3056403744406638, - -0.1581043993615636, - 0.17264631007055736, - -0.9332684167914204, - -0.8530885796250374, - -0.4513312234304765, - 0.851224831675728, - -0.7448259693967975, - -0.1853041620682275, - 0.9715764993938506, - 0.07825565823570042, - -0.9961009922608486, - -0.7012565354417301, - -0.02781179160141777, - 0.49567785471406384, - 0.7587180414814454, - -0.1060404171629972, - 0.9252264768641268, - -0.7819173681283689, - -0.8715862473622176, - -0.8750174813406021, - 0.0033390586724427085, - -0.9367027971019825, - -0.9999327887819682, - -0.9499102234365578, - 0.8091540432401212, - 0.765485154754198, - 0.11306290934395367, - 0.920197814527494, - -0.0580284396671333, - -0.7244791134187885, - 0.9765572609563457, - 0.9736619223155802, - -0.08868838387472804, - 0.07168130453134494, - -0.6661278568187315, - 0.6661560616878243, - 0.7470188902609217, - 0.47704354328642956, - 0.28054517854340405, - 0.12234047733610542, - 0.29854324416712785, - -0.5291346966852578, - 0.01686789340460195, - 0.5375784829383833, - -0.05399863730531258, - -0.8345858156483286, - -0.8625924884377737, - 0.28173099123520157, - -0.5361570680755273, - -0.9849924736271006, - -0.18261684207361645, - -0.7029059200386498, - 0.9351360886564798, - -0.9135501077955797, - -0.7736821608036647, - -0.8557975252086694, - -0.5957263385321176, - 0.845468386258038, - 0.160166564897169, - -0.7624276635627749, - -0.19617997634195738, - -0.051468256331106216, - 0.8853380840661578, - -0.08213988735709903, - 0.8953860711306552, - 0.8201212214160921, - 0.03162725676491194, - -0.2676742159436676, - 0.9985923825347196, - 0.9929871935034416, - 0.08958975843646189, - 0.7698032958760858, - -0.3396590074138266, - 0.9876875804430685, - -0.09187670303657176, - -0.5674630233133962, - -0.5667207537668216, - -0.7715945513899234, - 0.9420873596108897, - 0.3761811306505859, - -0.9927015921587473, - 0.7497787490391032, - -0.6763601519984279, - 0.34793346759821875, - -0.7452216710618185, - -0.6632538868623471, - 0.8029168150457671, - 0.03112965058632844, - 0.3871729980854206, - -0.6793588786596821, - -0.9991514122099525, - 0.7561207667784107, - -0.993698138625633, - 0.7845834762371446, - 0.5151800745313186, - -0.17273162374915207, - -0.30293960310867113, - 0.38969524533791633, - -0.7001308743900908, - -0.7075944142517531, - 0.998989568663902, - 0.02291174916431874, - -0.6907196968532938, - -0.30673904329810037, - 0.044268732611014515, - 0.84643109526338, - 0.9981476131368131, - 0.658617473009733, - 0.7786077726606655, - 0.6360668779540986, - 0.29210075459481977, - 0.360822568074545, - 0.9813689881184854, - 0.9126409047302381, - -0.8378222221867448, - 0.8138434838041426, - -0.9202878752839112, - -0.8354444803939548, - -0.8331362514807509, - 0.4253197726095261, - 0.33546750546209303, - -0.9318199737599316, - 0.9306074646431853, - -0.7332976279609139, - 0.41814228548790394, - 0.9701696095825754, - -0.7267071890826088, - -0.8479734039552517, - 0.8422802842783029, - 0.24174074013927777, - -0.9854815988512703, - 0.9476994800212153, - 0.36644156163229963, - -0.03504048960650295, - 0.9127811757353157, - 0.3000197621470708, - -0.9945627521804894, - 0.3843003706754813, - -0.33189879623196716, - -0.339816455283141, - -0.8309731764058823, - -0.8070272011471478, - 0.5049355109265832, - -0.12637175316582364, - 0.9992890228426353, - -0.8874906411060359, - -0.7195374954951086, - -0.9288268583381887, - 0.8374164694466258, - -0.9276657775236297, - 0.9111473290415693, - 0.7938269556972446, - 0.7156859049568697, - 0.7656526872153646, - 0.01935258586037077, - -0.6112790131029843, - -0.04814139309871386, - -0.6927638141973431, - -0.6780914459230432, - 0.9392902159992927, - 0.9845669279825296, - -0.8961412962908429, - -0.2475176318155273, - 0.1332238456654993, - 0.7710662243747075, - 0.7704619723265075, - 0.6475599440876456, - 0.7676779669420754, - -0.9489590191987537, - 0.9140152228334274, - 0.28962010274351363, - 0.7894343117141913, - 0.9518937929509466, - 0.6489277257260823, - 0.6107613989397247, - 0.9978601616650759, - 0.9073654306939326, - 0.9078483632352856, - 0.9239121789820389, - 0.9312479007059525, - -0.9249126134677954, - -0.8491447074710969, - -0.8355348304832562, - -0.9815404530141068, - -0.12158600974651883, - 0.3723574185859199, - 0.6580855000629445, - 0.4834646789418659, - -0.621634751019698, - 0.8914423886610708, - -0.26111160382559834, - 0.4332220559793186, - 0.560247210317818, - 0.6050546745812485, - 0.9907729177042365, - 0.1465248499687191, - 0.47130894837143555, - -0.11137999329627833, - 0.9642338178367389, - -0.5908175909778024, - 0.48377459490932456, - 0.9326444669838464, - -0.1933670434703627, - -0.9725913188454438, - -0.6778776192885282, - -0.9609710383301341, - 0.8707881785969892, - 0.36230087824927887, - 0.19100837868167664, - 0.8763831035782218, - 0.9695747072393511, - 0.8001235205759577, - -0.8430505824651278, - -0.8944625556056051, - 0.7880728267068747, - 0.8449000149431427, - -0.13574135166093412, - -0.9994633074401308, - 0.9179354597253828, - 0.9211462541788408, - -0.8613488035862455, - 0.7855867598956656, - -0.8737222236321771, - 0.5959138878613134, - -0.9229002144497045, - -0.9408499289521038, - 0.011641602986085244, - -0.7433316499890783, - 0.9249559648634446, - 0.9579736567526005, - 0.996458773845186, - 0.31776910125690133, - -0.16466214972751955, - 0.9955113104575438, - -0.06043775975213638, - 0.6608274161620719, - 0.6849439011117802, - -0.18239431868034855, - -0.7872856825401948, - -0.9107093864032038, - -0.9174264018518857, - -0.1250467592414716, - -0.8899579042357579, - -0.27282148543956936, - 0.14782683282733347, - -0.3665387406453215, - 0.11664126641096384, - -0.8660126375726365, - -0.47243613636861814, - 0.9848614899239123, - -0.9997272784866683, - 0.19179824692125683, - 0.8234728244159563, - -0.8044880200728965, - -0.06504048047218428, - 0.9672897478784687, - 0.8320387266002884, - 0.8525123224622804, - -0.28628594094396775, - 0.5253314225179423, - 0.9492962853149935, - -0.9750166502168459, - -0.4132012555775927, - -0.9565708804406265, - 0.9878990112471204, - -0.2281908403556148, - -0.11569071388621839, - -0.978367771112617, - -0.8993862104132175, - 0.7775759261403891, - -0.9688476166627615, - 0.7929450534375537, - 0.7338523679423083, - 0.5679962500211518, - -0.9950109962579011, - -0.6665799833943199, - -0.7695039882994271, - 0.052469472934186544, - -0.045211962049672226, - -0.9999057355770917, - 0.39345117733142393, - 0.9363348925940768, - -0.1795879660434844, - -0.7576871149725964, - 0.9993641871926863, - -0.5854487527013671, - -0.19292335712714745, - -0.7317444902603595, - -0.7848455115002692, - -0.32635476334005237, - -0.3285936598277887, - 0.9875758184235615, - -0.06957004761633692, - -0.609509473227673, - -0.06534410649162872, - -0.046532992260588366, - -0.20910276810289424, - -0.2015892576423615, - -0.35775688181183996, - -0.7780712240407945, - -0.45947824198844955, - 0.9828559054625471, - -0.6174841029796031, - -0.6501040770026839, - 0.2923587226141981, - 0.9936578651584502, - 0.9766640598796202, - 0.18581994828906614, - 0.8585453530463578, - -0.326974806591985, - -0.5113751669712598, - 0.07577717186805544, - 0.7847931599504155, - -0.5949871151385322, - -0.6339642139186719, - -0.7692233078132298, - 0.7539670891619255, - -0.532949798632305, - -0.6594442643005834, - -0.6821105161248474, - 0.8814410449220039, - -0.8206628389174043, - -0.014246919421016935, - 0.020704106759058104, - -0.13115259494727227, - -0.016507155240764095, - -0.7982238828048598, - -0.7013372178067324, - 0.33272913298959933, - -0.5601792067668333, - -0.9189361836023403, - -0.35660626035591436, - -0.08670729785726716, - 0.9997229816366277, - 0.7302908952165009, - -0.9793528713449409, - -0.9075258872029662, - -0.0012403061337466997, - -0.5542059198615769, - -0.8684854396860553, - 0.8467563901903522, - -0.07724438051860046, - 0.601720951367559, - -0.3961498115571683, - 0.4930021907610369, - 0.6151426695504719, - 0.10521257433692258, - 0.9747704455222493, - -0.9999645337836846, - -0.5992954502526028, - -0.9099157936203077, - 0.8926041728920138, - 0.4243509089343622, - 0.4263332749555135, - 0.5202563499561181, - -0.6595915932711143, - 0.9971308000138286, - -0.6507465906425375, - -0.08193580105722048, - 0.9728794577769003, - 0.43567665615699847, - 0.6818193920340386, - -0.49412566252783935, - 0.8835063771184565, - -0.7856237287456027, - 0.24083271800863146, - 0.959264932394243, - 0.9559102686850478, - -0.4008258451619707, - 0.8321754290832424, - -0.6593062080699952, - -0.18891409212789223, - -0.7669846692651794, - 0.40305427784700737, - 0.9400571279532789, - 0.9617746445940042, - 0.9812503907383816, - -0.8347194045275199, - -0.8780213470218232, - 0.38484268167184227, - -0.6250502730403992, - 0.964760552461297, - 0.8016414480014135, - 0.33491629286920016, - 0.9068318480107362, - -0.20677409000285552, - -0.8508432357395077, - 0.846100750457872, - -0.8106041948820504, - -0.8134893311811193, - -0.59466994986427, - 0.5849423889837625, - 0.9223388196420592, - -0.6257768383447387, - -0.09716746286035391, - -0.900139524092488, - -0.6201214636144278, - -0.573284378808246, - -0.7934839255639483, - -0.9703855102436038, - 0.000324491451152452, - -0.20681128257080558, - 0.023435533635288813, - 0.2357130893748314, - 0.07652198680877992, - -0.8305587180902697, - -0.5769647000087915, - 0.9452413305622532, - -0.20459509731149686, - -0.08664261442326074, - 0.31615693664033206, - -0.8380391357153565, - -0.958899594929593, - 0.5102732541129454, - -0.6479479532545641, - 0.9984187221389875, - 0.7923509068904075, - -0.10262500759264657, - 0.9588192091281654, - 0.34679047729036994, - -0.8265966022334919, - 0.39994326299416905, - -0.6892904056765033, - -0.1463344607789824, - 0.7768879148941928, - 0.9287440295947456, - 0.5190864501474409, - -0.02892398414419745, - 0.7149020240191445, - 0.9402170110548401, - 0.16709063216372383, - 0.8333146651529926, - -0.7784786992043925, - -0.9922478410717, - -0.5448264615846273, - -0.0208540202625409, - -0.6544188542306194, - 0.9993611632530179, - 0.6866726425018101, - 0.6824313879965012, - -0.8250634935728909, - 0.49875044878193364, - -0.6851944693096242, - -0.8223724111153371, - -0.16404298489552993, - 0.10445628805189343, - -0.9647952030965845, - -0.37296599763733984, - 0.382338166376639, - 0.35007833939880706, - 0.8005567401918448, - 0.8987743645773044, - 0.9005562073645459, - 0.5869925988772535, - 0.9786988716785942, - -0.862879022344792, - 0.9987252340167667, - 0.861401994461255, - -0.9988858011630565, - 0.856713049144661, - 0.992772098142125, - 0.12471147462412654, - -0.7235656966070413, - 0.8730443892094313, - -0.8166811318527936, - 0.9558477786129808, - -0.9595959124831768, - 0.9964723602643005, - -0.87946492547193, - 0.9899452113415462, - -0.08321411482121079, - -0.8901942380829772, - 0.7824983767270625, - 0.9780915369447468, - -0.785568119667442, - 0.08033028234259863, - 0.993232359527207, - -0.9950985453423669, - 0.6919777637634281, - -0.27160295978992083, - 0.7742475819522848, - 0.565390797311026, - -0.9623813365304162, - -0.1557626202182345, - -0.6685980251506688, - -0.9160143378594038, - -0.8572475883537446, - 0.40723409228038776, - -0.8908161276324851, - -0.04479304106865734, - -0.30854197437750885, - -0.4117510576167781, - 0.10742288284572793, - -0.1743054890271416, - 0.9987337553548762, - 0.999386637189107, - -0.9657954628405734, - 0.957547748159586, - 0.8787406720286636, - -0.7567468243310541, - 0.6789935072006911, - 0.7317969187510676, - -0.9845281824040655, - -0.05845307291151152, - 0.46673965273119, - -0.7331035568713197, - 0.9335566784339334, - 0.5827110961398321, - 0.9925214157120338, - -0.6612833956255495, - 0.46787352565082785, - -0.1699542619178164, - -0.17202949059407777, - 0.3498189952445474, - -0.6862530427363213, - 0.890008872845558, - 0.9556235068002231, - 0.9941954793098182, - 0.42951278156689515, - -0.8690584075670051, - -0.7094877812679673, - 0.8842677472038664, - 0.9977711840131422, - 0.36075937493117344, - 0.8913637864451042, - -0.3951879904553349, - -0.07334096553670373, - -0.9217885052547868, - 0.748268044693149, - -0.732276208770093, - -0.21724743584247494, - -0.564473037512038, - 0.36755545825119135, - 0.9743362728240919, - 0.15271289559243217, - -0.08611018059776228, - -0.1376644566695981, - -0.5586531774916451, - 0.631779706320642, - -0.4720789933747004, - -0.8272312120735983, - -0.5197159969171747, - 0.35769715210403974, - -0.27695894185756686, - 0.9937449424865958, - -0.47291929135402866, - -0.5736024943410273, - 0.9953164667525363, - 0.9957734096825454, - 0.4029948189627571, - -0.9662601912042635, - -0.576473723690691, - -0.2281382323066293, - -0.5567443986573617, - 0.2798822587894758, - -0.2391703429157739, - -0.11548313628092736, - -0.8285985505831424, - 0.14225250521175395, - 0.7173009154347887, - 0.8652959531502765, - 0.010684496396968068, - 0.9091967902443793, - 0.7476548664335125, - 0.8452486545279843, - -0.36654394007447544, - -0.2834061839196563, - 0.27148209563346487, - 0.9896511995315497, - -0.12365264431072365, - 0.9968119487913457, - -0.9856215251708369, - 0.2953479887987033, - 0.03562864135234538, - 0.999706387511133, - 0.7605340724203205, - 0.9999756898015725, - 0.022419059011987243, - 0.5584540947784699, - 0.14545374358359495, - 0.9947492803350938, - 0.3284278907263845, - 0.8157199395369995, - -0.9977298234983066, - -0.9778711489248066, - -0.36327757588250514, - 0.7357408386222115, - 0.9696062346176942, - 0.40032008765014915, - 0.433042296476241, - 0.37367533317667545, - -0.7137960020830307, - 0.9894614974729529, - -0.9713379682485226, - -0.09453602497653829, - -0.2886945243531812, - 0.4311121951870156, - -0.06915421304821553, - -0.37698252932395415, - -0.1211907415682424, - 0.9472732838262747, - 0.7931579976705296, - -0.667673410615101, - -0.5653502530925627, - 0.6389369804393501, - 0.6769313718727635, - -0.7294008975115407, - -0.8904758650084089, - 0.9927412615998716, - 0.9158736710252667, - 0.5764841469268701, - -0.9427740042779841, - 0.3958649768129857, - 0.931087467556017, - 0.8491221461489701, - -0.1745977424828839, - 0.9164995676445634, - -0.8168239433972693, - 0.8561798214430962, - 0.9310055228722756, - -0.693509138135798, - -0.9884436406142442, - -0.861015054595319, - -0.5879083764529253, - 0.9818647414108098, - -0.6575110053202983, - 0.06478228676646405, - -0.6239987974074965, - 0.2483561651763794, - -0.31232901277398867, - -0.6818919371420603, - -0.6236271664576195, - -0.34551551933976293, - 0.9244015582165606, - 0.9794953309040931, - 0.4754116763722626, - 0.26160858402452086, - 0.9102523528337779, - -0.4860124285084071, - -0.10715328446562826, - -0.36149711674739704, - 0.7107534435664846, - 0.5550624868608589, - 0.8841195379701349, - -0.9445757759408906, - -0.8786507702476847, - 0.7415966142977328, - -0.9979069946151298, - 0.9687470135677769, - 0.9936828055379981, - -0.47425687597863986, - 0.9942556439380833, - -0.38009551359206456, - 0.14837531016356387, - -0.4585181322994661, - 0.9670856734344697, - 0.32110026357789545, - 0.987797743919753, - -0.06513284686660083, - 0.08552611697148484, - -0.18731516458608105, - -0.7531155080310599, - 0.23417765846687247, - 0.9456884807967021, - -0.4576251355120371, - 0.3588758478142084, - -0.5605773142655659, - -0.9028361124032117, - 0.07907749756652231, - 0.1843077091990216, - -0.5062260251684503, - 0.24983045333789294, - 0.6610680701443743, - 0.32848524478671154, - -0.7866102693060106, - 0.3705976123510187, - -0.6948981799037778, - -0.6947126574887322, - 0.26558591595000647, - -0.6996450266319899, - 0.8982327271773334, - -0.3157041987365607, - -0.47636054876195205, - -0.5989868039674535, - -0.07485951874943271 - ], - "y": [ - -0.8288005950053887, - -0.8262754986032512, - -0.15091554291167442, - 0.4017775071927024, - -0.8695559324275886, - -0.8701198061302512, - -0.49223903228705174, - -0.4133456940719313, - -0.5031799286821245, - -0.1032154295293315, - 0.3237327899410585, - 0.9868939104052994, - 0.5190136669287597, - -0.5279776588586602, - 0.43940251264184366, - -0.054762350091481775, - -0.6639466287177916, - -0.9124072507679903, - -0.9927162716757586, - -0.826786438603043, - -0.8258927670460846, - 0.9172439683869399, - 0.049298806808789924, - 0.9420943277758203, - 0.9700605141543155, - -0.8091603525918349, - -0.1946060908496355, - -0.999657818655349, - -0.3156040984487907, - 0.37383296441528124, - -0.16703167563828125, - -0.14569381607270362, - -0.9828502552609492, - -0.983461394536685, - 0.9109697113496676, - -0.7470832699206605, - -0.9339912228992701, - -0.931845023547099, - 0.8717081440961149, - 0.9909497358003039, - -0.5796723698126736, - 0.18534658120178443, - -0.1663959934735289, - -0.08197839842741869, - 0.9981866226374008, - -0.005558082677428662, - 0.6907388324747946, - 0.5121916031869844, - 0.5290703669693967, - -0.2544017649198742, - -0.15985530652133234, - -0.5888776025229273, - -0.7432746646633447, - 0.47715596653272907, - 0.9883201820219933, - 0.9769155725982757, - -0.9403831581105507, - -0.9586465198957383, - -0.555039728441279, - 0.18749062582937773, - -0.10948752035066134, - 0.419217646457521, - -0.6037024738874821, - -0.6150405267494881, - 0.9999181537596229, - 0.12700800226401665, - -0.97721376276855, - -0.9965247176696648, - -0.8545929855262911, - -0.2910734486537196, - -0.981447896270185, - 0.3539263391394917, - 0.34706299069206087, - -0.9329115670364648, - -0.9261019116892131, - -0.9225725397153168, - -0.7130185513652416, - -0.5350025395057587, - -0.6986922526299895, - 0.234573761089533, - 0.23271266578061056, - 0.5708005394925606, - 0.570846798068919, - -0.9045526625271868, - -0.9115900178643682, - 0.9938217536066828, - 0.8023723026878067, - -0.9934460088808937, - 0.9728390321977372, - 0.9609813949387468, - 0.4268475671139659, - -0.7888040039326378, - -0.03024155488296775, - -0.9387735905487372, - 0.30624635014965285, - 0.9928796137131938, - 0.9798529291652749, - -0.42384033789427394, - -0.1757704288490784, - 0.2350127722885551, - 0.9987664871809845, - 0.5896586298883478, - -0.2534563301859119, - 0.5966669088691905, - -0.7979198583990419, - -0.9045588275259837, - -0.34859443818670494, - 0.2919739625572666, - 0.9591660969000643, - 0.9716459646429945, - 0.41089451294484086, - 0.43233941458126335, - 0.15398691523037378, - -0.8384094523953758, - 0.9287044556480543, - 0.5627258921972068, - -0.2687215360473567, - -0.387865814670145, - -0.7913316405403773, - -0.3546995178707962, - 0.9526180671456224, - 0.9745705348898142, - 0.7842542951860295, - -0.9996402683824148, - 0.9555203052228217, - 0.9017731736266421, - 0.12430499883014143, - -0.3271753806333416, - 0.5309317943789492, - -0.3095996093171432, - -0.6111113826507552, - -0.6260099081521087, - 0.9332997770276427, - -0.21402020603334632, - 0.6003542464430717, - 0.6307359581531313, - -0.6225464571012636, - -0.6108300035803099, - 0.5193981577327444, - -0.9770610537049802, - -0.9813681390513571, - -0.9998210286147983, - -0.9985455094332137, - -0.9910746030092387, - -0.9938122777601816, - -0.13065516490498144, - 0.6455153634860399, - 0.9545571857950808, - 0.9053357216550473, - 0.9998436093161361, - -0.857587961387576, - -0.34962590077604566, - 0.5231620696668101, - -0.4199576954096154, - -0.13269273372699775, - -0.9368874635847932, - 0.597017254211247, - 0.060813319564746525, - 0.23702421679753785, - -0.9935799147892742, - -0.9933133989243097, - 0.4814906544590024, - 0.9616546438542983, - -0.486484150882919, - 0.5951800026694467, - 0.9735875067062512, - -0.4769226257206028, - -0.5031593899191755, - -0.5025143972769219, - 0.04633519851557989, - 0.465061953566876, - -0.4006453484857502, - -0.45352137556721117, - -0.9991877788900292, - 0.5958760218576016, - -0.44376897459360964, - 0.326918532750541, - 0.17021020000399517, - 0.9090883773608591, - -0.9246140885741954, - 0.15261738959755378, - -0.9434239269668026, - -0.9309128373173914, - 0.6435063741752369, - 0.6280582979214211, - -0.07641708626166717, - -0.9398969616743778, - -0.5353117160432047, - 0.9998979111052312, - -0.6322674235418574, - 0.9694914292574567, - 0.9951737116808191, - -0.8308082412463773, - 0.9173560814640797, - 0.9750890449788752, - 0.35077549762591154, - 0.35543611843059275, - -0.3715310914375972, - 0.886566417841709, - -0.6168878407705092, - 0.7536102905642265, - 0.7146332356789303, - 0.02803653569956756, - -0.5275474878820486, - 0.8739536901230902, - -0.9540267632195762, - -0.9572768417176494, - -0.6668129559509253, - -0.3447793983778856, - 0.20067239365543937, - 0.506235236663092, - -0.23572758279105596, - -0.8892992343468379, - 0.05872573825805841, - -0.019898047025280436, - -0.9998641786868065, - 0.559296578208654, - 0.5535011178182795, - -0.6200490428876885, - -0.9914285210192629, - -0.408881756366773, - -0.9628022577175378, - -0.9916274465138012, - 0.5418277337718026, - 0.5605345848686426, - 0.2977433806930823, - -0.5504812113955575, - -0.2428029186875972, - -0.7038131838269359, - -0.7647051387199354, - 0.9959068825653523, - 0.995873518778533, - 0.8140175700884437, - -0.9880000928999717, - -0.792223330522825, - 0.9920400788541248, - -0.8841099527388958, - -0.9818635843408989, - -0.9598288303457179, - 0.9299370312179364, - 0.9441533476946159, - -0.5703141246255932, - 0.013241535203824128, - -0.8156106703772649, - -0.5511557062216882, - 0.3774044565429561, - -0.7726886319386639, - 0.13765550889539874, - 0.618422189400453, - 0.32786174108692323, - -0.9616028606885612, - 0.5188183700464549, - 0.5893238255840064, - -0.19029751542249715, - -0.905265844672735, - -0.132631638560373, - 0.9320738670350328, - -0.9674293878967767, - -0.6464278519910115, - 0.6542681947776617, - 0.9862276626675607, - -0.4582616814098595, - 0.5852973887324009, - 0.6705178743004052, - -0.04208075163657364, - 0.9333421413107421, - 0.10544166357797916, - 0.9206504610533146, - -0.9911275835919363, - -0.9898273584759455, - -0.7226055864269547, - -0.9994371213039844, - -0.9307133909148392, - 0.279595673966393, - 0.989469562101152, - -0.9994926752239522, - -0.43321856490407706, - 0.9679301378148175, - -0.953530494734507, - -0.963847300911713, - -0.28439077119019013, - -0.9976881660549298, - 0.8850638036450125, - 0.46362560694844274, - 0.4134354904394969, - -0.9994732896777814, - -0.9929842595192182, - -0.7476754358639707, - -0.9954136210561877, - -0.5454888912235925, - 0.22892674746771333, - -0.8059137256629503, - 0.6637199636361244, - -0.9952004946342513, - 0.9286656056943815, - -0.9867924934265282, - -0.06821029715629778, - 0.022546839161628977, - 0.4250982475918389, - -0.5791081650976017, - -0.07232072034807395, - 0.7756771059992074, - 0.8606778700480541, - 0.8460411449908146, - -0.2750263311187704, - -0.37949825566912865, - 0.7174032459811626, - -0.9615416119226011, - -0.546304469122644, - -0.9800140106224601, - 0.32385626672592827, - 0.9860009373392545, - -0.16626487245676771, - 0.8766037786741848, - -0.8569865083358852, - 0.5604760493469233, - 0.9782078606750939, - 0.23186758486087095, - -0.925143229151573, - 0.5305046035480039, - 0.8442054441872747, - 0.9689545754340202, - -0.9523955205124722, - 0.8960146967770525, - 0.974017255468333, - -0.3749248979935729, - 0.7400388311008103, - 0.9952380022246733, - -0.3865273153170574, - -0.5214296254121663, - -0.9826954873546125, - -0.9753258009059513, - 0.10940296001343633, - -0.4980309514357918, - -0.5926002377481596, - 0.5383032390303131, - 0.6268763266447598, - 0.6388651262851534, - -0.5162336352975141, - -0.5419531603649235, - -0.3342671693949015, - -0.3238126302604294, - 0.17266018317830767, - 0.16560350345751784, - 0.46994571570794264, - -0.15097041422888582, - -0.09261093573724614, - 0.9964573237283918, - -0.9901308988553514, - -0.9890550501668381, - -0.3669912144711988, - -0.6762317868026004, - 0.9759923291832822, - 0.489285145741057, - -0.9893353767032849, - -0.9350689112116087, - -0.5862061444273972, - -0.5643330055105212, - 0.5676679995524765, - 0.8779284992705987, - -0.22723649889160077, - 0.9800057794857826, - -0.9882774106458883, - -0.5201300027197397, - 0.3035664810262567, - 0.8401751572205258, - -0.4534576037884774, - 0.9540866663912335, - 0.6464699061385135, - -0.9890255288170483, - -0.9999131104604517, - 0.9048719888396176, - -0.42019830886718784, - 0.40355073440214306, - -0.9667875284988999, - 0.6738231380160472, - -0.9688028422487136, - 0.1896923432908883, - 0.2250399388947308, - 0.3727311726216009, - -0.9031538831781295, - 0.9134676930566625, - 0.9000532592373155, - -0.6684127946721337, - -0.7906267077230471, - -0.6884361221289026, - -0.1309548677663602, - -0.9752122208951529, - -0.46978673204584476, - -0.5066864674729419, - 0.5034561537257467, - 0.5740216183977436, - -0.8807843372228517, - 0.9211246490180885, - -0.8844148265592635, - 0.8770319884476706, - 0.3865173541081685, - 0.999168386251309, - -0.25502107399230545, - -0.9981434822402658, - -0.996041607863871, - -0.2248450604570868, - 0.5305109487296347, - -0.5411244322241605, - 0.6629586652757256, - -0.5127070270089079, - 0.9794743308941528, - -0.9255064752923954, - -0.5154069933783292, - -0.8288279950367113, - -0.8515274380045528, - -0.4371809461920555, - -0.9860939961607463, - -0.9569631223774381, - -0.9596476721540952, - -0.99972208609166, - 0.5804181549899076, - -0.9942538922984272, - -0.9935877638397855, - -0.8268819680098888, - -0.7896209961284653, - -0.8769497418032701, - -0.16440671202065463, - -0.9345116959037402, - 0.23056378947283232, - 0.233392336090964, - 0.48099080489720936, - -0.9884381899415875, - 0.40171583676750977, - 0.3471405058436117, - 0.33190406772634007, - 0.589139359479698, - -0.9586138089779948, - -0.8262216396699523, - 0.6210291764799818, - -0.13789076473945946, - -0.9994403104150834, - 0.5365662218422166, - 0.3527521464412355, - 0.3021791626165391, - -0.9869079843739202, - -0.17582111882350548, - -0.9829112434129185, - -0.06000297456058472, - -0.45980821703279834, - -0.9019951423752298, - 0.36837356861185555, - 0.9867167724451952, - -0.9995783636251167, - -0.21904835125044786, - 0.9011165972723566, - -0.48431768902143674, - -0.4311839835829074, - -0.6555716065029258, - 0.36166298382829015, - -0.5574462194901567, - -0.4723815026386883, - -0.8446856850009, - 0.6567994645714514, - -0.7796687176718227, - -0.896284033370073, - -0.6719858867795084, - -0.6013500698012303, - 0.4250491852903842, - -0.33192648760583254, - -0.8223731799636985, - -0.8235555364708117, - -0.0971042370644899, - 0.9820613852795731, - -0.998407959196826, - -0.9969573740804754, - -0.987998643171809, - 0.6247433697899323, - 0.4599617954163722, - -0.8225777790345575, - -0.8262525540103685, - 0.9927012554596057, - 0.6452955445235189, - -0.5587421846202383, - -0.20591052625630052, - -0.9981120479376627, - 0.40921256552082685, - 0.976600429147221, - -0.9859781303846927, - -0.5143294931039966, - -0.5606035799838047, - -0.7153270543109161, - -0.025109822811706022, - -0.08786824949707679, - -0.42432305239086404, - -0.7176911523643805, - 0.43896208608028153, - -0.9762359517899275, - 0.015662727578510647, - -0.5496563693668419, - 0.4891091712181144, - -0.9520768383640787, - -0.9872779335918067, - -0.9845254452515471, - 0.35911374776516347, - 0.5217439619900152, - -0.8921914258331133, - 0.5247313165709764, - -0.6671599880050127, - 0.9826321656634027, - -0.23660086531653218, - -0.996843285229643, - -0.08799552883156551, - -0.7128297596016133, - -0.9995260289536897, - -0.8683776286132218, - 0.6513362373581315, - 0.9943379689802332, - 0.37838999769070997, - -0.6232772422081311, - -0.4901143062118783, - -0.48358676480615415, - -0.9998896062674564, - 0.3500948995813668, - 0.003008908224793373, - 0.31244170799262166, - -0.587556219639496, - -0.6434304414629954, - -0.9934232438790032, - 0.3912955526348452, - -0.997980855792513, - -0.6891499230888996, - 0.21496918431078654, - 0.22756457498741253, - 0.9960108630929713, - -0.997337366136144, - 0.7457288049532897, - -0.7454727686026658, - -0.664776515492235, - 0.8788360914375909, - -0.9597910298932013, - -0.9923535921597487, - -0.954354536760633, - -0.8483416049581345, - -0.9997992704589059, - -0.8428644567305875, - -0.9984646439432301, - -0.5507817762441917, - -0.5057543838436709, - -0.9591916731417158, - 0.843963584372082, - 0.17248762970805756, - -0.983048531261517, - -0.7110730598623788, - -0.353234733748948, - 0.4066789438868625, - 0.6335260732878606, - 0.5172690931134367, - -0.8028755788485121, - -0.5335236974418304, - -0.9869714604778336, - -0.6468145799999377, - -0.9805347887754539, - 0.9986292214026841, - -0.4648824136488046, - -0.9965711681301708, - -0.44521363923434737, - 0.5720617757354227, - 0.999455652750481, - 0.9634479721084367, - -0.0525464238458064, - -0.1127340210108008, - 0.9959123289729319, - -0.6382455136657323, - -0.9403453506771051, - 0.1562869416889699, - -0.9956372037819059, - -0.8233284193593582, - -0.8237837913632639, - 0.6360338567317462, - -0.3353139029420087, - 0.9265098411938215, - 0.1203478079748191, - 0.6615955371421728, - -0.7364689257459748, - 0.9374786215541925, - -0.666715386761927, - -0.748311229998479, - 0.596035148549989, - -0.999442860752263, - -0.9219369183726909, - 0.7336959483877968, - -0.013412673624480736, - 0.6543647589389076, - 0.11160209478337843, - -0.6199929899466786, - 0.8560903665389051, - -0.9845857356192664, - -0.9529426310490815, - 0.9208913557131332, - 0.709775109374398, - 0.7065711233948972, - 0.04372783726581056, - -0.9996553924391397, - 0.723068556942644, - 0.951736971439395, - -0.9988950618332707, - -0.5324381324729128, - 0.06028566523115319, - 0.7521302952174758, - 0.6274332215441316, - -0.7715566433815789, - -0.9563645648835429, - -0.9325975364004978, - -0.19187627876781485, - 0.40848714096648453, - 0.5452891109957755, - 0.5808858179440444, - 0.3904355949932784, - -0.5495272936990633, - -0.553013384868926, - 0.9033445713108679, - 0.9420272516734303, - 0.3628550567577486, - 0.3655074589355835, - 0.6798470906824203, - -0.9082978721905037, - 0.2421414219834051, - 0.686811089148521, - -0.529980066348001, - 0.5389769716655308, - -0.970157120604344, - 0.16958873543509914, - -0.3190480478855974, - -0.9302229603832846, - -0.9992812397327047, - 0.40815822385398104, - -0.953856911970739, - 0.10376889030546817, - -0.9230993348791311, - 0.9432647712796597, - 0.9404385236061718, - 0.5562815877201988, - 0.5904809779276919, - 0.8630874047483534, - -0.9918601665335289, - 0.036945811446387054, - 0.46079595280195645, - -0.694369908896467, - 0.37047598140327465, - 0.5464791656836306, - -0.37326052186497155, - -0.4114543819340703, - 0.6080673943042861, - -0.6983858940124011, - -0.6416636207854168, - 0.998745724796541, - -0.7912728727919744, - 0.9988060043663809, - -0.7210612622118393, - -0.7340244899460417, - -0.3430508632066404, - 0.17331598163650028, - 0.4436875796997468, - 0.9688442540613895, - -0.9871693479935844, - 0.6367116727639551, - 0.637098975006629, - 0.7617565414378653, - 0.6407902901040736, - 0.315330625139537, - -0.4056090105212207, - -0.9570478998982205, - -0.6137846786087384, - -0.3063068793937506, - -0.7608124139787594, - 0.7916327697482521, - 0.0646404689887051, - -0.4202569846705832, - -0.41902111518699137, - -0.3825399389329436, - -0.36430392616358453, - 0.38010699787617414, - -0.5280222688392684, - 0.5494022937760188, - 0.19113772677448426, - -0.9924008142834101, - -0.9280339561031019, - -0.7528421965099132, - -0.8753177403935599, - -0.783228276090593, - 0.4529823357197554, - 0.9652810108379646, - 0.9012479242597485, - 0.8281116850038828, - -0.7961581731469692, - -0.13519129820068768, - 0.9891191058505273, - 0.881935056717178, - -0.993719854362911, - 0.26450253505686105, - -0.806219598217443, - 0.8751510487878972, - -0.3607266295912267, - -0.9810661480445286, - 0.2324287986483796, - -0.7346431203486812, - 0.27654100883397886, - -0.4916106251312496, - -0.9320157986375388, - -0.9813776086102097, - -0.48154493494994915, - -0.24463626559676208, - -0.5998123013581259, - 0.5376303136150482, - 0.44708325296273016, - 0.6155093686039738, - 0.5348897410377741, - 0.9907223144362793, - 0.031915942842750254, - 0.3964880646912478, - -0.3891442423160134, - 0.5079434801798302, - 0.618628348066958, - 0.48639342265476204, - 0.8010808670789424, - 0.3849937194916824, - 0.33876906892930125, - -0.999876310541108, - -0.6687392939866369, - -0.3799847202043362, - 0.28647008236113786, - 0.08363588825866751, - -0.9481332573372488, - -0.9863148010426832, - 0.09413963568439392, - -0.9980999355016797, - 0.7501640496732529, - -0.7284076333799183, - 0.9831760736756715, - 0.6165318692159051, - 0.41299350301882953, - 0.39783007718944857, - 0.9921156384495284, - 0.45600029889987637, - 0.9619790572001333, - -0.988844078055153, - -0.9300526514137724, - -0.9931350844042616, - 0.4999777286108559, - 0.8812282700801618, - -0.17316701717995356, - 0.021617986169332918, - 0.9784790304472676, - 0.5669484221730706, - -0.5938119632895109, - 0.9978590079865247, - -0.2534716931473827, - 0.5544484649843373, - 0.5226658214531761, - 0.958094184601011, - 0.8508336057974526, - -0.31425851371364166, - 0.22201324607173523, - 0.9105214179552945, - -0.2913576038219924, - -0.1549458242391797, - -0.9735077936144841, - -0.9931152290727107, - 0.20670686289789034, - 0.43710659799320845, - 0.6287549404983042, - 0.24758410479608187, - -0.6092390717718396, - -0.6792784464161313, - 0.8229030782836027, - 0.09766375524339355, - -0.7453545843021963, - -0.6385613457704465, - -0.9984230159896212, - -0.9962763872379191, - 0.0064039382216315496, - 0.9193180921983811, - 0.35058653570532533, - -0.983636370666858, - 0.6525864063439551, - 0.03283301913762097, - -0.8105938903073557, - -0.9810797585845811, - -0.6814779345784443, - -0.6195379487202582, - -0.9450548691060295, - -0.9443120283174803, - 0.1567313329086626, - 0.997554075852912, - -0.7926557120056695, - 0.9977930628227278, - -0.9987694917651866, - -0.977797236559417, - -0.979255577880272, - -0.9329766027061513, - -0.6281057316459882, - 0.8881466372824748, - 0.184033112716752, - -0.7864888698230016, - -0.7595811713539509, - -0.9561374868263202, - 0.11152718453539259, - -0.2145770297422597, - 0.9824889161761314, - 0.5126105969350331, - 0.944973913160814, - 0.8582622451473618, - 0.9970760864356468, - 0.6197017200725782, - -0.803511086494865, - -0.7732387802684031, - 0.6388908955080073, - 0.6568070186753749, - -0.8459713006174845, - 0.751640076595305, - 0.7308560454911576, - 0.47222096102972466, - -0.5712481230386399, - 0.9998614146740736, - -0.999727070775885, - 0.9913257940303344, - -0.9996555264576602, - 0.6023032865823373, - -0.7127604301080076, - -0.9429646050088624, - -0.8282790611270434, - 0.39434906955589444, - -0.9339997136649735, - 0.9962165976240256, - -0.022472778746532883, - 0.6829257747622997, - 0.20100036674888017, - 0.41993248328425076, - 0.9984355759155434, - -0.8322741113223626, - -0.49556356686176223, - 0.5319403168841517, - -0.9969466827646306, - -0.7986008495960195, - -0.9179021397159254, - -0.8699588810147737, - 0.7882678918984691, - -0.9943956588854921, - 0.22272822739378093, - 0.004857837427859308, - -0.8001749254478624, - 0.4147114565778754, - -0.450790901408806, - -0.9053259700189155, - -0.9044021436958498, - -0.8539025059390047, - -0.7514483799127539, - 0.0730357439529666, - -0.7589818494383436, - 0.9966105741981409, - -0.23114119837642066, - 0.9000819191968155, - 0.7313353847423749, - -0.8693337691622607, - 0.4672446069799521, - -0.6185063182919639, - -0.9704770857273303, - 0.2815985138818039, - 0.2933006701067045, - -0.9159430277159587, - 0.5535194678730364, - -0.7517753944066009, - 0.9819634854977342, - -0.6415212108313677, - -0.9150710296156299, - 0.34074793713012586, - -0.27291401502847334, - 0.19232533403607308, - 0.5506331520069355, - -0.47847167132458945, - 0.9229611155808937, - 0.7803767096814201, - -0.26292546634712993, - -0.5977562356365329, - -0.9421861172502805, - 0.4213665987342895, - 0.978361740668675, - 0.525360182767002, - 0.5329728209024605, - -0.5854051129654866, - -0.5811501137524555, - 0.8037693638410917, - 0.8109917247082306, - -0.38517590378677974, - -0.7798881057804334, - -0.9945481424433199, - 0.4355312774005718, - 0.784087655997144, - -0.818935659187414, - 0.6085416450344057, - 0.24147886313905614, - -0.9996722850187226, - -0.9782617986444876, - 0.9996928837259895, - -0.9717625569203752, - -0.9968997523771388, - -0.5568828939265957, - -0.8166271262336697, - 0.3261071853081688, - -0.9787913975760275, - -0.996197690259654, - -0.9486424754437589, - -0.545491358246041, - -0.2832923725075782, - -0.8599476688332652, - -0.7616070494547275, - 0.05568351132141832, - -0.6100271922700925, - 0.9946836315462484, - 0.28329068071375935, - 0.9373244954258041, - -0.5627336633810146, - 0.9165087102784665, - -0.7243918239245849, - 0.9892094896450058, - 0.6296067454371772, - -0.3706737853583772, - 0.854683912002329, - -0.9993509576033905, - 0.6990004307416587, - -0.3387450265715322, - -0.9858429788931943, - 0.5518255610280435, - -0.6276124855433108, - 0.12390956162538325, - 0.8383365623486853, - 0.9997312689616408, - 0.7560130740882973, - -0.034628390231123365, - 0.7265971731780508, - 0.7304598746692298, - 0.5650172056961607, - 0.866457977409469, - -0.7283127008882869, - -0.568893467278827, - 0.9864263927031944, - -0.9944431833269356, - 0.2629018784411002, - 0.9278155302965272, - 0.9239970410552293, - 0.9366934628769444, - 0.5991580610526216, - 0.4382122016432011, - 0.4345431958088624, - -0.8094232257332367, - -0.20513369452267954, - -0.5052805261724389, - 0.049703174537138996, - -0.5078994149109302, - 0.04684177366128499, - 0.515754019888817, - 0.11978271520754744, - -0.992069045271911, - -0.6901815397358562, - 0.48746703081339876, - -0.5769100808254594, - 0.29351852532691675, - 0.2805451151373655, - -0.08354605917482874, - -0.4750426864912564, - -0.1409279042320007, - -0.9964766265613245, - -0.45530524569150466, - -0.6226203981733286, - 0.20623718185813056, - -0.6187132192013652, - 0.9966815886506832, - 0.11604149413515165, - -0.09871986400424122, - 0.7217303519255711, - -0.9623495384875334, - 0.6328403759593395, - 0.8246906854832384, - 0.27162872006074423, - -0.9877507929126238, - -0.7435325897249961, - -0.400995314776881, - -0.5148267647746874, - -0.9129503904725041, - 0.45429453630334865, - -0.9988766062983884, - -0.9511676045343583, - 0.9105328717601825, - -0.9941622035343401, - 0.9846573051188015, - -0.04940961619341525, - -0.03311817536723519, - 0.2592044060018894, - -0.2881787110467454, - 0.4771199075444361, - -0.6536253459079646, - 0.7339130370548832, - -0.6814559906587296, - 0.17502322948126015, - -0.9982427033362817, - 0.8843579677275162, - -0.6799543016952094, - -0.35838081774580693, - 0.812580053191133, - 0.12169519585500703, - -0.7500719263255996, - 0.8837500007985348, - -0.9854073776220543, - -0.985007072003706, - -0.9367703486629848, - -0.7272497908084452, - -0.45586419989195354, - -0.2944742877017532, - -0.10704457469940869, - -0.9028983609801499, - -0.49468211350953123, - -0.7046297605514473, - 0.4667633921543035, - 0.06620106473495828, - 0.9326332536616682, - -0.45258605025765997, - -0.9183641468186511, - -0.9972545900194653, - 0.3876503101973203, - -0.6631444614748275, - -0.6808857272354875, - -0.9759111963319108, - -0.8253086978435206, - -0.9299552591867193, - 0.22469265000216063, - 0.9877132139884377, - -0.996225994899041, - -0.9891901485126783, - -0.8293074433328781, - -0.7751035624872932, - -0.8810191666043795, - 0.561800379782143, - -0.854159861818933, - -0.9338016570559337, - -0.9608290587822613, - -0.1113432751777024, - -0.8808818629431876, - -0.8190403223582398, - -0.0959757492962997, - 0.09157026319420147, - 0.915157073606654, - 0.2573931982419754, - -0.8170517630109226, - -0.9734881154135133, - -0.8301610103005469, - -0.9598734086854936, - -0.9708887094268003, - -0.99321106676629, - 0.5598040589542902, - 0.9897559096826002, - -0.6967361630446481, - 0.5007881961877613, - -0.9998860049888458, - -0.41630586126095104, - -0.6640585381644964, - 0.5343313117742323, - -0.9301640603512273, - -0.958950757793, - 0.9624025282383868, - 0.14322995769911853, - 0.9922980849812842, - -0.07926626991184363, - -0.16866309719031747, - 0.9553517594663148, - -0.999316534699408, - -0.021227981764894436, - -0.649251708548719, - -0.001212615771715969, - -0.9996974815393522, - 0.8294500200116838, - -0.9892254148424463, - -0.10002850530725281, - -0.9444549178799838, - -0.5783934958930858, - 0.06659176532000805, - 0.20908437764671495, - -0.931411477207755, - -0.6772319693529333, - -0.24444436379698084, - -0.9163097675883054, - 0.9013218689416806, - -0.9275112879207282, - -0.7002244765766121, - 0.14440720354803113, - -0.23654228754458817, - -0.9954468367125359, - -0.9573638325760708, - -0.9021604257902887, - -0.9975775129240897, - -0.9259813193270761, - -0.9924810180356375, - 0.32016660474572917, - 0.6089230979398146, - -0.7442082896796898, - -0.8247654440213182, - -0.7692155503410497, - -0.7358927528851745, - -0.6840016827155605, - -0.454512120540666, - 0.12003316907679178, - -0.4013965581095551, - -0.8170065882150721, - 0.33330590121110604, - -0.9182123952533383, - 0.36460391445757245, - -0.5281373062790289, - 0.9846033752463714, - 0.3998293814518115, - 0.5768582813732306, - 0.5166488635245182, - -0.36489977760649883, - -0.7203341814560504, - 0.14871038079848062, - -0.5085179864950512, - -0.8081255583985809, - -0.1891210297758114, - -0.7532981413247416, - 0.9978460097180584, - -0.7813133342953449, - -0.9685867434374072, - -0.9497715411942806, - -0.7313570241171738, - -0.781649426735175, - 0.9383772628316668, - 0.3811015916159905, - -0.20124268414380425, - -0.8791548107337299, - 0.9651263114668018, - 0.41388046174656656, - -0.8736204736834848, - -0.9940343926835679, - -0.9318114457150964, - -0.703403525647805, - 0.831746950627428, - -0.46721413919595606, - 0.3282199067214412, - -0.47709488619253765, - -0.6707931040793855, - 0.06381788872014356, - -0.24739631357530675, - -0.11193547343601447, - -0.8802572981277916, - 0.10665294777586286, - 0.924908311383364, - -0.988836211497274, - -0.8883421634110616, - 0.2541014526564268, - 0.9470047686680184, - -0.15507231752999176, - -0.9978467416592631, - -0.9945025913013982, - -0.9822463112505332, - -0.6578226505010839, - -0.9720016253195458, - 0.32481198463837163, - -0.888954375773797, - -0.9333187870393623, - -0.8278652773164729, - -0.4298589578129376, - -0.9964700308074317, - -0.9826341095700896, - -0.8622766318297252, - -0.9681160643680236, - -0.7502913102557657, - 0.9444720190405922, - -0.6174141840003936, - 0.9287567965028735, - -0.7189821314797709, - -0.7190478833241414, - 0.9640385951205631, - -0.7142461248780808, - -0.4394050045705942, - -0.9486442160682742, - -0.8790518333016213, - -0.8006132889472164, - 0.9971607737090937 - ] - }, - { - "marker": { - "color": "rgb(200, 100, 200)" - }, - "mode": "markers+text", - "text": [ - "mammal.n.01", - "placental.n.01", - "ungulate.n.01", - "carnivore.n.01", - "rodent.n.01", - "canine.n.02", - "even-toed_ungulate.n.01", - "odd-toed_ungulate.n.01", - "elephant.n.01", - "rhinoceros.n.01", - "german_shepherd.n.01", - "feline.n.01", - "tiger.n.02", - "homo_sapiens.n.01" - ], - "textposition": "bottom", - "type": "scatter", - "x": [ - -0.05010500674502724, - 0.11451627274425251, - -0.756037492343237, - 0.9372625138073847, - -0.658548383207663, - 0.9188692857569626, - -0.9040980095816089, - -0.17267991240321653, - 0.11165685971397364, - 0.19179824692125683, - 0.8152021551925026, - 0.4227710646614852, - 0.49875044878193364, - -0.14298519566678491 - ], - "y": [ - -0.1032154295293315, - -0.054762350091481775, - 0.5896586298883478, - -0.1663959934735289, - -0.7432746646633447, - -0.3546995178707962, - 0.4017775071927024, - 0.9769155725982757, - -0.9935877638397855, - 0.9784790304472676, - -0.5791081650976017, - 0.9017731736266421, - 0.866457977409469, - -0.9890550501668381 - ] - } - ], - "layout": { - "height": 800, - "hovermode": "closest", - "showlegend": false, - "title": "\n2-D Visualization of model trained on mammals subtree
\n200 epochs, model is closer to convergence", - "width": 800 - } - }, - "text/html": [ - "
" - ], - "text/vnd.plotly.v1+html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "model = PoincareModel.load(os.path.join(models_directory, 'gensim_mammals_epochs_200_dim_2'))\n", - "figure_title = \"\"\"\n", - "2-D Visualization of model trained on mammals subtree
\n", - "200 epochs, model is closer to convergence\"\"\"\n", - "iplot(poincare_2d_visualization(model, tree, figure_title, show_node_labels=show_node_labels))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is slightly different from the representation shown in the paper. Some key differences are - \n", - "1. Some of the nodes fairly high in the hierarchy (carnivore, canine, odd-toed ungulate) are much closer to the boundary than in the paper. As a result, it is likely that distances from them to certain positive nodes will be higher than they should be.\n", - "2. Some nodes very close to the boundary have an edge with a node which is also very close to the boundary, but on the other side of the disk. This is certainly an incorrect placement, as the distance between these two nodes is going be much higher.\n", - "\n", - "Note that the actual distance between two nodes is not the same as the \"naked-eye distance\" seen in the above representation. The actual distance is the Poincaré distance, whereas the \"naked-eye distance\" is the Euclidean distance.\n", - "\n", - "To get a better sense of Poincaré distance, a visualization is presented below." - ] - }, - { - "cell_type": "code", - "execution_count": 41, - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "data": [ - { - "marker": { - "color": [ - 7.140956639559867, - 5.936527629641392, - 5.449964500555572, - 5.157886659013344, - 4.960443770623403, - 4.820682578168151, - 4.721070602881184, - 4.652180583089688, - 4.608667030835196, - 4.587573855895887, - 4.58757386106396, - 4.608667046656536, - 4.652180610584842, - 4.7210706440155175, - 4.8206826363984625, - 4.960443852127046, - 5.157886775775228, - 5.449964679934476, - 5.936527958167716, - 7.14095785502446, - 6.723979765587077, - 5.5515046016534635, - 5.0544233193020895, - 4.745089491653391, - 4.526739420273301, - 4.362948960205523, - 4.2360776763275485, - 4.136293726117703, - 4.057613613930194, - 3.9961845732499466, - 3.9494429152923316, - 3.91566549050163, - 3.893717415299307, - 3.882907296743962, - 3.8829072994062264, - 3.8937174233658243, - 3.915665504220114, - 3.949442935105984, - 3.9961845998507117, - 4.057613648352188, - 4.136293769900413, - 4.236077731811712, - 4.362949031106478, - 4.526739512906231, - 4.745089617949909, - 5.054423506042497, - 5.551504932022436, - 6.723980905766376, - 6.430174065217483, - 5.314443583785905, - 4.820682526407877, - 4.507224065126782, - 4.281889201111636, - 4.1094192113248225, - 3.9725610266909834, - 3.861603690710847, - 3.7705637837654664, - 3.6955178367024692, - 3.6337781254395676, - 3.583447587104976, - 3.5431630934164446, - 3.5119399701080822, - 3.489074646889534, - 3.474082748935588, - 3.4666601704565716, - 3.466660172287692, - 3.4740827544648405, - 3.489074656227166, - 3.511939983446773, - 3.543163111046198, - 3.583447609437329, - 3.6337781530456694, - 3.695517870373167, - 3.7705638246085247, - 3.8616037403146555, - 3.972561087416055, - 4.109419286862917, - 4.281889297671375, - 4.507224194328558, - 4.820682714038896, - 5.3144439083246775, - 6.430175105706745, - 5.551504548794438, - 4.874335700725183, - 4.48806619371081, - 4.221236680552459, - 4.020337085127043, - 3.8616036828786666, - 3.7324035563872093, - 3.6252309207362226, - 3.5352761002389737, - 3.4592855783622163, - 3.3949690947952647, - 3.34066650930121, - 3.2951491580423515, - 3.2574957854564697, - 3.227012236992766, - 3.203178118792255, - 3.1856108403011962, - 3.174041378481284, - 3.16829835150282, - 3.1682983529208153, - 3.1740413827557306, - 3.185610847494581, - 3.203178129012545, - 3.227012250399624, - 3.2574958022709692, - 3.2951491785615303, - 3.340666533919571, - 3.394969124036842, - 3.4592856129293503, - 3.535276141088791, - 3.6252309692054996, - 3.7324036144069694, - 3.861603753368288, - 4.0203371727834085, - 4.221236793627603, - 4.488066348759137, - 4.874335939257506, - 5.551505037740515, - 7.140956127785746, - 5.272997889049563, - 4.674639777502839, - 4.313570291638081, - 4.057613585766742, - 3.861603677657214, - 3.704624677815707, - 3.5752744870680777, - 3.4666601503142456, - 3.3743056927379413, - 3.2951491517287574, - 3.2270122295445116, - 3.1682983401588536, - 3.1178104880942676, - 3.0746362616241445, - 3.0380724817143254, - 3.007574367577088, - 2.982720473065285, - 2.9631881449193194, - 2.9487362562443544, - 2.9391931646314666, - 2.93444858954733, - 2.9344485907194064, - 2.93919316816095, - 2.9487362621715905, - 2.963188153313549, - 2.9827204840278565, - 3.0075743812463527, - 3.038072498272764, - 3.0746362813085093, - 3.1178105112099925, - 3.1682983671007743, - 3.227012260827178, - 3.2951491880319206, - 3.37430573497709, - 3.466660199754501, - 3.5752745455176247, - 3.704624747975955, - 3.861603763811192, - 4.057613695291277, - 4.313570438894145, - 4.674639996651257, - 5.272998301194447, - 7.140958878574692, - 7.439855431034525, - 5.2331693819704315, - 4.608666951728497, - 4.236077643037052, - 3.972561009340966, - 3.770563766947739, - 3.608330094550512, - 3.47408272681857, - 3.3607325874756055, - 3.263688150828074, - 3.1798120948032382, - 3.1068721771868364, - 3.0432296381835173, - 2.9876516774901853, - 2.9391931563960045, - 2.897119052102194, - 2.8608520034745464, - 2.829935911860051, - 2.804010169970582, - 2.782791148726728, - 2.766058791276322, - 2.7536469126478864, - 2.745436280133316, - 2.7413498640151603, - 2.7413498650250014, - 2.7454362831721353, - 2.753646917743925, - 2.7660587984778418, - 2.782791158103896, - 2.8040101816183216, - 2.8299359259020886, - 2.860852020069041, - 2.897119071449498, - 2.9391931787494037, - 2.987651703170942, - 3.043229667602296, - 3.1068722108749354, - 3.179812133459371, - 3.2636881953909485, - 3.36073263924129, - 3.4740827876403664, - 3.6083301672021926, - 3.7705638558414525, - 3.9725611221160997, - 4.236077794693764, - 4.608667178501068, - 5.233169817023579, - 7.439859481844975, - 5.40275872972405, - 4.652180500604229, - 4.236077639338105, - 3.949442878495551, - 3.732403544783259, - 3.5591043652237198, - 3.4160098485355617, - 3.2951491454151642, - 3.191437863544219, - 3.1014398155794414, - 3.022729287026298, - 2.9535350800016844, - 2.8925290317306582, - 2.8386939395335244, - 2.791237649298063, - 2.749535258446049, - 2.7130891284424434, - 2.681500569715847, - 2.6544494110466488, - 2.6316790435198647, - 2.612985366437257, - 2.5982085877722065, - 2.58722717119579, - 2.579953447800392, - 2.576330566315728, - 2.576330567211246, - 2.5799534504938264, - 2.587227175708017, - 2.598208594138791, - 2.612985374709676, - 2.6316790537673205, - 2.654449423358629, - 2.6815005842055952, - 2.713089145251662, - 2.7495352777512254, - 2.7912376713190796, - 2.838693964545468, - 2.892529060080346, - 2.953535112131219, - 3.0227293235075514, - 3.1014398571660626, - 3.1914379112529985, - 3.2951492006591083, - 3.4160099133537796, - 3.5591044427069516, - 3.732403639935664, - 3.949443000207986, - 4.236077805790599, - 4.652180759058688, - 5.40275928914026, - 5.936527417065593, - 4.820682487587668, - 4.3135702796984, - 3.984308156501389, - 3.74182051500112, - 3.551105547618369, - 3.3949690810345237, - 3.2636881462181195, - 3.151232532916275, - 3.0536093393852473, - 2.968042684300721, - 2.8925290294626844, - 2.82557895045671, - 2.766058783046013, - 2.7130891254761105, - 2.6659773609259836, - 2.624171403640906, - 2.5872271657811186, - 2.5547851736811853, - 2.5265534555227007, - 2.502294836832244, - 2.4818174078217883, - 2.4649673263165166, - 2.451623381547492, - 2.4416929197223483, - 2.4351088534702843, - 2.4318275634702347, - 2.4318275642814733, - 2.435108855909291, - 2.4416929238051557, - 2.4516233873013604, - 2.4649673337807743, - 2.4818174170490797, - 2.5022948478902562, - 2.526553468496495, - 2.554785188676282, - 2.58722718292758, - 2.6241714230987596, - 2.6659773828924767, - 2.7130891501955494, - 2.7660588108233046, - 2.8255789816763945, - 2.8925290646162956, - 2.968042724027248, - 3.053609384532967, - 3.1512325846410603, - 3.2636882061475037, - 3.394969151558327, - 3.551105632444466, - 3.7418206203313122, - 3.9843082938960444, - 4.313570474713199, - 4.820682817559466, - 5.936528441294873, - 5.194835337803245, - 4.488066170218634, - 4.083203361235516, - 3.8000780785844457, - 3.5834475627424025, - 3.408953401641005, - 3.263688144681468, - 3.1399885560420793, - 3.03293682689645, - 2.9391931493370356, - 2.856389838649075, - 2.782791139349558, - 2.7170901227243087, - 2.6582813088954484, - 2.6055774847826525, - 2.558353519408485, - 2.5161073172171813, - 2.4784320158283295, - 2.4449957771752175, - 2.415526839646475, - 2.3898023011707203, - 2.367639606287306, - 2.348890034380582, - 2.333433700333891, - 2.321175723609877, - 2.312043321944562, - 2.3059836569158394, - 2.30296231053544, - 2.302962311282527, - 2.305983659161282, - 2.31204332570102, - 2.3211757288988446, - 2.333433707186309, - 2.3488900428377404, - 2.367639616402084, - 2.3898023130092394, - 2.4155268532902583, - 2.4449957927240042, - 2.4784320334037493, - 2.516107336967566, - 2.5583535415152436, - 2.6055775094688194, - 2.658281336437327, - 2.7170901534676495, - 2.7827911737325106, - 2.8563898772356446, - 2.9391931928673376, - 3.0329368763650546, - 3.13998861282553, - 3.2636882107574565, - 3.4089534799913883, - 3.583447658162469, - 3.8000781995138624, - 4.083203524681575, - 4.488066419235653, - 5.194835849963137, - 6.2030407991936825, - 4.820682481117631, - 4.2663974872765005, - 3.915665446602488, - 3.6598197053912016, - 3.459285561988312, - 3.29514914067997, - 3.1568942034697773, - 3.0380724689770626, - 2.934448571966174, - 2.8430952484017276, - 2.761908567258202, - 2.6893289655194645, - 2.6241713999346485, - 2.565517097118592, - 2.5126419023608753, - 2.464967320510983, - 2.422026144431672, - 2.3834377578104973, - 2.348890031305252, - 2.3181258226042063, - 2.2909327627834406, - 2.267135436822376, - 2.2465893426310117, - 2.229176196872615, - 2.2148002809134213, - 2.203385607043752, - 2.194873746671013, - 2.189222206842697, - 2.186403274738974, - 2.1864032754360982, - 2.1892222089374416, - 2.1948737501735742, - 2.2033856119714295, - 2.214800287291079, - 2.229176204733366, - 2.2465893520171494, - 2.2671354477866013, - 2.290932775390452, - 2.318125836932748, - 2.348890047450736, - 2.3834377758883956, - 2.422026164581919, - 2.464967342903756, - 2.5126419272042844, - 2.5655171246690744, - 2.6241714305112755, - 2.6893289995240535, - 2.761908605204321, - 2.8430952909577396, - 2.9344486200213327, - 3.03807252374729, - 3.156894266675555, - 3.2951492148646944, - 3.45928565113513, - 3.6598198162516495, - 3.9156655920184003, - 4.2663976966217065, - 4.820682849909651, - 6.20304228392045, - 5.551504482720661, - 4.587573757702507, - 4.109419181766441, - 3.7901516004511846, - 3.5511055436729677, - 3.360732579126303, - 3.203178098351676, - 3.069345538428677, - 2.953535074051771, - 2.8519430761705835, - 2.7619085662326297, - 2.6815005619879813, - 2.6092765154901945, - 2.5441331970656926, - 2.4852105706687553, - 2.431827553735373, - 2.3834377562385054, - 2.3395981788649847, - 2.2999465714307505, - 2.2641847320221236, - 2.232065977258844, - 2.203385603523983, - 2.1779735350456226, - 2.155688600631192, - 2.1364140453274407, - 2.1200539955753515, - 2.1065306746031354, - 2.095782220255484, - 2.087760997560526, - 2.0824323279563615, - 2.0797735795330117, - 2.0797735801905937, - 2.08243232993186, - 2.087761000862273, - 2.0957822248976017, - 2.1065306806059083, - 2.120054002965757, - 2.136414054139883, - 2.1556886109084465, - 2.1779735468400574, - 2.203385616899107, - 2.2320659922912762, - 2.2641847488040887, - 2.299946590073282, - 2.3395981995020465, - 2.383437779032377, - 2.4318275788837656, - 2.485210598414374, - 2.5441332277093074, - 2.6092765494089014, - 2.6815005996613284, - 2.761908608281033, - 2.851943123413747, - 2.953535127600994, - 3.06934559983981, - 3.203178169893706, - 3.360732664289202, - 3.5511056482260654, - 3.7901517349662845, - 4.109419368969551, - 4.5875740626188115, - 5.551505288821035, - 5.233169352966876, - 4.432609366552317, - 3.9961845289153306, - 3.6955178097659087, - 3.4666601374964006, - 3.282463345480315, - 3.1288485797500827, - 2.9975730778689655, - 2.8833982119270414, - 2.782791136223835, - 2.6932601437427843, - 2.6129853563265235, - 2.540600041197718, - 2.4750543562264147, - 2.4155268348310224, - 2.3613648419679105, - 2.312043314431647, - 2.267135433167634, - 2.2262913106670807, - 2.1892222005584645, - 2.15568859857574, - 2.125491142086996, - 2.098463560323539, - 2.074467154044517, - 2.0533864355087204, - 2.035125663829656, - 2.0196060834942706, - 2.0067637254435384, - 1.9965476673873646, - 1.988918677415203, - 1.9838481854790624, - 1.9813175430510304, - 1.9813175436769863, - 1.9838481873592, - 1.9889186805563865, - 1.9965476718012325, - 2.006763731146798, - 2.0196060905091366, - 2.0351256721844377, - 2.053386445238582, - 2.0744671651924427, - 2.0984635729415553, - 2.1254911562376946, - 2.1556886143341973, - 2.1892222180146645, - 2.2262913299289866, - 2.2671354543651354, - 2.312043337721686, - 2.3613648675412247, - 2.4155268629211637, - 2.475054387122031, - 2.540600075259625, - 2.6129853940119854, - 2.693260185641035, - 2.7827911831096803, - 2.8833982648448773, - 2.997573138270573, - 3.1288486497335737, - 3.282463428234678, - 3.4666602382080365, - 3.6955179377145626, - 3.9961847032981406, - 4.432609638387573, - 5.23316996204133, - 5.054423238110611, - 4.329774355132485, - 3.9156654438587934, - 3.625230901769984, - 3.4019399982175966, - 3.2210086592017664, - 3.0693455371220564, - 2.9391931458075518, - 2.8255789450740063, - 2.725128009634416, - 2.635448140611164, - 2.554785166624669, - 2.4818173994333423, - 2.4155268340284475, - 2.3551150782115893, - 2.299946569193647, - 2.249509087506016, - 2.203385600708167, - 2.1612337413655274, - 2.1227705584189756, - 2.0877609922777314, - 2.0560090320387423, - 2.0273508400365374, - 2.001649344209144, - 1.9787899436739464, - 1.958677072379201, - 1.9412314352183813, - 1.9263877803988525, - 1.9140931075176206, - 1.9043052369291162, - 1.896991685434909, - 1.89212880803987, - 1.8897011768847054, - 1.8897011774852317, - 1.8921288098433249, - 1.8969916884469726, - 1.9043052411594155, - 1.914093112979987, - 1.9263877871116835, - 1.9412314432051292, - 1.9586770816690031, - 1.9787899543024121, - 2.0016493562193474, - 2.027350853480242, - 2.0560090469779224, - 2.0877610087864658, - 2.1227705765858267, - 2.1612337612965478, - 2.203385622530737, - 2.249509111373821, - 2.2999465952931906, - 2.355115106770901, - 2.415526865328891, - 2.4818174338259715, - 2.554785204553444, - 2.6354481826467477, - 2.7251280565249956, - 2.825578997824508, - 2.9391932058087815, - 3.0693456063729094, - 3.2210087407185943, - 3.4019400968582003, - 3.6252310261042195, - 3.9156656112242794, - 4.329774609743998, - 5.054423765855305, - 4.9604436594820775, - 4.266397483470225, - 3.8616036619928535, - 3.5752744729595687, - 3.3540052341470767, - 3.1740413542594217, - 3.022729279478452, - 2.892529023792747, - 2.7785881180030563, - 2.677603177050414, - 2.5872271585615563, - 2.5057357083578577, - 2.431827551301658, - 2.3644990774704056, - 2.302962300076219, - 2.2465893368549272, - 2.194873738965377, - 2.1474028736557367, - 2.1038377653717797, - 2.0638980942100154, - 2.0273508387561843, - 1.994001544804679, - 1.9636875199845545, - 1.9362724644486884, - 1.9116421894134197, - 1.88970117268102, - 1.8703697683903628, - 1.85358193668654, - 1.8392833939780424, - 1.827430110055492, - 1.8179870973340901, - 1.810927451742663, - 1.8062316156395954, - 1.8038868415425893, - 1.8038868421226633, - 1.8062316173813655, - 1.8109274546508194, - 1.8179871014165925, - 1.8274301153237866, - 1.8392834004473781, - 1.8535819443763848, - 1.8703697773249388, - 1.889701182889969, - 1.91164220093263, - 1.9362724773213091, - 1.9636875342622329, - 1.9940015605490962, - 2.0273508560409477, - 2.0638981131230234, - 2.1038377860182, - 2.147402896161808, - 2.1948737634833075, - 2.2465893635693184, - 2.3029623292126207, - 2.364499109306903, - 2.431827586184913, - 2.50573574672582, - 2.5872272009764865, - 2.6776032242484225, - 2.778588170971154, - 2.892529083894084, - 3.0227293486670375, - 3.1740414354739026, - 3.354005332098566, - 3.5752745959051695, - 3.861603826468639, - 4.266397730878192, - 4.960444155913409, - 4.930933807437043, - 4.236077628241274, - 3.8304083909480333, - 3.5431630640335214, - 3.320941080301498, - 3.1399885518871935, - 2.987651666484148, - 2.8563898342391827, - 2.7413498468478688, - 2.639227533332824, - 2.5476750629080165, - 2.4649673163641728, - 2.38980229406761, - 2.321175714543077, - 2.258298981706513, - 2.200543673063431, - 2.1474028729737342, - 2.0984635570030084, - 2.0533864316167754, - 2.011890927583288, - 1.9737438335097461, - 1.938750550344521, - 1.9067482661881652, - 1.877600560893244, - 1.8511930915950288, - 1.8274301077140274, - 1.8062316121560542, - 1.7875310339629622, - 1.7712733127261282, - 1.75741332074569, - 1.745914567938315, - 1.7367481487330854, - 1.7298919009488336, - 1.7253297548428241, - 1.7230512568391514, - 1.7230512574028685, - 1.7253297565352437, - 1.7298919037737988, - 1.736748152697128, - 1.7459145730508512, - 1.7574133270192975, - 1.771273320176915, - 1.7875310426110322, - 1.8062316220260866, - 1.8274301188359832, - 1.8511931040050094, - 1.8776005746345357, - 1.9067482813125078, - 1.9387505669136602, - 1.9737438515973464, - 2.01189094727731, - 2.0533864530224717, - 2.0984635802467224, - 2.147402898207814, - 2.200543700472655, - 2.2582990115166424, - 2.3211757470324472, - 2.389802329583167, - 2.4649673553441853, - 2.5476751059150904, - 2.6392275811034396, - 2.741349900369424, - 2.856389894875219, - 2.987651736189056, - 3.1399886335999647, - 3.3209411787334835, - 3.543163187441797, - 3.830408555867848, - 4.236077876070547, - 4.930934304236292, - 4.9604436594820775, - 4.236077628241274, - 3.8202046847770945, - 3.527443767151278, - 3.3015439466119227, - 3.117810473137038, - 2.9631881269316835, - 2.8299358988981718, - 2.7130891185546684, - 2.609276512740028, - 2.5161073112061954, - 2.431827550490419, - 2.3551150766678424, - 2.2849510645605924, - 2.2205361435639084, - 2.161233739303698, - 2.1065306679333893, - 2.056009029440625, - 2.009325711616506, - 1.96619714724701, - 1.926387776127051, - 1.8897011702789148, - 1.855973106791671, - 1.8250660875472633, - 1.7968649498007767, - 1.771273311006716, - 1.7482106608672, - 1.727609963111188, - 1.7094156653243313, - 1.6935820413984373, - 1.6800718106386772, - 1.6688549921427398, - 1.659907964051467, - 1.653212705582179, - 1.648756206057488, - 1.6465300299314354, - 1.646530030482244, - 1.6487562077109352, - 1.6532127083413606, - 1.6599079679216615, - 1.6688549971315851, - 1.6800718167564246, - 1.6935820486582844, - 1.7094156737428388, - 1.7276099727087968, - 1.7482106716688521, - 1.7712733230426028, - 1.7968649631072358, - 1.8250661021678594, - 1.8559731227784977, - 1.8897011876941803, - 1.9263877950450292, - 1.9661971677564585, - 2.0093257338236987, - 2.0560090534732174, - 2.1065306939454014, - 2.161233767482037, - 2.2205361741370613, - 2.284951097810413, - 2.355115112945888, - 2.4318275902411064, - 2.516107355000527, - 2.6092765613262867, - 2.713089172937435, - 2.829935960467103, - 2.9631881976830545, - 3.1178105560816958, - 3.301544046596044, - 3.527443892718232, - 3.820204853193917, - 4.236077883468435, - 4.960444185551121, - 5.054423238110611, - 4.266397483470225, - 3.8304083909480333, - 3.527443767151278, - 3.2951491375231736, - 3.106872166406646, - 2.948736237277203, - 2.812594928467061, - 2.693260141794029, - 2.58722715765911, - 2.4920204420696477, - 2.4058295010047783, - 2.3272929592602587, - 2.255363880459834, - 2.189222197067225, - 2.128215756586937, - 2.071819440030235, - 2.019606077754835, - 1.9712252888590818, - 1.9263877755167933, - 1.8848534549284681, - 1.846422343194067, - 1.8109274465079814, - 1.7782291393097005, - 1.7482106597301836, - 1.7207744560476717, - 1.6958391901285463, - 1.6733372552422543, - 1.6532127028229973, - 1.6354195000451224, - 1.619920060371806, - 1.6066840044751758, - 1.5956871204414118, - 1.5869105008909328, - 1.5803398412181293, - 1.5759648880697517, - 1.5737790308080468, - 1.5737790313489144, - 1.5759648896931493, - 1.5803398439264786, - 1.5869105046883796, - 1.5956871253339946, - 1.6066840104710627, - 1.6199200674816052, - 1.6354195082822665, - 1.6532127122042148, - 1.67333726578813, - 1.6958392018641886, - 1.720774469003504, - 1.7482106739428842, - 1.7782291548233196, - 1.81092746337529, - 1.846422361478189, - 1.884853474704879, - 1.9263877968758019, - 1.971225311908945, - 2.0196061026257244, - 2.0718194668793544, - 2.128215785605242, - 2.189222228488385, - 2.255363914572416, - 2.327292996424649, - 2.405829541677239, - 2.492020486837463, - 2.5872272072936044, - 2.6932601973335695, - 2.812594991353042, - 2.9487363095894734, - 3.106872251300654, - 3.2951492401190685, - 3.527443896581832, - 3.8304085660167635, - 4.266397753715859, - 5.054423830808528, - 5.233169352966876, - 4.329774355132485, - 3.8616036619928535, - 3.5431630640335214, - 3.3015439466119227, - 3.106872166406646, - 2.9439556482583327, - 2.804010156205073, - 2.681500559090032, - 2.5727169070605775, - 2.4750543537213643, - 2.3866167510430327, - 2.3059836456886265, - 2.2320659722480336, - 2.1640127763382586, - 2.1011487327904854, - 2.0429310049467384, - 1.9889186698763603, - 1.9387505485035057, - 1.8921288008260466, - 1.8488065633419373, - 1.8085784758744534, - 1.7712733092873039, - 1.7367481442027515, - 1.7048837106932262, - 1.6755806082572144, - 1.648756201648296, - 1.624342042300958, - 1.6022817042616941, - 1.5825289523134312, - 1.5650461814403984, - 1.549803082973383, - 1.5367755050717882, - 1.5259444845888457, - 1.5172954344887217, - 1.5108174763086006, - 1.506502911035838, - 1.5043468244807434, - 1.5043468250142775, - 1.5065029126370262, - 1.5108174789792355, - 1.517295438231898, - 1.5259444894091225, - 1.5367755109754198, - 1.5498030899686124, - 1.5650461895378218, - 1.5825289615264422, - 1.6022817146069994, - 1.6243420537991902, - 1.6487562143247232, - 1.6755806221425797, - 1.7048837258247296, - 1.7367481606252133, - 1.7712733270545646, - 1.8085784950510613, - 1.8488065840052157, - 1.892128823068666, - 1.9387505724367071, - 1.9889186956340716, - 2.0429310326909036, - 2.101148762718068, - 2.164012808690617, - 2.232066007323708, - 2.3059836838611525, - 2.3866167927863837, - 2.4750543996472825, - 2.572716957975182, - 2.681500616083043, - 2.8040102207970814, - 2.9439557226582584, - 3.106872253995701, - 3.3015440529442435, - 3.5431631991949657, - 3.861603847354461, - 4.329774650158534, - 5.233170078055538, - 5.551504482720661, - 4.432609366552317, - 3.9156654438587934, - 3.5752744729595687, - 3.320941080301498, - 3.117810473137038, - 2.948736237277203, - 2.804010156205073, - 2.6776031760871897, - 2.565517092674966, - 2.4649673155348113, - 2.3739396404202404, - 2.29093275610914, - 2.214800272409878, - 2.1446494072038287, - 2.079773569669283, - 2.0196060771171194, - 1.9636875168807115, - 1.9116421857757742, - 1.8631607266238772, - 1.8179870915019443, - 1.7759085857466193, - 1.7367481436364596, - 1.700358245401338, - 1.6666160577727156, - 1.6354194978485503, - 1.606684001749773, - 1.5803398374264404, - 1.5563298427462362, - 1.5346075006956095, - 1.5151352864675691, - 1.4978832386164724, - 1.482827719815991, - 1.469950343062266, - 1.4592370470953537, - 1.4506773108296402, - 1.444263501013856, - 1.4399903504309857, - 1.4378545659080364, - 1.4378545664365792, - 1.4399903520169994, - 1.4442635036585312, - 1.4506773145350682, - 1.4592370518646895, - 1.4699503488999557, - 1.4828277267280585, - 1.4978832466108787, - 1.5151352955546327, - 1.5346075108885007, - 1.556329854061549, - 1.5803398498848478, - 1.606684015376789, - 1.6354195126754105, - 1.666616073837405, - 1.7003582627498104, - 1.7367481623240888, - 1.7759086058399591, - 1.8179871130808845, - 1.8631607497843217, - 1.9116422106330186, - 1.9636875435737624, - 2.0196061058143, - 2.079773600575633, - 2.144649440571047, - 2.2148003085499384, - 2.290932795413353, - 2.3739396833866127, - 2.4649673628084434, - 2.565517145109756, - 2.6776032348438936, - 2.8040102229148527, - 2.948736314331261, - 3.117810564240187, - 3.3209411916425973, - 3.575274616060189, - 3.9156656441486426, - 4.432609700775997, - 5.551505500257324, - 6.2030407991936825, - 4.587573757702507, - 3.9961845289153306, - 3.625230901769984, - 3.3540052341470767, - 3.1399885518871935, - 2.9631881269316835, - 2.812594928467061, - 2.681500559090032, - 2.565517092674966, - 2.4616201236983035, - 2.367639597728647, - 2.2819683817523986, - 2.2033855978923507, - 2.1309444315840254, - 2.0638980916013243, - 2.001649339784332, - 1.943715120522372, - 1.8897011684773346, - 1.839283388684949, - 1.792193940883534, - 1.7482106580246597, - 1.7071488697997175, - 1.66885498770821, - 1.633201397693527, - 1.6000823348042885, - 1.5694105031716103, - 1.5411142672566838, - 1.5151352853985025, - 1.49142648975609, - 1.4699503414701685, - 1.4506773087122515, - 1.4335845298776826, - 1.4186546355993508, - 1.4058747122260917, - 1.3952353963893243, - 1.3867300955758695, - 1.3803543334392459, - 1.3761052210744735, - 1.373981056802522, - 1.3739810573282214, - 1.3761052226517607, - 1.3803543360687185, - 1.3867300992586362, - 1.3952354011271701, - 1.4058747180217077, - 1.4186546424566262, - 1.4335845378020606, - 1.4506773177111494, - 1.4699503515534507, - 1.491426500936621, - 1.5151352976927643, - 1.541114280685483, - 1.569410517760882, - 1.6000823505860216, - 1.6332014147068452, - 1.6688550060006442, - 1.707148889428722, - 1.7482106790594558, - 1.7921939634073718, - 1.8392834127979278, - 1.8897011942999702, - 1.9437151482001758, - 2.0016493694937827, - 2.0638981235577862, - 2.1309444660524286, - 2.203385635201908, - 2.2819684223173176, - 2.36763964207806, - 2.461620172520799, - 2.5655171468872076, - 2.6815006199469757, - 2.8125949977482256, - 2.9631882072764606, - 3.1399886474495875, - 3.354005352020903, - 3.625231055607259, - 3.9961847505884, - 4.587574155644144, - 6.203042787218177, - 4.820682481117631, - 4.109419181766441, - 3.6955178097659087, - 3.4019399982175966, - 3.1740413542594217, - 2.987651666484148, - 2.8299358988981718, - 2.693260141794029, - 2.5727169070605775, - 2.4649673155348113, - 2.367639597728647, - 2.2789911027054277, - 2.1977063928171026, - 2.122770555054743, - 2.053386429670804, - 1.9889186692481235, - 1.9288548249338575, - 1.872777594032651, - 1.8203445903188429, - 1.7712733081410286, - 1.7253297480731442, - 1.6823196710977601, - 1.6420817695251573, - 1.6044822545156987, - 1.5694105026312675, - 1.5367755018516254, - 1.5065029062322723, - 1.4785325575681512, - 1.4528163683599773, - 1.4293164872025135, - 1.4080036881842368, - 1.3888559418457913, - 1.3718571379102966, - 1.35699594016408, - 1.344264762026959, - 1.3336588577992403, - 1.3251755294706895, - 1.318813452417023, - 1.3145721253636744, - 1.312451450756096, - 1.312451451280965, - 1.3145721269382706, - 1.318813455041347, - 1.3251755331448605, - 1.3336588625236696, - 1.3442647678025923, - 1.3569959469926989, - 1.3718571457948827, - 1.3888559507909486, - 1.408003698196669, - 1.4293164982915603, - 1.452816380538213, - 1.4785325708520527, - 1.5065029206429688, - 1.5367755174157451, - 1.5694105193819126, - 1.6044822724935734, - 1.6420817887799009, - 1.682319691689542, - 1.7253297700746038, - 1.7712733316396643, - 1.8203446154200116, - 1.8727776208633715, - 1.9288548536477221, - 1.9889187000317299, - 2.053386462752334, - 2.122770590715601, - 2.197706431408042, - 2.2789911446694213, - 2.3676396436341807, - 2.464967366125891, - 2.572716963334615, - 2.6932602051285923, - 2.8299359712686702, - 2.987651750863774, - 3.1740414554213205, - 3.4019401245467895, - 3.695517978119404, - 4.109419434654862, - 4.820682992250461, - 5.194835337803245, - 4.2663974872765005, - 3.7901516004511846, - 3.4666601374964006, - 3.2210086592017664, - 3.022729279478452, - 2.8563898342391827, - 2.7130891185546684, - 2.58722715765911, - 2.4750543537213643, - 2.3739396404202404, - 2.2819683817523986, - 2.1977063928171026, - 2.1200539881849445, - 2.048151758862644, - 1.9813175336616855, - 1.9190029098475982, - 1.8607624893135901, - 1.8062316080919234, - 1.7551098882532687, - 1.707148869238889, - 1.6621425519345825, - 1.6199200565434522, - 1.5803398358014304, - 1.5432850458797898, - 1.5086597870866316, - 1.4763860029197655, - 1.4464008803333461, - 1.4186546334894201, - 1.393108582524398, - 1.3697334611336858, - 1.3485079041856227, - 1.3294170805319805, - 1.3124514476068805, - 1.2976056138672545, - 1.284877302940496, - 1.2742664196464024, - 1.2657742228762607, - 1.259402613615008, - 1.2551535481581189, - 1.2530285868287707, - 1.2530285873547355, - 1.2551535497357944, - 1.2594026162437766, - 1.2657742265552208, - 1.274266424374556, - 1.2848773087170076, - 1.2976056206917725, - 1.312451455479919, - 1.3294170894553554, - 1.3485079141629417, - 1.3697334721708827, - 1.3931085946303243, - 1.418654646676488, - 1.446400894618241, - 1.4763860183242346, - 1.5086598036383736, - 1.5432850636134734, - 1.5803398547598762, - 1.6199200767790345, - 1.6621425735109114, - 1.7071488922328657, - 1.7551099127576373, - 1.80623163421848, - 1.8607625171972875, - 1.91900293965187, - 1.981317565585458, - 2.0481517931497506, - 2.120054025136976, - 2.1977064328113496, - 2.2819684252674937, - 2.373939688073852, - 2.4750544063274154, - 2.587227216318057, - 2.7130891848027647, - 2.8563899103098453, - 3.0227293687946286, - 3.221008767396829, - 3.4666602748304483, - 3.7901517887723295, - 4.26639778797235, - 5.194836092075159, - 5.936527417065593, - 4.488066170218634, - 3.915665446602488, - 3.5511055436729677, - 3.282463345480315, - 3.0693455371220564, - 2.892529023792747, - 2.7413498468478688, - 2.609276512740028, - 2.4920204420696477, - 2.3866167510430327, - 2.29093275610914, - 2.2033855978923507, - 2.122770555054743, - 2.048151758862644, - 1.9787899386723153, - 1.914093100841395, - 1.8535819313628012, - 1.7968649469080673, - 1.7436202736599642, - 1.6935820369308385, - 1.6465300227709199, - 1.602281701539245, - 1.5606859813995806, - 1.5216182440737618, - 1.4849763400392586, - 1.4506773065948642, - 1.4186546329619376, - 1.388855940267234, - 1.3612409763913649, - 1.3357798499471005, - 1.3124514465571422, - 1.2912419858073858, - 1.2721436898707044, - 1.2551535455286595, - 1.2402721505561356, - 1.2275026433336882, - 1.2168497211004186, - 1.2083187573330403, - 1.2019150321673158, - 1.1976430914214387, - 1.1955062495779183, - 1.1955062501068603, - 1.1976430930078257, - 1.2019150348098748, - 1.2083187610297907, - 1.2168497258488815, - 1.2275026491311687, - 1.2402721574000726, - 1.2551535534170368, - 1.272143698802512, - 1.2912419957831307, - 1.3124514575793957, - 1.335779862021093, - 1.3612409895256183, - 1.3888559544742487, - 1.4186546482589357, - 1.4506773230046182, - 1.4849763575910166, - 1.5216182628043118, - 1.5606860013544916, - 1.6022817227743458, - 1.6465300453540828, - 1.693582060944179, - 1.7436202992025822, - 1.7968649740995282, - 1.853581960347601, - 1.9140931317948038, - 1.9787899718081194, - 2.0481517944436036, - 2.1227705934069867, - 2.2033856394256315, - 2.2909328013460644, - 2.386616800662488, - 2.492020496973571, - 2.6092765741603925, - 2.741349916526873, - 2.892529104305859, - 3.069345632505308, - 3.282463462585547, - 3.551105695570871, - 3.9156656633545164, - 4.488066550791834, - 5.936529021047764, - 4.820682487587668, - 4.083203361235516, - 3.6598197053912016, - 3.360732579126303, - 3.1288485797500827, - 2.9391931458075518, - 2.7785881180030563, - 2.639227533332824, - 2.5161073112061954, - 2.4058295010047783, - 2.3059836456886265, - 2.214800272409878, - 2.1309444315840254, - 2.053386429670804, - 1.9813175336616855, - 1.914093100841395, - 1.8511930880493204, - 1.7921939403059999, - 1.7367481425038755, - 1.6845690585160402, - 1.635419496201121, - 1.5891029460552455, - 1.5454567682903215, - 1.5043468180783355, - 1.4656631430112512, - 1.4293164856183638, - 1.3952353927043333, - 1.363363782298776, - 1.3336588546496209, - 1.3060892602808079, - 1.2806334586070303, - 1.2572782169641383, - 1.2360172135437404, - 1.2168497195175976, - 1.199779346144409, - 1.1848128521191805, - 1.17195901486541, - 1.16122757670798, - 1.1526282826012344, - 1.1461700299755249, - 1.1418601529991712, - 1.139703862951226, - 1.1397038634850207, - 1.1418601545998792, - 1.1461700326411628, - 1.1526282863286574, - 1.1612275814931183, - 1.171959020703585, - 1.1848128590054934, - 1.199779354074193, - 1.2168497284869173, - 1.236017223549933, - 1.25727822800639, - 1.2806334706869795, - 1.306089273403183, - 1.3336588688229094, - 1.3633637975359396, - 1.3952354090235806, - 1.4293165030440087, - 1.465663161574673, - 1.504346837819093, - 1.5454567892574584, - 1.5891029683088582, - 1.6354195198142694, - 1.6845690835771165, - 1.7367481691195903, - 1.7921939686051813, - 1.851193118187844, - 1.9140931330086635, - 1.9813175680892843, - 2.053386466644279, - 2.130944471459237, - 2.2148003156362246, - 2.305983692842924, - 2.405829552842226, - 2.5161073687399265, - 2.639227597963657, - 2.778588191742958, - 2.939193231691666, - 3.128848682666984, - 3.3607327077055857, - 3.6598198771162145, - 4.083203620826325, - 4.820683024600652, - 5.40275872972405, - 4.3135702796984, - 3.8000780785844457, - 3.459285561988312, - 3.203178098351676, - 2.9975730778689655, - 2.8255789450740063, - 2.677603177050414, - 2.5476750629080165, - 2.431827550490419, - 2.3272929592602587, - 2.2320659722480336, - 2.1446494072038287, - 2.0638980916013243, - 1.9889186692481235, - 1.9190029098475982, - 1.8535819313628012, - 1.7921939403059999, - 1.7344609754968305, - 1.6800718056332464, - 1.6287691283904389, - 1.5803398352597606, - 1.5346074980132693, - 1.4914264876264653, - 1.4506773060655174, - 1.4122628263592014, - 1.3761052158168499, - 1.3421433731180896, - 1.3103307500531773, - 1.2806334580818146, - 1.2530285820950882, - 1.2275026412255134, - 1.2040501509442416, - 1.1826722531845713, - 1.1633753926101145, - 1.146170027843015, - 1.1310693766236781, - 1.1180882033617108, - 1.1072416660037454, - 1.0985442460691177, - 1.0920087905001261, - 1.0876456960992709, - 1.08546226641886, - 1.0854622669594163, - 1.087645697719998, - 1.0920087931982572, - 1.0985442498402256, - 1.1072416708420172, - 1.1180882092603093, - 1.1310693835751824, - 1.1461700358399276, - 1.1633754016454128, - 1.1826722632522926, - 1.2040501620400976, - 1.2275026533475184, - 1.2530285952442064, - 1.280633472262625, - 1.310330765274565, - 1.3421433893939816, - 1.376105233167008, - 1.4122628448101022, - 1.4506773256513525, - 1.4914265083903084, - 1.5346075200084557, - 1.580339858551566, - 1.6287691530581427, - 1.6800718317727146, - 1.7344610032237902, - 1.7921939697602498, - 1.8535819627137067, - 1.9190029433013724, - 1.9889187050576251, - 2.063898130079513, - 2.1446494487426104, - 2.232066017345329, - 2.327293008559959, - 2.431827604843398, - 2.5476751234689976, - 2.677603245439365, - 2.8255790236614877, - 2.9975731703204067, - 3.203178210774867, - 3.459285705714818, - 3.80007827848818, - 4.3135706100296085, - 5.402759700140106, - 7.439855431034525, - 4.652180500604229, - 3.984308156501389, - 3.5834475627424025, - 3.29514914067997, - 3.069345538428677, - 2.8833982119270414, - 2.725128009634416, - 2.5872271585615563, - 2.4649673163641728, - 2.3551150766678424, - 2.255363880459834, - 2.1640127763382586, - 2.079773569669283, - 2.001649339784332, - 1.9288548249338575, - 1.8607624893135901, - 1.7968649469080673, - 1.7367481425038755, - 1.6800718056332464, - 1.6265549411931903, - 1.57596488157616, - 1.5281089029583805, - 1.482827716094108, - 1.439990344615601, - 1.3994900399832744, - 1.3612409753406247, - 1.3251755252716368, - 1.2912419842322684, - 1.2594026094089785, - 1.2296318981155263, - 1.2019150284677336, - 1.1762464070342245, - 1.1526282799387888, - 1.1310693755542156, - 1.1115835581957214, - 1.0941884834869513, - 1.0789042574006986, - 1.0657521121127758, - 1.0547531221897213, - 1.0459269934570408, - 1.0392909632374585, - 1.03485885362249, - 1.0326403183967683, - 1.032640318946063, - 1.0348588552691345, - 1.0392909659778025, - 1.0459269972852208, - 1.054753127097979, - 1.0657521180918836, - 1.0789042644404667, - 1.0941884915768056, - 1.1115835673253223, - 1.131069385714107, - 1.1526282911210586, - 1.1762464192331699, - 1.2019150416805278, - 1.229631912342884, - 1.2594026246558365, - 1.2912420005084833, - 1.3251755425927279, - 1.3612409937285797, - 1.3994900594674546, - 1.4399903652337815, - 1.4828277378937056, - 1.5281089259979315, - 1.5759649059271286, - 1.6265549669422288, - 1.6800718328850328, - 1.7367481713847575, - 1.7968649775707783, - 1.8607625219434492, - 1.9288548597570552, - 2.001649377079174, - 2.07977360978178, - 2.1640128197041864, - 2.2553639276368074, - 2.3551151283833547, - 2.4649673735901474, - 2.587227222635176, - 2.7251280824644657, - 2.8833982963703972, - 3.069345639038409, - 3.295149265373447, - 3.583447727189757, - 3.9843083991345236, - 4.65218096802192, - 7.439862929356006, - 5.2331693819704315, - 4.236077639338105, - 3.74182051500112, - 3.408953401641005, - 3.1568942034697773, - 2.953535074051771, - 2.782791136223835, - 2.635448140611164, - 2.5057357083578577, - 2.38980229406761, - 2.2849510645605924, - 2.189222197067225, - 2.1011487327904854, - 2.0196060771171194, - 1.943715120522372, - 1.872777594032651, - 1.8062316080919234, - 1.7436202736599642, - 1.6845690585160402, - 1.6287691283904389, - 1.57596488157616, - 1.5259444797685686, - 1.4785325559740832, - 1.4335845267079308, - 1.390982099601772, - 1.3506296785581042, - 1.3124514449825344, - 1.2763889469559975, - 1.2423990659829132, - 1.2104522581805797, - 1.1805309869148792, - 1.1526282794062999, - 1.1267463525561927, - 1.102895264564627, - 1.0810915598789985, - 1.061356886370601, - 1.0437165758032223, - 1.02819819168108, - 1.0148300620747541, - 1.0036398282261398, - 0.9946530514538663, - 0.9878919297119937, - 0.9833741796905038, - 0.9811121394789297, - 0.9811121400390486, - 0.9833741813692799, - 0.987891932504767, - 0.9946530553531348, - 1.0036398332219405, - 1.0148300681551665, - 1.028198198832825, - 1.043716584012329, - 1.0613568956231163, - 1.081091570161709, - 1.102895275865787, - 1.1267463648662341, - 1.152628292718526, - 1.1805310012261405, - 1.2104522734919416, - 1.2423990823003266, - 1.2763889642909916, - 1.3124514633529571, - 1.3506296979889387, - 1.3909821201260708, - 1.4335845483678995, - 1.4785325788223944, - 1.5259445038699548, - 1.5759649070093937, - 1.6287691552508274, - 1.6845690869185936, - 1.743620303743492, - 1.8062316400243819, - 1.8727776280182304, - 1.943715156811048, - 2.0196061160177425, - 2.1011487746891016, - 2.189222242453345, - 2.284951114065881, - 2.3898023485247974, - 2.505735768893977, - 2.6354482088022246, - 2.7827912143669105, - 2.9535351656804454, - 3.156894314431034, - 3.4089535426716977, - 3.7418207092768196, - 4.236077953748391, - 5.233170223073338, - 7.140956127785746, - 4.608666951728497, - 3.949442878495551, - 3.551105547618369, - 3.263688144681468, - 3.0380724689770626, - 2.8519430761705835, - 2.6932601437427843, - 2.554785166624669, - 2.431827551301658, - 2.321175714543077, - 2.2205361435639084, - 2.128215756586937, - 2.0429310049467384, - 1.9636875168807115, - 1.8897011684773346, - 1.8203445903188429, - 1.7551098882532687, - 1.6935820369308385, - 1.635419496201121, - 1.5803398352597606, - 1.5281089029583805, - 1.4785325559740832, - 1.4314502613781979, - 1.3867300908408833, - 1.3442647583515561, - 1.3039684451143378, - 1.2657742186717356, - 1.2296318975885872, - 1.1955062442885, - 1.16337539101565, - 1.1332294203197433, - 1.1050690340988467, - 1.0789042557761368, - 1.054753120008273, - 1.032640314551707, - 1.012595750418678, - 0.9946530497827515, - 0.9788479563589043, - 0.9652166897539135, - 0.9537942825065628, - 0.9446129545600699, - 0.9377005926392686, - 0.9330794092406123, - 0.9307648558324734, - 0.9307648564056559, - 0.9330794109581813, - 0.9377005954953906, - 0.9446129585453454, - 0.953794287608491, - 0.9652166959574981, - 0.9788479636473701, - 0.9946530581383264, - 1.0125957598234145, - 1.0326403249883025, - 1.0547531314608753, - 1.0789042682311112, - 1.1050690475455047, - 1.133229434751031, - 1.163375406428806, - 1.1955062606856972, - 1.2296319149775803, - 1.2657742370665352, - 1.303968464535948, - 1.3442647788288016, - 1.386730112411377, - 1.4314502840894991, - 1.4785325798851063, - 1.5281089281411453, - 1.5803398618015851, - 1.6354195242074128, - 1.6935820665286767, - 1.755109919596066, - 1.8203446235924854, - 1.889701203908393, - 1.9636875547475978, - 2.042931045595167, - 2.128215800451816, - 2.220536191201146, - 2.3211757666771824, - 2.4318276088995927, - 2.5547852310153796, - 2.6932602168211286, - 2.8519431607688075, - 3.0380725696014337, - 3.2636882691501934, - 3.5511057113524704, - 3.9494431190899055, - 4.608667410547463, - 7.140961821287471, - 5.272997889049563, - 4.236077643037052, - 3.732403544783259, - 3.3949690810345237, - 3.1399885560420793, - 2.934448571966174, - 2.7619085662326297, - 2.6129853563265235, - 2.4818173994333423, - 2.3644990774704056, - 2.258298981706513, - 2.161233739303698, - 2.071819440030235, - 1.9889186698763603, - 1.9116421857757742, - 1.839283388684949, - 1.7712733081410286, - 1.707148869238889, - 1.6465300227709199, - 1.5891029460552455, - 1.5346074980132693, - 1.482827716094108, - 1.4335845267079308, - 1.3867300908408833, - 1.3421433725930605, - 1.2997266305711173, - 1.2594026088832246, - 1.2211122575965256, - 1.1848128494705987, - 1.150476385593227, - 1.1180882006805302, - 1.0876456917773316, - 1.0591571038570362, - 1.0326403140024123, - 1.0081215638924135, - 0.9856340995281264, - 0.965216688625989, - 0.9469120007092249, - 0.9307648529665618, - 0.9168203460322344, - 0.9051219366800339, - 0.8957095167571756, - 0.8886175864468423, - 0.8838736217187966, - 0.8814967375337396, - 0.8814967381224271, - 0.883873623482412, - 0.8886175893781676, - 0.8957095208445839, - 0.905121941908062, - 0.916820352382326, - 0.9307648604179317, - 0.9469120092397951, - 0.9652166982133477, - 0.9856341101504706, - 1.0081215755294481, - 1.032640326636186, - 1.059157117472709, - 1.0876457063638765, - 1.1180882162313792, - 1.1504764021068856, - 1.184812866951239, - 1.2211122760545985, - 1.2594026283361122, - 1.299726651043868, - 1.3421433941192404, - 1.3867301134635963, - 1.4335845504810671, - 1.4828277410838906, - 1.5346075243001993, - 1.5891029737365685, - 1.6465300519637884, - 1.707148900084468, - 1.7712733408098635, - 1.8392834233841138, - 1.9116422227585037, - 1.988918709455283, - 2.0718194825959118, - 2.1612337853512287, - 2.2582990318747798, - 2.364499132601903, - 2.481817460669, - 2.6129854252633433, - 2.7619086452015846, - 2.9344486645602608, - 3.1399886682240226, - 3.394969223802227, - 3.732403742050454, - 4.236077964845222, - 5.272998783705772, - 4.674639777502839, - 3.972561009340966, - 3.5591043652237198, - 3.2636881462181195, - 3.03293682689645, - 2.8430952484017276, - 2.6815005619879813, - 2.540600041197718, - 2.4155268340284475, - 2.302962300076219, - 2.200543673063431, - 2.1065306679333893, - 2.019606077754835, - 1.9387505485035057, - 1.8631607266238772, - 1.792193940883534, - 1.7253297480731442, - 1.6621425519345825, - 1.602281701539245, - 1.5454567682903215, - 1.4914264876264653, - 1.439990344615601, - 1.390982099601772, - 1.3442647583515561, - 1.2997266305711173, - 1.2572782153866737, - 1.2168497174071695, - 1.1783890418577094, - 1.1418601481970472, - 1.107241662778231, - 1.0745256653953896, - 1.0437165741614007, - 1.0148300598636948, - 0.9878919263606651, - 0.9629368992853327, - 0.9400072729021063, - 0.9191513759538029, - 0.9004218330499465, - 0.8838736193673092, - 0.8695619330287243, - 0.8575399400628112, - 0.8478564783500244, - 0.8405538350049235, - 0.8356657309333825, - 0.8332156517488596, - 0.8332156523557568, - 0.8356657327510646, - 0.8405538380245177, - 0.8478564825572519, - 0.8575399454387058, - 0.8695619395505557, - 0.8838736270096428, - 0.9004218417857728, - 0.9191513857556718, - 0.9400072837432185, - 0.96293691114055, - 0.9878919392074237, - 1.014830073682814, - 1.0437165889377937, - 1.074525681118696, - 1.107241679443389, - 1.1418601658048346, - 1.1783890604152811, - 1.216849736928629, - 1.257278235893712, - 1.2997266520937525, - 1.3442647809290318, - 1.3909821232836546, - 1.439990369463152, - 1.491426513714371, - 1.5454567957088852, - 1.6022817303972023, - 1.662142582362739, - 1.725329780229123, - 1.792193974958058, - 1.8631607628491877, - 1.938750587164831, - 2.019606119206317, - 2.1065307126206934, - 2.2005437215566737, - 2.302962353119413, - 2.415526892616456, - 2.540600106701384, - 2.681500636368693, - 2.8430953346049317, - 3.032936929638938, - 3.263688273760147, - 3.5591045340974388, - 3.972561260916277, - 4.674640277610831, - 5.551504548794438, - 4.313570291638081, - 3.770563766947739, - 3.4160098485355617, - 3.151232532916275, - 2.9391931493370356, - 2.761908567258202, - 2.6092765154901945, - 2.4750543562264147, - 2.3551150782115893, - 2.2465893368549272, - 2.1474028729737342, - 2.056009029440625, - 1.9712252888590818, - 1.8921288008260466, - 1.8179870915019443, - 1.7482106580246597, - 1.6823196710977601, - 1.6199200565434522, - 1.5606859813995806, - 1.5043468180783355, - 1.4506773060655174, - 1.3994900399832744, - 1.3506296785581042, - 1.3039684451143378, - 1.2594026088832246, - 1.2168497174071695, - 1.1762464059734468, - 1.1375466482194356, - 1.1007203379633905, - 1.0657521093949998, - 1.0326403134531177, - 1.0013960743972372, - 0.9720423538658867, - 0.9446129517134447, - 0.9191513753772225, - 0.8957095144215137, - 0.8743460663817566, - 0.855124676192576, - 0.8381117759584824, - 0.8233741451460765, - 0.8109762521487964, - 0.8009774828864277, - 0.7934294043823493, - 0.7883732429483007, - 0.7858377692618201, - 0.7858377698899668, - 0.7883732448290469, - 0.7934294075048169, - 0.8009774872331398, - 0.8109762576965917, - 0.8233741518672741, - 0.8381117838221985, - 0.8551246851661006, - 0.8743460764319081, - 0.895709525515908, - 0.9191513874854136, - 0.9446129648079211, - 0.9720423679229186, - 1.0013960893975913, - 1.0326403293826587, - 1.065752126245212, - 1.1007203557318535, - 1.1375466669102803, - 1.1762464255978369, - 1.2168497379838437, - 1.2594026304391273, - 1.3039684676853984, - 1.3506297021902007, - 1.3994900647334492, - 1.4506773320035162, - 1.5043468452885689, - 1.560686009983643, - 1.6199200866233725, - 1.6823197028202357, - 1.7482106915666324, - 1.8179871270780352, - 1.8921288386986155, - 1.9712253293520852, - 2.056009072959105, - 2.1474029200318836, - 2.24658938811768, - 2.355115134558341, - 2.475054418852665, - 2.6092765860777782, - 2.7619086482782973, - 2.9391932446331075, - 3.1512326489475564, - 3.41600999744229, - 3.770563975968104, - 4.313570645848664, - 5.5515057513379364, - 4.874335700725183, - 4.057613585766742, - 3.608330094550512, - 3.2951491454151642, - 3.0536093393852473, - 2.856389838649075, - 2.6893289655194645, - 2.5441331970656926, - 2.4155268348310224, - 2.299946569193647, - 2.194873738965377, - 2.0984635570030084, - 2.009325711616506, - 1.9263877755167933, - 1.8488065633419373, - 1.7759085857466193, - 1.7071488697997175, - 1.6420817695251573, - 1.5803398358014304, - 1.5216182440737618, - 1.4656631430112512, - 1.4122628263592014, - 1.3612409753406247, - 1.3124514449825344, - 1.2657742186717356, - 1.2211122575965256, - 1.1783890418577094, - 1.1375466482194356, - 1.0985442422980098, - 1.0613568847378043, - 1.0259745644547378, - 0.9924013793410353, - 0.9606547874713058, - 0.9307648512470149, - 0.9027733946165215, - 0.8767329914239219, - 0.8527057035017582, - 0.8307614932983164, - 0.810976250915953, - 0.7934294025088684, - 0.7782011079589188, - 0.7653691101014535, - 0.7550053612943652, - 0.7471726171829705, - 0.7419212396202101, - 0.7392864768332528, - 0.7392864774861143, - 0.7419212415742583, - 0.7471726204248619, - 0.7550053658027134, - 0.765369115848013, - 0.7782011149100732, - 0.7934294106272847, - 0.8109762601622782, - 0.8307615036328058, - 0.8527057148857567, - 0.876733003821151, - 0.9027734079941594, - 0.9307648655765723, - 0.9606548027293274, - 0.992401395509654, - 1.025974581522127, - 1.0613569026985687, - 1.0985442611535494, - 1.1375466679783282, - 1.1783890625361462, - 1.2211122792188394, - 1.265774241271061, - 1.3124514686016497, - 1.3612410000330215, - 1.4122628521904625, - 1.4656631700608087, - 1.5216182724371659, - 1.5803398655932743, - 1.642081800882883, - 1.7071489028886109, - 1.7759086207664405, - 1.8488066005358395, - 1.9263878151835234, - 2.0093257541274183, - 2.0984636028263304, - 2.194873788701751, - 2.299946623629838, - 2.4155268950241817, - 2.544133264481647, - 2.6893290422726803, - 2.8563899279494205, - 3.0536094464498413, - 3.295149279579032, - 3.6083302751418382, - 4.057613864272009, - 4.8743363209093395, - 6.430174065217483, - 4.48806619371081, - 3.861603677657214, - 3.47408272681857, - 3.191437863544219, - 2.968042684300721, - 2.782791139349558, - 2.6241713999346485, - 2.4852105706687553, - 2.3613648419679105, - 2.249509087506016, - 2.1474028736557367, - 2.0533864316167754, - 1.96619714724701, - 1.8848534549284681, - 1.8085784758744534, - 1.7367481436364596, - 1.66885498770821, - 1.6044822545156987, - 1.5432850458797898, - 1.4849763400392586, - 1.4293164856183638, - 1.3761052158168499, - 1.3251755252716368, - 1.2763889469559975, - 1.2296318975885872, - 1.1848128494705987, - 1.1418601481970472, - 1.1007203379633905, - 1.0613568847378043, - 1.0237492059436863, - 0.9878919258021106, - 0.9537942796721584, - 0.9214795897680295, - 0.8909847296380677, - 0.8623594871389141, - 0.8356657272980186, - 0.8109762502995312, - 0.7883732398137231, - 0.7679462079859573, - 0.7497893709939049, - 0.7339984376750536, - 0.7206668648800935, - 0.7098817230519306, - 0.701719412763051, - 0.6962415587051884, - 0.6934914585803305, - 0.6934914592619141, - 0.6962415607443496, - 0.7017194161433725, - 0.7098817277471836, - 0.7206668708557944, - 0.7339984448903918, - 0.7497893794038474, - 0.7679462175433569, - 0.788373250471286, - 0.8109762620115432, - 0.8356657400217928, - 0.8623595008359444, - 0.8909847442749149, - 0.9214796053169803, - 0.9537942961117043, - 0.9878919431173065, - 1.0237492241264323, - 1.0613569037870998, - 1.1007203578856062, - 1.1418601690062504, - 1.1848128711889703, - 1.2296319202469719, - 1.2763889705946259, - 1.3251755499410696, - 1.376105241579206, - 1.4293165125489062, - 1.4849763682284456, - 1.543285075435929, - 1.6044822855683916, - 1.668855020412865, - 1.7367481781802592, - 1.8085785124843412, - 1.884853493882004, - 1.9661971888874057, - 2.05338647637414, - 2.147402922077891, - 2.249509140304492, - 2.361364900089079, - 2.4852106354085337, - 2.624171473133241, - 2.7827912237440793, - 2.96804278421896, - 3.191437986430473, - 3.4740828871669476, - 3.861603910011907, - 4.488066621268368, - 6.430176997508014, - 5.314443583785905, - 4.221236680552459, - 3.704624677815707, - 3.3607325874756055, - 3.1014398155794414, - 2.8925290294626844, - 2.7170901227243087, - 2.565517097118592, - 2.431827553735373, - 2.312043314431647, - 2.203385600708167, - 2.1038377653717797, - 2.011890927583288, - 1.926387776127051, - 1.846422343194067, - 1.7712733092873039, - 1.700358245401338, - 1.633201397693527, - 1.5694105026312675, - 1.5086597870866316, - 1.4506773065948642, - 1.3952353927043333, - 1.3421433731180896, - 1.2912419842322684, - 1.2423990659829132, - 1.1955062442885, - 1.150476385593227, - 1.107241662778231, - 1.0657521093949998, - 1.0259745644547378, - 0.9878919258021106, - 0.9515026381997611, - 0.9168203437231106, - 0.8838736176036939, - 0.8527057029026005, - 0.8233741433130226, - 0.7959501967514254, - 0.7705178963109778, - 0.7471726145894573, - 0.7260189894597918, - 0.7071680928491815, - 0.6907337780368509, - 0.6768282314478553, - 0.6655568805516342, - 0.6570129568159502, - 0.6512721539360786, - 0.6483879179913444, - 0.6483879187063506, - 0.6512721560741683, - 0.6570129603568172, - 0.6655568854629682, - 0.6768282376874232, - 0.690733785555032, - 0.7071681015916754, - 0.7260189993702567, - 0.7471726256118884, - 0.7705179083917205, - 0.7959502098407761, - 0.8233741573664357, - 0.8527057178815459, - 0.8838736334762332, - 0.9168203604642609, - 0.9515026557917233, - 0.9878919442344163, - 1.025974583724371, - 1.0657521295065435, - 1.1072416837440755, - 1.1504764074338727, - 1.1955062670329994, - 1.242399089669481, - 1.2912420089091103, - 1.3421433988445002, - 1.3952354195521275, - 1.4506773346502504, - 1.5086598164526261, - 1.5694105334308408, - 1.6332014300737145, - 1.700358279538655, - 1.771273345394963, - 1.846422381531742, - 1.926387817014296, - 2.0118909714183717, - 2.1038378126587447, - 2.2033856520968027, - 2.312043370778517, - 2.431827616200738, - 2.565517167327889, - 2.717090203053686, - 2.8925291235836474, - 3.101439929607278, - 3.360732732753498, - 3.704624879243526, - 4.221237012482759, - 5.314444557402527, - 4.820682526407877, - 4.020337085127043, - 3.5752744870680777, - 3.263688150828074, - 3.022729287026298, - 2.82557895045671, - 2.6582813088954484, - 2.5126419023608753, - 2.3834377562385054, - 2.267135433167634, - 2.1612337413655274, - 2.0638980942100154, - 1.9737438335097461, - 1.8897011702789148, - 1.8109274465079814, - 1.7367481442027515, - 1.6666160577727156, - 1.6000823348042885, - 1.5367755018516254, - 1.4763860029197655, - 1.4186546329619376, - 1.363363782298776, - 1.3103307500531773, - 1.2594026094089785, - 1.2104522581805797, - 1.16337539101565, - 1.1180882006805302, - 1.0745256653953896, - 1.0326403134531177, - 0.9924013793410353, - 0.9537942796721584, - 0.9168203437231106, - 0.8814967328242392, - 0.8478564753448621, - 0.8159485294986354, - 0.785837764864794, - 0.7576047264697695, - 0.7313450153331803, - 0.7071680921766818, - 0.6851952959212017, - 0.6655568791483961, - 0.6483879151313202, - 0.6338230402255162, - 0.6219901672929493, - 0.6130035276626428, - 0.6069566318653293, - 0.6039159191106741, - 0.6039159198646975, - 0.6069566341187413, - 0.6130035313901362, - 0.6219901724544618, - 0.6338230467690654, - 0.6483879229963869, - 0.6655568882694447, - 0.6851953062309993, - 0.7071681036091739, - 0.7313450278258083, - 0.7576047399652097, - 0.7858377793121659, - 0.8159485448542713, - 0.8478564915727397, - 0.8814967498961783, - 0.9168203616188226, - 0.9537942983792281, - 0.9924013988548852, - 1.0326403337770145, - 1.074525686540526, - 1.1180882226662139, - 1.1633754138696397, - 1.2104522819395895, - 1.2594026341194033, - 1.3103307757720744, - 1.3633638090951667, - 1.4186546609185209, - 1.476386032135138, - 1.5367755324431716, - 1.6000823669119526, - 1.6666160915639594, - 1.7367481798791342, - 1.8109274843140182, - 1.8897012105141844, - 1.9737438765457607, - 2.0638981405142767, - 2.161233791536718, - 2.2671354879887593, - 2.3834378167601664, - 2.512641970037749, - 2.6582813858227676, - 2.8255790398096017, - 3.022729393954114, - 3.2636882845167023, - 3.575274666447733, - 4.0203373601867, - 4.820683128121249, - 6.723979765587077, - 4.507224065126782, - 3.8616036828786666, - 3.4666601503142456, - 3.1798120948032382, - 2.9535350800016844, - 2.766058783046013, - 2.6055774847826525, - 2.464967320510983, - 2.3395981788649847, - 2.2262913106670807, - 2.1227705584189756, - 2.0273508387561843, - 1.938750550344521, - 1.855973106791671, - 1.7782291393097005, - 1.7048837106932262, - 1.6354194978485503, - 1.5694105031716103, - 1.5065029062322723, - 1.4464008803333461, - 1.388855940267234, - 1.3336588546496209, - 1.2806334580818146, - 1.2296318981155263, - 1.1805309869148792, - 1.1332294203197433, - 1.0876456917773316, - 1.0437165741614007, - 1.0013960743972372, - 0.9606547874713058, - 0.9214795897680295, - 0.8838736176036939, - 0.8478564753448621, - 0.8134646079886454, - 0.7807517545189885, - 0.7497893697000677, - 0.7206668628881931, - 0.693491454490829, - 0.6683873990926584, - 0.6454942801004937, - 0.6249640629736852, - 0.6069566296119169, - 0.5916336358394697, - 0.5791507600132509, - 0.5696487400767453, - 0.5632439790426345, - 0.5600198315613906, - 0.5600198323611949, - 0.5632439814311136, - 0.5696487440220462, - 0.579150765465274, - 0.5916336427338051, - 0.606956637874428, - 0.6249640725251331, - 0.6454942908607205, - 0.6683874109840464, - 0.6934914674409173, - 0.7206668768314954, - 0.7497893845791965, - 0.7807517702852442, - 0.8134646246022226, - 0.8478564927748048, - 0.8838736358277199, - 0.9214796087723027, - 0.9606548072502227, - 1.0013960949532779, - 1.0437165955050791, - 1.08764571392727, - 1.1332294433029049, - 1.1805310107669813, - 1.2296319228816677, - 1.2806334838173596, - 1.333658881421388, - 1.3888559681550772, - 1.4464009094322063, - 1.5065029366548537, - 1.5694105350518706, - 1.6354195313462716, - 1.7048837460000668, - 1.7782291766573013, - 1.8559731464626839, - 1.938750592687877, - 2.0273508842087105, - 2.1227706075367605, - 2.226291364172375, - 2.3395982377188282, - 2.464967386030578, - 2.6055775588411527, - 2.7660588684354686, - 2.95353518115022, - 3.1798122193618936, - 3.4666603132839873, - 3.861603920454817, - 4.507224510155179, - 6.72398377733476, - 5.5515046016534635, - 4.281889201111636, - 3.7324035563872093, - 3.3743056927379413, - 3.1068721771868364, - 2.8925290317306582, - 2.7130891254761105, - 2.558353519408485, - 2.422026144431672, - 2.2999465714307505, - 2.1892222005584645, - 2.0877609922777314, - 1.994001544804679, - 1.9067482661881652, - 1.8250660875472633, - 1.7482106597301836, - 1.6755806082572144, - 1.606684001749773, - 1.5411142672566838, - 1.4785325575681512, - 1.4186546334894201, - 1.3612409763913649, - 1.3060892602808079, - 1.2530285820950882, - 1.2019150284677336, - 1.1526282794062999, - 1.1050690340988467, - 1.0591571038570362, - 1.0148300598636948, - 0.9720423538658867, - 0.9307648512470149, - 0.8909847296380677, - 0.8527057029026005, - 0.8159485294986354, - 0.7807517545189885, - 0.7471726139410786, - 0.7152879949850043, - 0.6851952952338818, - 0.657012953983256, - 0.6308803447826163, - 0.6069566288607793, - 0.5854180985686557, - 0.566453528600271, - 0.5502571565468692, - 0.5370191907450996, - 0.5269142190543037, - 0.5200885172860934, - 0.5166478702119364, - 0.5166478710658369, - 0.5200885198338024, - 0.5269142232552311, - 0.5370191965359243, - 0.550257163847121, - 0.5664535373186392, - 0.5854181086091094, - 0.6069566401278401, - 0.6308803571854531, - 0.6570129674385512, - 0.6851953096675987, - 0.7152880103332894, - 0.7471726301505364, - 0.780751771546545, - 0.8159485473111733, - 0.8527057214764923, - 0.8909847489587065, - 0.9307648713083954, - 0.9720423746702939, - 1.01483008142152, - 1.0591571261867396, - 1.1050690572270985, - 1.1526283033683067, - 1.2019150533077863, - 1.2530286078673605, - 1.3060892870504537, - 1.3612410042359826, - 1.418654662500969, - 1.4785325878554472, - 1.5411142989486506, - 1.6066840349996925, - 1.675580643248335, - 1.7482106966832038, - 1.8250661267304606, - 1.9067483079313507, - 1.994001589518825, - 2.0877610404832363, - 2.189222252927064, - 2.299946628849747, - 2.422026208106453, - 2.558353591034385, - 2.71308920754465, - 2.8925291281195964, - 3.1068722944214215, - 3.374305843109324, - 3.7324037675791537, - 4.281889560313908, - 5.551505857056109, - 5.0544233193020895, - 4.1094192113248225, - 3.6252309207362226, - 3.2951491517287574, - 3.0432296381835173, - 2.8386939395335244, - 2.6659773609259836, - 2.5161073172171813, - 2.3834377578104973, - 2.2641847320221236, - 2.15568859857574, - 2.0560090320387423, - 1.9636875199845545, - 1.877600560893244, - 1.7968649498007767, - 1.7207744560476717, - 1.648756201648296, - 1.5803398374264404, - 1.5151352853985025, - 1.4528163683599773, - 1.393108582524398, - 1.3357798499471005, - 1.2806334586070303, - 1.2275026412255134, - 1.1762464070342245, - 1.1267463525561927, - 1.0789042557761368, - 1.0326403140024123, - 0.9878919263606651, - 0.9446129517134447, - 0.9027733946165215, - 0.8623594871389141, - 0.8233741433130226, - 0.785837764864794, - 0.7497893697000677, - 0.7152879949850043, - 0.6824142896306109, - 0.651272150372596, - 0.6219901650808726, - 0.5947225028428967, - 0.5696487377095649, - 0.5469719348397193, - 0.5269142173739328, - 0.5097090615173112, - 0.49558985681925893, - 0.4847749209497889, - 0.4774501637602751, - 0.4737517275877633, - 0.4737517285061717, - 0.47745016649730054, - 0.4847749254529208, - 0.49558986300743013, - 0.5097090692889967, - 0.526914226615973, - 0.5469719454354642, - 0.5696487495454675, - 0.5947225158132339, - 0.6219901790906921, - 0.6512721653392232, - 0.6824143054841019, - 0.7152880116679229, - 0.749789387166871, - 0.7858377830810453, - 0.823374162254579, - 0.8623595067911749, - 0.9027734149737965, - 0.9446129727784716, - 0.987891948144299, - 1.0326403365234873, - 1.0789042790615242, - 1.1267463766410564, - 1.1762464319625043, - 1.227502667050655, - 1.280633485393005, - 1.335779877769779, - 1.3931086114733513, - 1.4528163985408225, - 1.5151353169359574, - 1.5803398704683032, - 1.6487562363706836, - 1.7207744926619803, - 1.7968649885630714, - 1.8776006021171192, - 1.9636875640591278, - 2.0560090794544, - 2.1556886499620145, - 2.264184788205225, - 2.383437819904148, - 2.5161073867728865, - 2.665977440196376, - 2.8386940319689726, - 3.043229749463249, - 3.295149292206222, - 3.6252311125059826, - 4.109419516761496, - 5.0544240906214055, - 4.745089491653391, - 3.9725610266909834, - 3.5352761002389737, - 3.2270122295445116, - 2.9876516774901853, - 2.791237649298063, - 2.624171403640906, - 2.4784320158283295, - 2.348890031305252, - 2.232065977258844, - 2.125491142086996, - 2.0273508400365374, - 1.9362724644486884, - 1.8511930915950288, - 1.771273311006716, - 1.6958391901285463, - 1.624342042300958, - 1.5563298427462362, - 1.49142648975609, - 1.4293164872025135, - 1.3697334611336858, - 1.3124514465571422, - 1.2572782169641383, - 1.2040501509442416, - 1.1526282799387888, - 1.102895264564627, - 1.054753120008273, - 1.0081215638924135, - 0.9629368992853327, - 0.9191513753772225, - 0.8767329914239219, - 0.8356657272980186, - 0.7959501967514254, - 0.7576047264697695, - 0.7206668628881931, - 0.6851952952338818, - 0.651272150372596, - 0.6190055524834853, - 0.5885322348602173, - 0.5600198275623686, - 0.5336682138555049, - 0.5097090606537907, - 0.4884023382009758, - 0.47002848228703453, - 0.45487504032963366, - 0.44321744705819277, - 0.435295140705675, - 0.43128630760037334, - 0.431286308596604, - 0.4352951436702152, - 0.4432174519218521, - 0.45487504698702463, - 0.4700284906086276, - 0.48840234804561833, - 0.5097090718795585, - 0.5336682263277883, - 0.5600198411590434, - 0.5885322494743336, - 0.6190055680241373, - 0.651272166764616, - 0.6851953124168777, - 0.7206668808152962, - 0.7576047451063295, - 0.7959502160737997, - 0.8356657472925207, - 0.8767330120859707, - 0.9191513967107017, - 0.962936921302165, - 1.008121586612338, - 1.05475314345884, - 1.1028952887813983, - 1.1526283049657737, - 1.2040501768345724, - 1.2572782437810346, - 1.3124514743752107, - 1.3697334900406297, - 1.4293165173013547, - 1.4914265211680582, - 1.5563298756145245, - 1.6243420767956531, - 1.6958392264531528, - 1.7712733494069257, - 1.851193132370678, - 1.936272507970405, - 2.0273508867694163, - 2.125491192625204, - 2.232066032377761, - 2.3488900920430247, - 2.4784320836192357, - 2.624171480545757, - 2.791237738430751, - 2.9876517838818897, - 3.2270123621234372, - 3.5352762772548623, - 3.9725612956163205, - 4.745090062994907, - 7.140956639559867, - 4.526739420273301, - 3.861603690710847, - 3.4592855783622163, - 3.1682983401588536, - 2.9391931563960045, - 2.749535258446049, - 2.5872271657811186, - 2.4449957771752175, - 2.3181258226042063, - 2.203385603523983, - 2.098463560323539, - 2.001649344209144, - 1.9116421894134197, - 1.8274301077140274, - 1.7482106608672, - 1.6733372552422543, - 1.6022817042616941, - 1.5346075006956095, - 1.4699503414701685, - 1.4080036881842368, - 1.3485079041856227, - 1.2912419858073858, - 1.2360172135437404, - 1.1826722531845713, - 1.1310693755542156, - 1.0810915598789985, - 1.032640314551707, - 0.9856340995281264, - 0.9400072729021063, - 0.8957095144215137, - 0.8527057035017582, - 0.8109762502995312, - 0.7705178963109778, - 0.7313450153331803, - 0.693491454490829, - 0.657012953983256, - 0.6219901650808726, - 0.5885322348602173, - 0.556780821620105, - 0.5269142165337475, - 0.49915093938320393, - 0.47375172391412923, - 0.45101823469751406, - 0.43128630461168194, - 0.4149112981161961, - 0.4022439631294623, - 0.3935974069853932, - 0.3892095869081756, - 0.3892095879996664, - 0.39359741022702016, - 0.40224396842800497, - 0.4149113053321654, - 0.4312863135777561, - 0.4510182452365349, - 0.4737517358534393, - 0.4991509525641779, - 0.5269142308169001, - 0.5567808368868825, - 0.5885322510126617, - 0.6219901820401278, - 0.6570129716875913, - 0.6934914728935861, - 0.7313450344008756, - 0.7705179160216629, - 0.810976270641447, - 0.8527057244722818, - 0.8957095360263863, - 0.9400072951549154, - 0.9856341224500271, - 1.032640338171371, - 1.0810915842327864, - 1.1310694006865785, - 1.182672279148695, - 1.2360172404024676, - 1.2912420136344633, - 1.3485079330673355, - 1.4080037182215328, - 1.469950372781413, - 1.5346075334201545, - 1.6022817385645491, - 1.6733372913202498, - 1.7482106989572368, - 1.8274301481042865, - 1.9116422324588922, - 2.0016493903536103, - 2.098463610131498, - 2.2033856577284348, - 2.3181258821807726, - 2.444995843462152, - 2.5872272406840833, - 2.7495353448113207, - 2.9391932587510436, - 3.1682984663604885, - 3.4592857439206, - 3.861603933508449, - 4.5267398834380534, - 7.140962844841784, - 5.936527629641392, - 4.362948960205523, - 3.7705637837654664, - 3.3949690947952647, - 3.1178104880942676, - 2.897119052102194, - 2.7130891284424434, - 2.5547851736811853, - 2.415526839646475, - 2.2909327627834406, - 2.1779735350456226, - 2.074467154044517, - 1.9787899436739464, - 1.88970117268102, - 1.8062316121560542, - 1.727609963111188, - 1.6532127028229973, - 1.5825289523134312, - 1.5151352864675691, - 1.4506773087122515, - 1.3888559418457913, - 1.3294170805319805, - 1.2721436898707044, - 1.2168497195175976, - 1.1633753926101145, - 1.1115835581957214, - 1.061356886370601, - 1.012595750418678, - 0.965216688625989, - 0.9191513759538029, - 0.8743460663817566, - 0.8307614932983164, - 0.7883732398137231, - 0.7471726145894573, - 0.7071680921766818, - 0.6683873990926584, - 0.6308803447826163, - 0.5947225028428967, - 0.5600198275623686, - 0.5269142165337475, - 0.49558985505121034, - 0.4662798305831774, - 0.4392718941597252, - 0.41491129708534386, - 0.3935974048243085, - 0.3757696986741429, - 0.3618788479499113, - 0.35234133643690624, - 0.3474826643813643, - 0.3474826655916147, - 0.3523413400216059, - 0.3618788537800206, - 0.3757697065611322, - 0.39359741454918995, - 0.4149113084247237, - 0.4392719069042798, - 0.46627984454797494, - 0.4955898700796257, - 0.5269142324972714, - 0.5600198443582611, - 0.5947225203909997, - 0.6308803630220823, - 0.6683874179789804, - 0.7071681116791679, - 0.7471726346891846, - 0.7883732605019335, - 0.8307615145752066, - 0.8743460882556156, - 0.9191513984404436, - 0.9652167117484418, - 1.0125957742071292, - 1.0613569108625527, - 1.1115835834363823, - 1.163375418653033, - 1.216849746425556, - 1.2721437177169292, - 1.3294171094017242, - 1.3888559718383775, - 1.4506773399437194, - 1.5151353190740908, - 1.5825289864557668, - 1.6532127386923592, - 1.7276100009370587, - 1.8062316522167747, - 1.8897012153183954, - 1.9787899893138285, - 2.0744672032265448, - 2.1779735884674754, - 2.290932821368966, - 2.4155269046550885, - 2.5547852468925405, - 2.713089212488538, - 2.89711915111487, - 3.11781060911189, - 3.3949692513237126, - 3.770564007201034, - 4.362949356416787, - 5.936529504175407, - 5.449964500555572, - 4.2360776763275485, - 3.6955178367024692, - 3.34066650930121, - 3.0746362616241445, - 2.8608520034745464, - 2.681500569715847, - 2.5265534555227007, - 2.3898023011707203, - 2.267135436822376, - 2.155688600631192, - 2.0533864355087204, - 1.958677072379201, - 1.8703697683903628, - 1.7875310339629622, - 1.7094156653243313, - 1.6354195000451224, - 1.5650461814403984, - 1.4978832386164724, - 1.4335845298776826, - 1.3718571379102966, - 1.3124514476068805, - 1.2551535455286595, - 1.199779346144409, - 1.146170027843015, - 1.0941884834869513, - 1.0437165758032223, - 0.9946530497827515, - 0.9469120007092249, - 0.9004218330499465, - 0.855124676192576, - 0.810976250915953, - 0.7679462079859573, - 0.7260189894597918, - 0.6851952959212017, - 0.6454942801004937, - 0.6069566288607793, - 0.5696487377095649, - 0.5336682138555049, - 0.49915093938320393, - 0.4662798305831774, - 0.4352951377411347, - 0.4065054614531704, - 0.38029735967214606, - 0.35713925382580364, - 0.33757248547915875, - 0.32218020573053435, - 0.3115267025206153, - 0.30607013199021643, - 0.30607013335199773, - 0.3115267065388745, - 0.32218021222063664, - 0.33757249418011515, - 0.3571392644473369, - 0.38029737193223134, - 0.4065054751003995, - 0.43529515256383533, - 0.466279846409948, - 0.49915095607910437, - 0.5336682313167023, - 0.5696487558579489, - 0.6069566476392136, - 0.6454942994689027, - 0.6851953158534769, - 0.7260190099414187, - 0.7679462290122372, - 0.8109762724907119, - 0.8551246983272696, - 0.9004218557630949, - 0.9469120240261171, - 0.9946530737354005, - 1.0437166004305434, - 1.0941885088351608, - 1.1461700539662647, - 1.1997793731056743, - 1.2551535734009265, - 1.312451476474688, - 1.371857167871724, - 1.4335845610469056, - 1.4978832711270573, - 1.5650462154495788, - 1.635419535739415, - 1.7094157029269987, - 1.7875310737440855, - 1.8703698106806874, - 1.9586771175895694, - 2.0533864841580303, - 2.155688653387768, - 2.2671354945672957, - 2.3898023650987255, - 2.526553527311034, - 2.6815006518244253, - 2.860852099722619, - 3.074636378418048, - 3.340666658652607, - 3.69551804546081, - 4.236078027727296, - 5.449965660539678, - 5.157886659013344, - 4.136293726117703, - 3.6337781254395676, - 3.2951491580423515, - 3.0380724817143254, - 2.829935911860051, - 2.6544494110466488, - 2.502294836832244, - 2.367639606287306, - 2.2465893426310117, - 2.1364140453274407, - 2.035125663829656, - 1.9412314352183813, - 1.85358193668654, - 1.7712733127261282, - 1.6935820413984373, - 1.619920060371806, - 1.549803082973383, - 1.482827719815991, - 1.4186546355993508, - 1.35699594016408, - 1.2976056138672545, - 1.2402721505561356, - 1.1848128521191805, - 1.1310693766236781, - 1.0789042574006986, - 1.02819819168108, - 0.9788479563589043, - 0.9307648529665618, - 0.8838736193673092, - 0.8381117759584824, - 0.7934294025088684, - 0.7497893709939049, - 0.7071680928491815, - 0.6655568791483961, - 0.6249640629736852, - 0.5854180985686557, - 0.5469719348397193, - 0.5097090606537907, - 0.47375172391412923, - 0.4392718941597252, - 0.4065054614531704, - 0.37576969754743034, - 0.3474826607506133, - 0.3221802044325138, - 0.30052073419414854, - 0.2832604784886922, - 0.27117824054213524, - 0.26494107139423284, - 0.2649410729552395, - 0.27117824512251154, - 0.28326048581325547, - 0.3005207438918477, - 0.3221802161146977, - 0.34748267406336697, - 0.37576971219469574, - 0.4065054771999732, - 0.43927191082568084, - 0.47375174136389003, - 0.5097090787877233, - 0.5469719535860371, - 0.5854181178772202, - 0.6249640828113076, - 0.6655568994953507, - 0.7071681136966664, - 0.74978939234222, - 0.7934294243661426, - 0.8381117983398276, - 0.8838736422943101, - 0.930764876467036, - 0.9788479804669071, - 1.02819821643712, - 1.078904282852168, - 1.131069402825503, - 1.1848128791347161, - 1.240272178458341, - 1.297605642740215, - 1.356995970104947, - 1.4186546667208306, - 1.4828277522495386, - 1.5498031168733388, - 1.619920095920802, - 1.6935820788145721, - 1.7712733522726125, - 1.8535819786849241, - 1.9412314800670463, - 2.0351257120303234, - 2.1364140975242174, - 2.246589399669849, - 2.367639669310157, - 2.5022949074334035, - 2.654449491548058, - 2.8299360058336855, - 3.0380725950759606, - 3.2951493016766125, - 3.6337783229293885, - 4.136294046068338, - 5.157887530236954, - 4.960443770623403, - 4.057613613930194, - 3.583447587104976, - 3.2574957854564697, - 3.007574367577088, - 2.804010169970582, - 2.6316790435198647, - 2.4818174078217883, - 2.348890034380582, - 2.229176196872615, - 2.1200539955753515, - 2.0196060834942706, - 1.9263877803988525, - 1.8392833939780424, - 1.75741332074569, - 1.6800718106386772, - 1.6066840044751758, - 1.5367755050717882, - 1.469950343062266, - 1.4058747122260917, - 1.344264762026959, - 1.284877302940496, - 1.2275026433336882, - 1.17195901486541, - 1.1180882033617108, - 1.0657521121127758, - 1.0148300620747541, - 0.9652166897539135, - 0.9168203460322344, - 0.8695619330287243, - 0.8233741451460765, - 0.7782011079589188, - 0.7339984376750536, - 0.6907337780368509, - 0.6483879151313202, - 0.6069566296119169, - 0.566453528600271, - 0.5269142173739328, - 0.4884023382009758, - 0.45101823469751406, - 0.41491129708534386, - 0.38029735967214606, - 0.3474826607506133, - 0.31689525495789816, - 0.2891219565334662, - 0.2649410682722212, - 0.24532495746247335, - 0.23136503801476188, - 0.22407142606713937, - 0.22407142790067777, - 0.231365043347848, - 0.2453249658636803, - 0.2649410791992627, - 0.2891219694647375, - 0.31689526945806273, - 0.3474826764838676, - 0.3802973763904443, - 0.4149113146098401, - 0.4510182529012765, - 0.48840235699529355, - 0.5269142366981983, - 0.5664535484147442, - 0.6069566498926261, - 0.6483879358664958, - 0.6907337992244512, - 0.7339984593210674, - 0.7782011300762282, - 0.8233741677537405, - 0.8695619561515808, - 0.9168203697007572, - 0.9652167140042913, - 1.0148300869491675, - 1.0657521376598722, - 1.118088229637285, - 1.1719590419333117, - 1.227502671267004, - 1.2848773318230544, - 1.3442647919552406, - 1.4058747433116672, - 1.4699503754349088, - 1.5367755388834967, - 1.6066840399054179, - 1.6800718479013237, - 1.75741336009832, - 1.8392834357346652, - 1.9263878249476418, - 2.0196061313229046, - 2.1200540473081957, - 2.2291762533271022, - 2.34889009665602, - 2.4818174774458934, - 2.631679122704758, - 2.804010262093613, - 3.0075744781738734, - 3.257495924558253, - 3.583447775914902, - 4.0576139112111065, - 4.960444489337579, - 4.820682578168151, - 3.9961845732499466, - 3.5431630934164446, - 3.227012236992766, - 2.982720473065285, - 2.782791148726728, - 2.612985366437257, - 2.4649673263165166, - 2.333433700333891, - 2.2148002809134213, - 2.1065306746031354, - 2.0067637254435384, - 1.9140931075176206, - 1.827430110055492, - 1.745914567938315, - 1.6688549921427398, - 1.5956871204414118, - 1.5259444845888457, - 1.4592370470953537, - 1.3952353963893243, - 1.3336588577992403, - 1.2742664196464024, - 1.2168497211004186, - 1.16122757670798, - 1.1072416660037454, - 1.0547531221897213, - 1.0036398282261398, - 0.9537942825065628, - 0.9051219366800339, - 0.8575399400628112, - 0.8109762521487964, - 0.7653691101014535, - 0.7206668648800935, - 0.6768282314478553, - 0.6338230402255162, - 0.5916336358394697, - 0.5502571565468692, - 0.5097090615173112, - 0.47002848228703453, - 0.43128630461168194, - 0.3935974048243085, - 0.35713925382580364, - 0.3221802044325138, - 0.2891219565334662, - 0.258560633586142, - 0.2313650362370665, - 0.20874724546808932, - 0.19224306486818324, - 0.1834498184925251, - 0.18344982071978944, - 0.19224307125135376, - 0.2087472552871436, - 0.23136504868093405, - 0.25856064796596107, - 0.28912197233835357, - 0.3221802213067799, - 0.3571392715283595, - 0.3935974231935283, - 0.4312863235400602, - 0.47002850170408517, - 0.5097090813782852, - 0.5502571768253464, - 0.5916336565224758, - 0.6338230613102863, - 0.6768282529397, - 0.720666886790997, - 0.7653691324491857, - 0.8109762749563983, - 0.857539963358355, - 0.9051219604966066, - 0.9537943068824415, - 1.0036398532051425, - 1.0547531478217356, - 1.1072416923454473, - 1.161227603823765, - 1.216849749063591, - 1.2742664485406758, - 1.3336588877206277, - 1.395235427448538, - 1.4592370794208573, - 1.525944518330786, - 1.5956871557767316, - 1.6688550292819246, - 1.7459146071344254, - 1.8274301516164841, - 1.9140931518234812, - 2.0067637729706975, - 2.106530725960188, - 2.2148003368950837, - 2.3334337620056504, - 2.4649673951535607, - 2.6129854445656555, - 2.7827912393726955, - 2.9827205814729374, - 3.227012372550993, - 3.5431632755905715, - 3.996184854035849, - 4.820683205761709, - 4.721070602881184, - 3.9494429152923316, - 3.5119399701080822, - 3.203178118792255, - 2.9631881449193194, - 2.766058791276322, - 2.5982085877722065, - 2.451623381547492, - 2.321175723609877, - 2.203385607043752, - 2.095782220255484, - 1.9965476673873646, - 1.9043052369291162, - 1.8179870973340901, - 1.7367481487330854, - 1.659907964051467, - 1.5869105008909328, - 1.5172954344887217, - 1.4506773108296402, - 1.3867300955758695, - 1.3251755294706895, - 1.2657742228762607, - 1.2083187573330403, - 1.1526282826012344, - 1.0985442460691177, - 1.0459269934570408, - 0.9946530514538663, - 0.9446129545600699, - 0.8957095167571756, - 0.8478564783500244, - 0.8009774828864277, - 0.7550053612943652, - 0.7098817230519306, - 0.6655568805516342, - 0.6219901672929493, - 0.5791507600132509, - 0.5370191907450996, - 0.49558985681925893, - 0.45487504032963366, - 0.4149112981161961, - 0.3757696986741429, - 0.33757248547915875, - 0.30052073419414854, - 0.2649410682722212, - 0.2313650362370665, - 0.20066037380802473, - 0.1742236977645559, - 0.15415856085553475, - 0.143093506106247, - 0.14309350894917744, - 0.15415856878082013, - 0.1742237094777581, - 0.2006603880929954, - 0.23136505223632456, - 0.26494108544328654, - 0.3005207522041604, - 0.337572504124065, - 0.37576971782825924, - 0.4149113177023977, - 0.4548750603018068, - 0.4955898771518207, - 0.5370192114266168, - 0.5791507810424826, - 0.621990188676358, - 0.6655569023018271, - 0.7098817451866942, - 0.7550053838361062, - 0.8009775058619043, - 0.8478565017902925, - 0.8957095406977099, - 0.9446129790410477, - 0.9946530765205923, - 1.045927019160535, - 1.0985442724668735, - 1.152628309758175, - 1.2083187853227233, - 1.2657742517823756, - 1.3251755593889378, - 1.3867301266163359, - 1.4506773431198015, - 1.5172954681773068, - 1.5869105361529388, - 1.6599080010947587, - 1.7367481878072195, - 1.8179871387423272, - 1.9043052810450938, - 1.996547714678801, - 2.095782271318781, - 2.2033856626561112, - 2.321175784810785, - 2.451623449771931, - 2.5982086650807354, - 2.76605888078093, - 2.9631882516459673, - 3.203178251656028, - 3.511940147322102, - 3.9494431841919186, - 4.7210711728855985, - 4.652180583089688, - 3.91566549050163, - 3.489074646889534, - 3.1856108403011962, - 2.9487362562443544, - 2.7536469126478864, - 2.58722717119579, - 2.4416929197223483, - 2.312043321944562, - 2.194873746671013, - 2.087760997560526, - 1.988918677415203, - 1.896991685434909, - 1.810927451742663, - 1.7298919009488336, - 1.653212705582179, - 1.5803398412181293, - 1.5108174763086006, - 1.444263501013856, - 1.3803543334392459, - 1.318813452417023, - 1.259402613615008, - 1.2019150321673158, - 1.1461700299755249, - 1.0920087905001261, - 1.0392909632374585, - 0.9878919297119937, - 0.9377005926392686, - 0.8886175864468423, - 0.8405538350049235, - 0.7934294043823493, - 0.7471726171829705, - 0.701719412763051, - 0.6570129568159502, - 0.6130035276626428, - 0.5696487400767453, - 0.5269142190543037, - 0.4847749209497889, - 0.44321744705819277, - 0.4022439631294623, - 0.3618788479499113, - 0.32218020573053435, - 0.2832604784886922, - 0.24532495746247335, - 0.20874724546808932, - 0.1742236977645559, - 0.14309350326331646, - 0.1179334917738295, - 0.1031017165899279, - 0.10310172052268379, - 0.11793350209956592, - 0.14309351747796858, - 0.17422371416303875, - 0.20874726314238629, - 0.245324975945129, - 0.2832604975325566, - 0.32218022520084083, - 0.3618788677722818, - 0.40224398326392363, - 0.4432174674855606, - 0.4847749416641949, - 0.52691424005894, - 0.5696487613813704, - 0.6130035492821045, - 0.6570129787693255, - 0.7017194350731715, - 0.7471726398762109, - 0.7934294274886103, - 0.8405538585577578, - 0.8886176104837102, - 0.9377006172019173, - 0.9878919548469554, - 1.0392909889966915, - 1.0920088169418065, - 1.1461700571650297, - 1.2019150601784392, - 1.259402642531463, - 1.318813482334316, - 1.3803543644670264, - 1.4442635332788945, - 1.5108175099586014, - 1.5803398764266712, - 1.6532127425552139, - 1.7298919399333532, - 1.8109274930384893, - 1.8969917294110308, - 1.988918724532968, - 2.08776104840743, - 2.194873802011484, - 2.312043382799183, - 2.441692987496954, - 2.587227247903645, - 2.753647001318965, - 2.9487363617491456, - 3.185610971220776, - 3.4890748205694795, - 3.9156657511528192, - 4.652181116495821, - 4.608667030835196, - 3.893717415299307, - 3.474082748935588, - 3.174041378481284, - 2.9391931646314666, - 2.745436280133316, - 2.579953447800392, - 2.4351088534702843, - 2.3059836569158394, - 2.189222206842697, - 2.0824323279563615, - 1.9838481854790624, - 1.89212880803987, - 1.8062316156395954, - 1.7253297548428241, - 1.648756206057488, - 1.5759648880697517, - 1.506502911035838, - 1.4399903504309857, - 1.3761052210744735, - 1.3145721253636744, - 1.2551535481581189, - 1.1976430914214387, - 1.1418601529991712, - 1.0876456960992709, - 1.03485885362249, - 0.9833741796905038, - 0.9330794092406123, - 0.8838736217187966, - 0.8356657309333825, - 0.7883732429483007, - 0.7419212396202101, - 0.6962415587051884, - 0.6512721539360786, - 0.6069566318653293, - 0.5632439790426345, - 0.5200885172860934, - 0.4774501637602751, - 0.435295140705675, - 0.3935974069853932, - 0.35234133643690624, - 0.3115267025206153, - 0.27117824054213524, - 0.23136503801476188, - 0.19224306486818324, - 0.15415856085553475, - 0.1179334917738295, - 0.08576242627062088, - 0.06390612467377184, - 0.06390613100478745, - 0.08576244043877798, - 0.1179335089833897, - 0.15415857934786806, - 0.19224308401769413, - 0.23136505756941134, - 0.2711782603904324, - 0.3115267226119113, - 0.35234135675020417, - 0.3935974275156974, - 0.4352951614574557, - 0.47745018474413736, - 0.5200885385170002, - 0.5632440005389483, - 0.6069566536483126, - 0.6512721760296702, - 0.6962415811359584, - 0.74192126241744, - 0.7883732661441721, - 0.8356657545632487, - 0.8838736458215406, - 0.9330794338591033, - 0.9833742048721501, - 1.0348588794199185, - 1.0876457225711487, - 1.1418601802112065, - 1.1976431194476067, - 1.2551535770821696, - 1.3145721552810012, - 1.3761052520944528, - 1.439990382679935, - 1.5065029446607963, - 1.5759649232433735, - 1.648756242984472, - 1.7253297937684822, - 1.806231656861497, - 1.892128851923957, - 1.983848232482511, - 2.0824323786608376, - 2.189222262004289, - 2.305983717542794, - 2.4351089209494714, - 2.579953524114385, - 2.7454363682590732, - 2.939193269339499, - 3.1740415081394953, - 3.474082920342476, - 3.893717670739087, - 4.608667542392035, - 4.587573855895887, - 3.882907296743962, - 3.4666601704565716, - 3.16829835150282, - 2.93444858954733, - 2.7413498640151603, - 2.576330566315728, - 2.4318275634702347, - 2.30296231053544, - 2.186403274738974, - 2.0797735795330117, - 1.9813175430510304, - 1.8897011768847054, - 1.8038868415425893, - 1.7230512568391514, - 1.6465300299314354, - 1.5737790308080468, - 1.5043468244807434, - 1.4378545659080364, - 1.373981056802522, - 1.312451450756096, - 1.2530285868287707, - 1.1955062495779183, - 1.139703862951226, - 1.08546226641886, - 1.0326403183967683, - 0.9811121394789297, - 0.9307648558324734, - 0.8814967375337396, - 0.8332156517488596, - 0.7858377692618201, - 0.7392864768332528, - 0.6934914585803305, - 0.6483879179913444, - 0.6039159191106741, - 0.5600198315613906, - 0.5166478702119364, - 0.4737517275877633, - 0.43128630760037334, - 0.3892095869081756, - 0.3474826643813643, - 0.30607013199021643, - 0.26494107139423284, - 0.22407142606713937, - 0.1834498184925251, - 0.143093506106247, - 0.1031017165899279, - 0.06390612467377184, - 0.028571900244239366, - 0.028571914389264437, - 0.06390614366681681, - 0.10310173625370585, - 0.14309352600675918, - 0.18344983853790928, - 0.22407144623606148, - 0.2649410916873102, - 0.3060701524169364, - 0.3474826849556196, - 0.3892096076465023, - 0.4312863285212127, - 0.4737517487111579, - 0.5166478915594434, - 0.5600198531561098, - 0.6039159409773518, - 0.6483879401565317, - 0.6934914810725892, - 0.7392864996834035, - 0.785837792503244, - 0.8332156754178531, - 0.8814967616699292, - 0.9307648804793125, - 0.9811121646842826, - 1.0326403442136103, - 1.0854622929061144, - 1.1397038901747747, - 1.1955062776118361, - 1.2530286157568313, - 1.3124514806736416, - 1.3739810878187984, - 1.4378545981491393, - 1.5043468580933845, - 1.5737790659644242, - 1.6465300668356284, - 1.7230512957356419, - 1.8038868827278305, - 1.8897012207231327, - 1.9813175899977549, - 2.07977363016682, - 2.1864033298118297, - 2.302962371049506, - 2.4318276308030313, - 2.5763306424347308, - 2.7413499518712983, - 2.93444869386219, - 3.168298480540447, - 3.4666603407507965, - 3.882907549658957, - 4.5875743571990535, - 4.58757386106396, - 3.8829072994062264, - 3.466660172287692, - 3.1682983529208153, - 2.9344485907194064, - 2.7413498650250014, - 2.576330567211246, - 2.4318275642814733, - 2.302962311282527, - 2.1864032754360982, - 2.0797735801905937, - 1.9813175436769863, - 1.8897011774852317, - 1.8038868421226633, - 1.7230512574028685, - 1.646530030482244, - 1.5737790313489144, - 1.5043468250142775, - 1.4378545664365792, - 1.3739810573282214, - 1.312451451280965, - 1.2530285873547355, - 1.1955062501068603, - 1.1397038634850207, - 1.0854622669594163, - 1.032640318946063, - 0.9811121400390486, - 0.9307648564056559, - 0.8814967381224271, - 0.8332156523557568, - 0.7858377698899668, - 0.7392864774861143, - 0.6934914592619141, - 0.6483879187063506, - 0.6039159198646975, - 0.5600198323611949, - 0.5166478710658369, - 0.4737517285061717, - 0.431286308596604, - 0.3892095879996664, - 0.3474826655916147, - 0.30607013335199773, - 0.2649410729552395, - 0.22407142790067777, - 0.18344982071978944, - 0.14309350894917744, - 0.10310172052268379, - 0.06390613100478745, - 0.028571914389264437, - 0.028571928534282504, - 0.06390614999783055, - 0.10310174018646098, - 0.14309352884969082, - 0.18344984076517337, - 0.22407144806959978, - 0.26494109324831594, - 0.3060701537787176, - 0.34748268616586986, - 0.38920960873799304, - 0.4312863295174432, - 0.4737517496295661, - 0.5166478924133434, - 0.5600198539559138, - 0.6039159417313751, - 0.6483879408715378, - 0.6934914817541727, - 0.7392865003362648, - 0.7858377931313909, - 0.8332156760247503, - 0.8814967622586166, - 0.9307648810524948, - 0.9811121652444015, - 1.0326403447629047, - 1.0854622934466704, - 1.13970389070857, - 1.195506278140778, - 1.2530286162827964, - 1.3124514811985108, - 1.373981088344498, - 1.437854598677682, - 1.5043468586269182, - 1.5737790665052915, - 1.6465300673864371, - 1.723051296299359, - 1.8038868833079043, - 1.889701221323659, - 1.981317590623711, - 2.079773630824402, - 2.1864033305089547, - 2.302962371796593, - 2.4318276316142704, - 2.576330643330248, - 2.7413499528811394, - 2.934448695034267, - 3.168298481958442, - 3.466660342581917, - 3.882907552321219, - 4.5875743623671275, - 4.608667046656536, - 3.8937174233658243, - 3.4740827544648405, - 3.1740413827557306, - 2.93919316816095, - 2.7454362831721353, - 2.5799534504938264, - 2.435108855909291, - 2.305983659161282, - 2.1892222089374416, - 2.08243232993186, - 1.9838481873592, - 1.8921288098433249, - 1.8062316173813655, - 1.7253297565352437, - 1.6487562077109352, - 1.5759648896931493, - 1.5065029126370262, - 1.4399903520169994, - 1.3761052226517607, - 1.3145721269382706, - 1.2551535497357944, - 1.1976430930078257, - 1.1418601545998792, - 1.087645697719998, - 1.0348588552691345, - 0.9833741813692799, - 0.9330794109581813, - 0.883873623482412, - 0.8356657327510646, - 0.7883732448290469, - 0.7419212415742583, - 0.6962415607443496, - 0.6512721560741683, - 0.6069566341187413, - 0.5632439814311136, - 0.5200885198338024, - 0.47745016649730054, - 0.4352951436702152, - 0.39359741022702016, - 0.3523413400216059, - 0.3115267065388745, - 0.27117824512251154, - 0.231365043347848, - 0.19224307125135376, - 0.15415856878082013, - 0.11793350209956592, - 0.08576244043877798, - 0.06390614366681681, - 0.06390614999783055, - 0.08576245460693273, - 0.11793351930912459, - 0.1541585872731539, - 0.19224309040086401, - 0.23136506290249695, - 0.27117826497080844, - 0.3115267266301701, - 0.35234136033490426, - 0.3935974307573241, - 0.4352951644219958, - 0.4774501874811627, - 0.5200885410647087, - 0.5632440029274277, - 0.6069566559017247, - 0.65127217816776, - 0.6962415831751193, - 0.7419212643714884, - 0.7883732680249184, - 0.8356657563809307, - 0.8838736475851559, - 0.9330794355766724, - 0.9833742065509266, - 1.0348588810665627, - 1.0876457241918758, - 1.141860181811914, - 1.1976431210339933, - 1.2551535786598451, - 1.314572156855597, - 1.3761052536717397, - 1.4399903842659487, - 1.5065029462619846, - 1.5759649248667713, - 1.648756244637919, - 1.7253297954609024, - 1.8062316586032667, - 1.8921288537274128, - 1.9838482343626487, - 2.0824323806363365, - 2.1892222640990324, - 2.305983719788237, - 2.435108923388478, - 2.5799535268078198, - 2.7454363712978918, - 2.939193272868983, - 3.174041512413941, - 3.4740829258717296, - 3.893717678805605, - 4.608667558213383, - 4.652180610584842, - 3.915665504220114, - 3.489074656227166, - 3.185610847494581, - 2.9487362621715905, - 2.753646917743925, - 2.587227175708017, - 2.4416929238051557, - 2.31204332570102, - 2.1948737501735742, - 2.087761000862273, - 1.9889186805563865, - 1.8969916884469726, - 1.8109274546508194, - 1.7298919037737988, - 1.6532127083413606, - 1.5803398439264786, - 1.5108174789792355, - 1.4442635036585312, - 1.3803543360687185, - 1.318813455041347, - 1.2594026162437766, - 1.2019150348098748, - 1.1461700326411628, - 1.0920087931982572, - 1.0392909659778025, - 0.987891932504767, - 0.9377005954953906, - 0.8886175893781676, - 0.8405538380245177, - 0.7934294075048169, - 0.7471726204248619, - 0.7017194161433725, - 0.6570129603568172, - 0.6130035313901362, - 0.5696487440220462, - 0.5269142232552311, - 0.4847749254529208, - 0.4432174519218521, - 0.40224396842800497, - 0.3618788537800206, - 0.32218021222063664, - 0.28326048581325547, - 0.2453249658636803, - 0.2087472552871436, - 0.1742237094777581, - 0.14309351747796858, - 0.1179335089833897, - 0.10310173625370585, - 0.10310174018646098, - 0.11793351930912459, - 0.14309353169262085, - 0.17422372587623983, - 0.2087472729614408, - 0.2453249843463353, - 0.2832605048571201, - 0.32218023169094334, - 0.36187887360239074, - 0.402243988562466, - 0.4432174723492197, - 0.48477494616732664, - 0.5269142442598673, - 0.5696487653266712, - 0.6130035530095981, - 0.6570129823101925, - 0.7017194384534926, - 0.7471726431181027, - 0.793429430611078, - 0.840553861577352, - 0.8886176134150353, - 0.9377006200580392, - 0.9878919576397291, - 1.0392909917370354, - 1.0920088196399371, - 1.1461700598306672, - 1.2019150628209978, - 1.259402645160232, - 1.31881348495864, - 1.380354367096499, - 1.4442635359235696, - 1.5108175126292362, - 1.580339879135021, - 1.6532127453143954, - 1.7298919427583186, - 1.8109274959466457, - 1.896991732423094, - 1.9889187276741525, - 2.0877610517091765, - 2.1948738055140464, - 2.312043386555642, - 2.441692991579762, - 2.5872272524158717, - 2.7536470064150036, - 2.948736367676382, - 3.1856109784141595, - 3.48907482990711, - 3.9156657648713056, - 4.652181143990989, - 4.7210706440155175, - 3.949442935105984, - 3.511939983446773, - 3.203178129012545, - 2.963188153313549, - 2.7660587984778418, - 2.598208594138791, - 2.4516233873013604, - 2.3211757288988446, - 2.2033856119714295, - 2.0957822248976017, - 1.9965476718012325, - 1.9043052411594155, - 1.8179871014165925, - 1.736748152697128, - 1.6599079679216615, - 1.5869105046883796, - 1.517295438231898, - 1.4506773145350682, - 1.3867300992586362, - 1.3251755331448605, - 1.2657742265552208, - 1.2083187610297907, - 1.1526282863286574, - 1.0985442498402256, - 1.0459269972852208, - 0.9946530553531348, - 0.9446129585453454, - 0.8957095208445839, - 0.8478564825572519, - 0.8009774872331398, - 0.7550053658027134, - 0.7098817277471836, - 0.6655568854629682, - 0.6219901724544618, - 0.579150765465274, - 0.5370191965359243, - 0.49558986300743013, - 0.45487504698702463, - 0.4149113053321654, - 0.3757697065611322, - 0.33757249418011515, - 0.3005207438918477, - 0.2649410791992627, - 0.23136504868093405, - 0.2006603880929954, - 0.17422371416303875, - 0.15415857934786806, - 0.14309352600675918, - 0.14309352884969082, - 0.1541585872731539, - 0.17422372587623983, - 0.20066040237796615, - 0.23136506468019125, - 0.2649410963703273, - 0.3005207619018589, - 0.3375725128250209, - 0.3757697257152481, - 0.41491132491836674, - 0.4548750669591979, - 0.4955898833399916, - 0.5370192172174417, - 0.5791507864945055, - 0.6219901938378705, - 0.665556907213161, - 0.7098817498819469, - 0.7550053883444544, - 0.8009775102086162, - 0.8478565059975198, - 0.8957095447851185, - 0.9446129830263232, - 0.9946530804198608, - 1.045927022988715, - 1.0985442762379813, - 1.1526283134855986, - 1.208318789019474, - 1.2657742554613354, - 1.3251755630631086, - 1.3867301302991033, - 1.4506773468252296, - 1.5172954719204834, - 1.5869105399503858, - 1.6599080049649535, - 1.7367481917712624, - 1.8179871428248298, - 1.904305285275393, - 1.9965477190926695, - 2.0957822759608997, - 2.203385667583789, - 2.3211757900997525, - 2.4516234555258003, - 2.59820867144732, - 2.766058887982452, - 2.9631882600401993, - 3.203178261876319, - 3.511940160660796, - 3.949443204005576, - 4.721071214019948, - 4.8206826363984625, - 3.9961845998507117, - 3.543163111046198, - 3.227012250399624, - 2.9827204840278565, - 2.782791158103896, - 2.612985374709676, - 2.4649673337807743, - 2.333433707186309, - 2.214800287291079, - 2.1065306806059083, - 2.006763731146798, - 1.914093112979987, - 1.8274301153237866, - 1.7459145730508512, - 1.6688549971315851, - 1.5956871253339946, - 1.5259444894091225, - 1.4592370518646895, - 1.3952354011271701, - 1.3336588625236696, - 1.274266424374556, - 1.2168497258488815, - 1.1612275814931183, - 1.1072416708420172, - 1.054753127097979, - 1.0036398332219405, - 0.953794287608491, - 0.905121941908062, - 0.8575399454387058, - 0.8109762576965917, - 0.765369115848013, - 0.7206668708557944, - 0.6768282376874232, - 0.6338230467690654, - 0.5916336427338051, - 0.550257163847121, - 0.5097090692889967, - 0.4700284906086276, - 0.4312863135777561, - 0.39359741454918995, - 0.3571392644473369, - 0.3221802161146977, - 0.2891219694647375, - 0.25856064796596107, - 0.23136505223632456, - 0.20874726314238629, - 0.19224308401769413, - 0.18344983853790928, - 0.18344984076517337, - 0.19224309040086401, - 0.2087472729614408, - 0.23136506468019125, - 0.25856066234577846, - 0.2891219852696242, - 0.32218023298896387, - 0.35713928214989227, - 0.3935974329184092, - 0.43128633250613396, - 0.4700285100256778, - 0.5097090891499707, - 0.5502571841255983, - 0.5916336634168106, - 0.6338230678538354, - 0.6768282591792676, - 0.7206668927666976, - 0.7653691381957454, - 0.8109762805041933, - 0.8575399687342498, - 0.9051219657246347, - 0.9537943119843695, - 1.003639858200943, - 1.0547531527299938, - 1.1072416971837191, - 1.161227608608903, - 1.2168497538120542, - 1.274266453268829, - 1.3336588924450568, - 1.3952354321863836, - 1.4592370841901936, - 1.525944523151063, - 1.5956871606693142, - 1.6688550342707704, - 1.7459146122469613, - 1.8274301568847786, - 1.9140931572858475, - 2.0067637786739567, - 2.1065307319629603, - 2.214800343272742, - 2.333433768858068, - 2.4649674026178188, - 2.612985452838073, - 2.782791248749865, - 2.98272059243551, - 3.2270123859578526, - 3.543163293220328, - 3.996184880636623, - 4.820683263992059, - 4.960443852127046, - 4.057613648352188, - 3.583447609437329, - 3.2574958022709692, - 3.0075743812463527, - 2.8040101816183216, - 2.6316790537673205, - 2.4818174170490797, - 2.3488900428377404, - 2.229176204733366, - 2.120054002965757, - 2.0196060905091366, - 1.9263877871116835, - 1.8392834004473781, - 1.7574133270192975, - 1.6800718167564246, - 1.6066840104710627, - 1.5367755109754198, - 1.4699503488999557, - 1.4058747180217077, - 1.3442647678025923, - 1.2848773087170076, - 1.2275026491311687, - 1.171959020703585, - 1.1180882092603093, - 1.0657521180918836, - 1.0148300681551665, - 0.9652166959574981, - 0.916820352382326, - 0.8695619395505557, - 0.8233741518672741, - 0.7782011149100732, - 0.7339984448903918, - 0.690733785555032, - 0.6483879229963869, - 0.606956637874428, - 0.5664535373186392, - 0.526914226615973, - 0.48840234804561833, - 0.4510182452365349, - 0.4149113084247237, - 0.38029737193223134, - 0.34748267406336697, - 0.31689526945806273, - 0.28912197233835357, - 0.26494108544328654, - 0.245324975945129, - 0.23136505756941134, - 0.22407144623606148, - 0.22407144806959978, - 0.23136506290249695, - 0.2453249843463353, - 0.2649410963703273, - 0.2891219852696242, - 0.31689528395822725, - 0.34748268979662067, - 0.380297388650529, - 0.4149113259492194, - 0.45101826344029694, - 0.4884023668399357, - 0.5269142459402381, - 0.5664535571331121, - 0.606956658155137, - 0.6483879437315623, - 0.690733806742632, - 0.7339984665364051, - 0.7782011370273824, - 0.8233741744749379, - 0.8695619626734123, - 0.9168203760508489, - 0.9652167202078764, - 1.01483009302958, - 1.0657521436389799, - 1.118088235535883, - 1.1719590477714863, - 1.227502677064485, - 1.284877337599566, - 1.3442647977308737, - 1.4058747491072832, - 1.4699503812725985, - 1.5367755447871283, - 1.6066840459013048, - 1.680071854019071, - 1.7574133663719276, - 1.8392834422040008, - 1.9263878316604732, - 2.01960613833777, - 2.1200540546986018, - 2.2291762611878534, - 2.348890105113178, - 2.481817486673185, - 2.631679132952215, - 2.804010273741353, - 3.007574491843139, - 3.2574959413727544, - 3.58344779824726, - 4.057613945633111, - 4.960444570841271, - 5.157886775775228, - 4.136293769900413, - 3.6337781530456694, - 3.2951491785615303, - 3.038072498272764, - 2.8299359259020886, - 2.654449423358629, - 2.5022948478902562, - 2.367639616402084, - 2.2465893520171494, - 2.136414054139883, - 2.0351256721844377, - 1.9412314432051292, - 1.8535819443763848, - 1.771273320176915, - 1.6935820486582844, - 1.6199200674816052, - 1.5498030899686124, - 1.4828277267280585, - 1.4186546424566262, - 1.3569959469926989, - 1.2976056206917725, - 1.2402721574000726, - 1.1848128590054934, - 1.1310693835751824, - 1.0789042644404667, - 1.028198198832825, - 0.9788479636473701, - 0.9307648604179317, - 0.8838736270096428, - 0.8381117838221985, - 0.7934294106272847, - 0.7497893794038474, - 0.7071681015916754, - 0.6655568882694447, - 0.6249640725251331, - 0.5854181086091094, - 0.5469719454354642, - 0.5097090718795585, - 0.4737517358534393, - 0.4392719069042798, - 0.4065054751003995, - 0.37576971219469574, - 0.3474826764838676, - 0.3221802213067799, - 0.3005207522041604, - 0.2832604975325566, - 0.2711782603904324, - 0.2649410916873102, - 0.26494109324831594, - 0.27117826497080844, - 0.2832605048571201, - 0.3005207619018589, - 0.32218023298896387, - 0.34748268979662067, - 0.37576972684196114, - 0.4065054908472024, - 0.439271923570235, - 0.4737517533031996, - 0.5097090900134911, - 0.5469719641817813, - 0.5854181279176736, - 0.6249640923627551, - 0.6655569086163993, - 0.70716812243916, - 0.7497894007521623, - 0.7934294324845585, - 0.8381118062035435, - 0.8838736499366434, - 0.9307648839184058, - 0.978847987755373, - 1.028198223588865, - 1.0789042898919359, - 1.131069409777008, - 1.1848128860210292, - 1.2402721853022785, - 1.297605649564733, - 1.3569959769335653, - 1.4186546735781058, - 1.4828277591616066, - 1.5498031238685679, - 1.6199201030306012, - 1.6935820860744193, - 1.7712733597233998, - 1.853581986374769, - 1.941231488053795, - 2.0351257203851056, - 2.1364141063366606, - 2.246589409055987, - 2.3676396794249355, - 2.502294918491416, - 2.6544495038600386, - 2.8299360198757233, - 3.038072611634402, - 3.2951493221957935, - 3.6337783505354952, - 4.136294089851063, - 5.157887646998927, - 5.449964679934476, - 4.236077731811712, - 3.695517870373167, - 3.340666533919571, - 3.0746362813085093, - 2.860852020069041, - 2.6815005842055952, - 2.526553468496495, - 2.3898023130092394, - 2.2671354477866013, - 2.1556886109084465, - 2.053386445238582, - 1.9586770816690031, - 1.8703697773249388, - 1.7875310426110322, - 1.7094156737428388, - 1.6354195082822665, - 1.5650461895378218, - 1.4978832466108787, - 1.4335845378020606, - 1.3718571457948827, - 1.312451455479919, - 1.2551535534170368, - 1.199779354074193, - 1.1461700358399276, - 1.0941884915768056, - 1.043716584012329, - 0.9946530581383264, - 0.9469120092397951, - 0.9004218417857728, - 0.8551246851661006, - 0.8109762601622782, - 0.7679462175433569, - 0.7260189993702567, - 0.6851953062309993, - 0.6454942908607205, - 0.6069566401278401, - 0.5696487495454675, - 0.5336682263277883, - 0.4991509525641779, - 0.46627984454797494, - 0.43529515256383533, - 0.4065054771999732, - 0.3802973763904443, - 0.3571392715283595, - 0.337572504124065, - 0.32218022520084083, - 0.3115267226119113, - 0.3060701524169364, - 0.3060701537787176, - 0.3115267266301701, - 0.32218023169094334, - 0.3375725128250209, - 0.35713928214989227, - 0.380297388650529, - 0.4065054908472024, - 0.43529516738653534, - 0.466279860374745, - 0.49915096926007785, - 0.5336682437889857, - 0.5696487676938514, - 0.6069566589062741, - 0.6454943102291292, - 0.6851953261632743, - 0.7260190198518832, - 0.7679462385696371, - 0.8109762817370367, - 0.8551247073007939, - 0.9004218644989206, - 0.9469120325566871, - 0.9946530820909758, - 1.04371660863965, - 1.0941885169250147, - 1.1461700619631778, - 1.1997793810354578, - 1.2551535812893035, - 1.3124514843477262, - 1.37185717575631, - 1.4335845689712843, - 1.497883279121463, - 1.5650462235470024, - 1.635419543976559, - 1.7094157113455064, - 1.7875310823921557, - 1.8703698196152634, - 1.958677126879371, - 2.053386493887892, - 2.155688663665022, - 2.267135505531521, - 2.3898023769372445, - 2.5265535402848296, - 2.6815006663141747, - 2.8608521163171146, - 3.0746363981024145, - 3.3406666832709715, - 3.695518079131514, - 4.236078083211472, - 5.449965839918794, - 5.936527958167716, - 4.362949031106478, - 3.7705638246085247, - 3.394969124036842, - 3.1178105112099925, - 2.897119071449498, - 2.713089145251662, - 2.554785188676282, - 2.4155268532902583, - 2.290932775390452, - 2.1779735468400574, - 2.0744671651924427, - 1.9787899543024121, - 1.889701182889969, - 1.8062316220260866, - 1.7276099727087968, - 1.6532127122042148, - 1.5825289615264422, - 1.5151352955546327, - 1.4506773177111494, - 1.3888559507909486, - 1.3294170894553554, - 1.272143698802512, - 1.2168497284869173, - 1.1633754016454128, - 1.1115835673253223, - 1.0613568956231163, - 1.0125957598234145, - 0.9652166982133477, - 0.9191513857556718, - 0.8743460764319081, - 0.8307615036328058, - 0.788373250471286, - 0.7471726256118884, - 0.7071681036091739, - 0.6683874109840464, - 0.6308803571854531, - 0.5947225158132339, - 0.5600198411590434, - 0.5269142308169001, - 0.4955898700796257, - 0.466279846409948, - 0.43927191082568084, - 0.4149113146098401, - 0.3935974231935283, - 0.37576971782825924, - 0.3618788677722818, - 0.35234135675020417, - 0.3474826849556196, - 0.34748268616586986, - 0.35234136033490426, - 0.36187887360239074, - 0.3757697257152481, - 0.3935974329184092, - 0.4149113259492194, - 0.439271923570235, - 0.466279860374745, - 0.49558988510804053, - 0.5269142467804238, - 0.5600198579549358, - 0.5947225333613367, - 0.630880375424919, - 0.6683874298703677, - 0.7071681231116599, - 0.7471726457116155, - 0.7883732711594962, - 0.8307615249096962, - 0.874346098305767, - 0.9191514082423125, - 0.9652167213358005, - 1.0125957836118658, - 1.0613569201150677, - 1.1115835925659834, - 1.1633754276883312, - 1.2168497553948756, - 1.2721437266487374, - 1.3294171183250993, - 1.3888559807835352, - 1.4506773489426168, - 1.5151353281611537, - 1.5825289956687778, - 1.6532127480735768, - 1.7276100105346677, - 1.8062316620868066, - 1.8897012255273442, - 1.9787899999422942, - 2.0744672143744722, - 2.17797360026191, - 2.290932833975979, - 2.415526918298872, - 2.5547852618876385, - 2.713089229297757, - 2.897119170462176, - 3.1178106322276173, - 3.3949692805652947, - 3.7705640480441, - 4.362949427317765, - 5.936529832702351, - 7.14095785502446, - 4.526739512906231, - 3.8616037403146555, - 3.4592856129293503, - 3.1682983671007743, - 2.9391931787494037, - 2.7495352777512254, - 2.58722718292758, - 2.4449957927240042, - 2.318125836932748, - 2.203385616899107, - 2.0984635729415553, - 2.0016493562193474, - 1.91164220093263, - 1.8274301188359832, - 1.7482106716688521, - 1.67333726578813, - 1.6022817146069994, - 1.5346075108885007, - 1.4699503515534507, - 1.408003698196669, - 1.3485079141629417, - 1.2912419957831307, - 1.236017223549933, - 1.1826722632522926, - 1.131069385714107, - 1.081091570161709, - 1.0326403249883025, - 0.9856341101504706, - 0.9400072837432185, - 0.895709525515908, - 0.8527057148857567, - 0.8109762620115432, - 0.7705179083917205, - 0.7313450278258083, - 0.6934914674409173, - 0.6570129674385512, - 0.6219901790906921, - 0.5885322494743336, - 0.5567808368868825, - 0.5269142324972714, - 0.49915095607910437, - 0.47375174136389003, - 0.4510182529012765, - 0.4312863235400602, - 0.4149113177023977, - 0.40224398326392363, - 0.3935974275156974, - 0.3892096076465023, - 0.38920960873799304, - 0.3935974307573241, - 0.402243988562466, - 0.41491132491836674, - 0.43128633250613396, - 0.45101826344029694, - 0.4737517533031996, - 0.49915096926007785, - 0.5269142467804238, - 0.5567808521536597, - 0.5885322656267775, - 0.6219901960499472, - 0.6570129851428861, - 0.693491485843674, - 0.7313450468935035, - 0.7705179281024053, - 0.8109762823534584, - 0.8527057358562802, - 0.8957095471207803, - 0.9400073059960274, - 0.9856341330723711, - 1.0326403486079667, - 1.0810915945154973, - 1.1310694108464696, - 1.1826722892164163, - 1.2360172504086602, - 1.291242023610208, - 1.3485079430446543, - 1.408003728233965, - 1.4699503828646954, - 1.534607543613046, - 1.6022817489098546, - 1.6733373018661253, - 1.7482107097588888, - 1.827430159226242, - 1.9116422439781038, - 2.001649402363814, - 2.098463622749514, - 2.2033856711035584, - 2.3181258965093137, - 2.44499585901094, - 2.5872272578305457, - 2.7495353641164995, - 2.9391932811044454, - 3.168298493302412, - 3.4592857784877378, - 3.861603983112268, - 4.526739976071029, - 7.140964060313825, - 4.745089617949909, - 3.972561087416055, - 3.535276141088791, - 3.227012260827178, - 2.987651703170942, - 2.7912376713190796, - 2.6241714230987596, - 2.4784320334037493, - 2.348890047450736, - 2.2320659922912762, - 2.1254911562376946, - 2.027350853480242, - 1.9362724773213091, - 1.8511931040050094, - 1.7712733230426028, - 1.6958392018641886, - 1.6243420537991902, - 1.556329854061549, - 1.491426500936621, - 1.4293164982915603, - 1.3697334721708827, - 1.3124514575793957, - 1.25727822800639, - 1.2040501620400976, - 1.1526282911210586, - 1.102895275865787, - 1.0547531314608753, - 1.0081215755294481, - 0.96293691114055, - 0.9191513874854136, - 0.876733003821151, - 0.8356657400217928, - 0.7959502098407761, - 0.7576047399652097, - 0.7206668768314954, - 0.6851953096675987, - 0.6512721653392232, - 0.6190055680241373, - 0.5885322510126617, - 0.5600198443582611, - 0.5336682313167023, - 0.5097090787877233, - 0.48840235699529355, - 0.47002850170408517, - 0.4548750603018068, - 0.4432174674855606, - 0.4352951614574557, - 0.4312863285212127, - 0.4312863295174432, - 0.4352951644219958, - 0.4432174723492197, - 0.4548750669591979, - 0.4700285100256778, - 0.4884023668399357, - 0.5097090900134911, - 0.5336682437889857, - 0.5600198579549358, - 0.5885322656267775, - 0.619005583564789, - 0.651272181731243, - 0.685195326850594, - 0.7206668947585982, - 0.7576047586017698, - 0.79595022916315, - 0.8356657600162947, - 0.8767330244831997, - 0.9191514088188927, - 0.962936933157382, - 1.0081215982493728, - 1.0547531549114422, - 1.1028953000825585, - 1.1526283161480433, - 1.2040501879304282, - 1.2572782548232864, - 1.3124514853974645, - 1.3697335010778264, - 1.4293165283904015, - 1.4914265323485887, - 1.5563298869298372, - 1.6243420882938846, - 1.6958392381887952, - 1.7712733614428124, - 1.8511931447806593, - 1.9362725208430263, - 2.0273509002131207, - 2.1254912067759024, - 2.232066047410193, - 2.3488901081885087, - 2.478432101194657, - 2.6241715000036114, - 2.7912377604517706, - 2.987651809562649, - 3.227012393406108, - 3.535276318104687, - 3.972561356341407, - 4.745090189291498, - 5.054423506042497, - 4.109419286862917, - 3.6252309692054996, - 3.2951491880319206, - 3.043229667602296, - 2.838693964545468, - 2.6659773828924767, - 2.516107336967566, - 2.3834377758883956, - 2.2641847488040887, - 2.1556886143341973, - 2.0560090469779224, - 1.9636875342622329, - 1.8776005746345357, - 1.7968649631072358, - 1.720774469003504, - 1.6487562143247232, - 1.5803398498848478, - 1.5151352976927643, - 1.452816380538213, - 1.3931085946303243, - 1.335779862021093, - 1.2806334706869795, - 1.2275026533475184, - 1.1762464192331699, - 1.1267463648662341, - 1.0789042682311112, - 1.032640326636186, - 0.9878919392074237, - 0.9446129648079211, - 0.9027734079941594, - 0.8623595008359444, - 0.8233741573664357, - 0.7858377793121659, - 0.7497893845791965, - 0.7152880103332894, - 0.6824143054841019, - 0.651272166764616, - 0.6219901820401278, - 0.5947225203909997, - 0.5696487558579489, - 0.5469719535860371, - 0.5269142366981983, - 0.5097090813782852, - 0.4955898771518207, - 0.4847749416641949, - 0.47745018474413736, - 0.4737517487111579, - 0.4737517496295661, - 0.4774501874811627, - 0.48477494616732664, - 0.4955898833399916, - 0.5097090891499707, - 0.5269142459402381, - 0.5469719641817813, - 0.5696487676938514, - 0.5947225333613367, - 0.6219901960499472, - 0.651272181731243, - 0.6824143213375927, - 0.7152880270162079, - 0.7497894020459994, - 0.7858377975284172, - 0.8233741763079918, - 0.8623595204882051, - 0.902773428351434, - 0.944612985872948, - 0.9878919609910574, - 1.0326403491572607, - 1.0789042915164981, - 1.1267463889510978, - 1.1762464441614497, - 1.22750267917266, - 1.280633497472954, - 1.3357798898437712, - 1.3931086235792771, - 1.4528164107190582, - 1.5151353292302199, - 1.5803398829267106, - 1.648756249047111, - 1.7207745056178128, - 1.7968650018695302, - 1.8776006158584109, - 1.963687578336806, - 2.05600909439358, - 2.1556886657204726, - 2.264184804987191, - 2.3834378379820467, - 2.5161074065232727, - 2.665977462162871, - 2.838694056980918, - 3.043229778882031, - 3.295149328509389, - 3.625231160975267, - 4.109419592299612, - 5.054424277361966, - 5.551504932022436, - 4.281889297671375, - 3.7324036144069694, - 3.37430573497709, - 3.1068722108749354, - 2.892529060080346, - 2.7130891501955494, - 2.5583535415152436, - 2.422026164581919, - 2.299946590073282, - 2.1892222180146645, - 2.0877610087864658, - 1.9940015605490962, - 1.9067482813125078, - 1.8250661021678594, - 1.7482106739428842, - 1.6755806221425797, - 1.606684015376789, - 1.541114280685483, - 1.4785325708520527, - 1.418654646676488, - 1.3612409895256183, - 1.306089273403183, - 1.2530285952442064, - 1.2019150416805278, - 1.152628292718526, - 1.1050690475455047, - 1.059157117472709, - 1.014830073682814, - 0.9720423679229186, - 0.9307648655765723, - 0.8909847442749149, - 0.8527057178815459, - 0.8159485448542713, - 0.7807517702852442, - 0.7471726301505364, - 0.7152880116679229, - 0.6851953124168777, - 0.6570129716875913, - 0.6308803630220823, - 0.6069566476392136, - 0.5854181178772202, - 0.5664535484147442, - 0.5502571768253464, - 0.5370192114266168, - 0.52691424005894, - 0.5200885385170002, - 0.5166478915594434, - 0.5166478924133434, - 0.5200885410647087, - 0.5269142442598673, - 0.5370192172174417, - 0.5502571841255983, - 0.5664535571331121, - 0.5854181279176736, - 0.6069566589062741, - 0.630880375424919, - 0.6570129851428861, - 0.685195326850594, - 0.7152880270162079, - 0.7471726463599939, - 0.7807517873128007, - 0.8159485626668089, - 0.8527057364554378, - 0.8909847635955536, - 0.9307648856379527, - 0.9720423887273261, - 1.0148300952406388, - 1.0591571398024124, - 1.1050690706737563, - 1.152628316680533, - 1.2019150665205802, - 1.2530286210164785, - 1.3060893001728289, - 1.361241017370236, - 1.4186546756880367, - 1.4785326011393494, - 1.5411143123774504, - 1.6066840486267087, - 1.6755806571337006, - 1.748210710895904, - 1.8250661413510567, - 1.9067483230556934, - 1.9940016052632423, - 2.0877610569919716, - 2.1892222703832647, - 2.299946647492279, - 2.4220262282567013, - 2.558353613141145, - 2.7130892322640907, - 2.892529156469285, - 3.1068723281095236, - 3.3743058853484778, - 3.732403825598926, - 4.281889656873681, - 5.551506187425497, - 6.723980905766376, - 4.507224194328558, - 3.861603753368288, - 3.466660199754501, - 3.179812133459371, - 2.953535112131219, - 2.7660588108233046, - 2.6055775094688194, - 2.464967342903756, - 2.3395981995020465, - 2.2262913299289866, - 2.1227705765858267, - 2.0273508560409477, - 1.9387505669136602, - 1.8559731227784977, - 1.7782291548233196, - 1.7048837258247296, - 1.6354195126754105, - 1.569410517760882, - 1.5065029206429688, - 1.446400894618241, - 1.3888559544742487, - 1.3336588688229094, - 1.280633472262625, - 1.229631912342884, - 1.1805310012261405, - 1.133229434751031, - 1.0876457063638765, - 1.0437165889377937, - 1.0013960893975913, - 0.9606548027293274, - 0.9214796053169803, - 0.8838736334762332, - 0.8478564915727397, - 0.8134646246022226, - 0.780751771546545, - 0.749789387166871, - 0.7206668808152962, - 0.6934914728935861, - 0.6683874179789804, - 0.6454942994689027, - 0.6249640828113076, - 0.6069566498926261, - 0.5916336565224758, - 0.5791507810424826, - 0.5696487613813704, - 0.5632440005389483, - 0.5600198531561098, - 0.5600198539559138, - 0.5632440029274277, - 0.5696487653266712, - 0.5791507864945055, - 0.5916336634168106, - 0.606956658155137, - 0.6249640923627551, - 0.6454943102291292, - 0.6683874298703677, - 0.693491485843674, - 0.7206668947585982, - 0.7497894020459994, - 0.7807517873128007, - 0.8134646412157993, - 0.8478565090026825, - 0.8838736517002588, - 0.9214796243212531, - 0.9606548225082439, - 1.0013961099536322, - 1.043716610281472, - 1.0876457285138148, - 1.1332294577341926, - 1.1805310250782428, - 1.2296319371090254, - 1.2806334979981695, - 1.3336588955946769, - 1.388855982362092, - 1.4464009237171012, - 1.50650295106555, - 1.5694105496411421, - 1.6354195461731318, - 1.7048837611315704, - 1.7782291921709203, - 1.8559731624495106, - 1.9387506092570175, - 2.0273509014934747, - 2.1227706257036125, - 2.2262913834342806, - 2.3395982583558905, - 2.4649674084233526, - 2.6055775835273205, - 2.7660588962127624, - 2.953535213279757, - 3.1798122580180315, - 3.4666603627242507, - 3.8616039909444506, - 4.50722463935701, - 6.723984917518634, - 4.820682714038896, - 4.0203371727834085, - 3.5752745455176247, - 3.2636881953909485, - 3.0227293235075514, - 2.8255789816763945, - 2.658281336437327, - 2.5126419272042844, - 2.383437779032377, - 2.2671354543651354, - 2.1612337612965478, - 2.0638981131230234, - 1.9737438515973464, - 1.8897011876941803, - 1.81092746337529, - 1.7367481606252133, - 1.666616073837405, - 1.6000823505860216, - 1.5367755174157451, - 1.4763860183242346, - 1.4186546482589357, - 1.3633637975359396, - 1.310330765274565, - 1.2594026246558365, - 1.2104522734919416, - 1.163375406428806, - 1.1180882162313792, - 1.074525681118696, - 1.0326403293826587, - 0.992401395509654, - 0.9537942961117043, - 0.9168203604642609, - 0.8814967498961783, - 0.8478564927748048, - 0.8159485473111733, - 0.7858377830810453, - 0.7576047451063295, - 0.7313450344008756, - 0.7071681116791679, - 0.6851953158534769, - 0.6655568994953507, - 0.6483879358664958, - 0.6338230613102863, - 0.621990188676358, - 0.6130035492821045, - 0.6069566536483126, - 0.6039159409773518, - 0.6039159417313751, - 0.6069566559017247, - 0.6130035530095981, - 0.6219901938378705, - 0.6338230678538354, - 0.6483879437315623, - 0.6655569086163993, - 0.6851953261632743, - 0.7071681231116599, - 0.7313450468935035, - 0.7576047586017698, - 0.7858377975284172, - 0.8159485626668089, - 0.8478565090026825, - 0.881496766968117, - 0.9168203783599729, - 0.9537943148187737, - 0.9924014150235032, - 1.032640349706555, - 1.0745257022638326, - 1.1180882382170636, - 1.1633754292827954, - 1.210452297250952, - 1.2594026493662613, - 1.3103307909934618, - 1.3633638243323303, - 1.4186546762155192, - 1.476386047539607, - 1.5367755480072913, - 1.600082382693686, - 1.6666161076286492, - 1.7367481963015972, - 1.8109275011813273, - 1.8897012279294498, - 1.9737438946333614, - 2.063898159427285, - 2.1612338114677394, - 2.267135509186262, - 2.3834378395540385, - 2.5126419948811605, - 2.6582814133646484, - 2.8255790710292894, - 3.022729430435371, - 3.2636883290795837, - 3.575274724897287, - 4.0203374478430876, - 4.820683315752371, - 5.3144439083246775, - 4.221236793627603, - 3.704624747975955, - 3.36073263924129, - 3.1014398571660626, - 2.8925290646162956, - 2.7170901534676495, - 2.5655171246690744, - 2.4318275788837656, - 2.312043337721686, - 2.203385622530737, - 2.1038377860182, - 2.01189094727731, - 1.9263877950450292, - 1.846422361478189, - 1.7712733270545646, - 1.7003582627498104, - 1.6332014147068452, - 1.5694105193819126, - 1.5086598036383736, - 1.4506773230046182, - 1.3952354090235806, - 1.3421433893939816, - 1.2912420005084833, - 1.2423990823003266, - 1.1955062606856972, - 1.1504764021068856, - 1.107241679443389, - 1.065752126245212, - 1.025974581522127, - 0.9878919431173065, - 0.9515026557917233, - 0.9168203616188226, - 0.8838736358277199, - 0.8527057214764923, - 0.823374162254579, - 0.7959502160737997, - 0.7705179160216629, - 0.7471726346891846, - 0.7260190099414187, - 0.7071681136966664, - 0.6907337992244512, - 0.6768282529397, - 0.6655569023018271, - 0.6570129787693255, - 0.6512721760296702, - 0.6483879401565317, - 0.6483879408715378, - 0.65127217816776, - 0.6570129823101925, - 0.665556907213161, - 0.6768282591792676, - 0.690733806742632, - 0.70716812243916, - 0.7260190198518832, - 0.7471726457116155, - 0.7705179281024053, - 0.79595022916315, - 0.8233741763079918, - 0.8527057364554378, - 0.8838736517002588, - 0.9168203783599729, - 0.9515026733836855, - 0.9878919615496119, - 1.02597460079176, - 1.0657521463567559, - 1.1072417004092334, - 1.1504764239475311, - 1.1955062834301966, - 1.2423991059868942, - 1.2912420251853258, - 1.3421434151203915, - 1.3952354358713757, - 1.4506773510600046, - 1.5086598330043683, - 1.569410550181486, - 1.6332014470870335, - 1.7003582968871274, - 1.7712733631622244, - 1.8464223998158644, - 1.9263878359322748, - 2.0118909911123946, - 2.103837833305166, - 2.2033856739193736, - 2.3120433940685574, - 2.431827641349133, - 2.565517194878373, - 2.717090233797029, - 2.8925291587372604, - 3.1014399711939036, - 3.360732784519189, - 3.704624949403784, - 4.221237125557934, - 5.3144448819416095, - 6.430175105706745, - 4.488066348759137, - 3.861603763811192, - 3.4740827876403664, - 3.1914379112529985, - 2.968042724027248, - 2.7827911737325106, - 2.6241714305112755, - 2.485210598414374, - 2.3613648675412247, - 2.249509111373821, - 2.147402896161808, - 2.0533864530224717, - 1.9661971677564585, - 1.884853474704879, - 1.8085784950510613, - 1.7367481623240888, - 1.6688550060006442, - 1.6044822724935734, - 1.5432850636134734, - 1.4849763575910166, - 1.4293165030440087, - 1.376105233167008, - 1.3251755425927279, - 1.2763889642909916, - 1.2296319149775803, - 1.184812866951239, - 1.1418601658048346, - 1.1007203557318535, - 1.0613569026985687, - 1.0237492241264323, - 0.9878919442344163, - 0.9537942983792281, - 0.9214796087723027, - 0.8909847489587065, - 0.8623595067911749, - 0.8356657472925207, - 0.810976270641447, - 0.7883732605019335, - 0.7679462290122372, - 0.74978939234222, - 0.7339984593210674, - 0.720666886790997, - 0.7098817451866942, - 0.7017194350731715, - 0.6962415811359584, - 0.6934914810725892, - 0.6934914817541727, - 0.6962415831751193, - 0.7017194384534926, - 0.7098817498819469, - 0.7206668927666976, - 0.7339984665364051, - 0.7497894007521623, - 0.7679462385696371, - 0.7883732711594962, - 0.8109762823534584, - 0.8356657600162947, - 0.8623595204882051, - 0.8909847635955536, - 0.9214796243212531, - 0.9537943148187737, - 0.9878919615496119, - 1.0237492423091783, - 1.0613569217478642, - 1.1007203756540687, - 1.141860186614038, - 1.184812888669611, - 1.229631937635965, - 1.27638898792962, - 1.3251755672621608, - 1.376105258929364, - 1.4293165299745512, - 1.484976385780204, - 1.543285093169613, - 1.6044823035462659, - 1.6688550387052996, - 1.7367481968678893, - 1.808578531660949, - 1.884853513658415, - 1.9661972093968552, - 2.0533864977798366, - 2.147402944583964, - 2.249509164172297, - 2.3613649256623943, - 2.4852106631541546, - 2.624171503709869, - 2.782791258127035, - 2.9680428239454906, - 3.191438034139256, - 3.4740829479887516, - 3.8616039961659077, - 4.488066776316759, - 6.430178038000308, - 4.874335939257506, - 4.057613695291277, - 3.6083301672021926, - 3.2951492006591083, - 3.053609384532967, - 2.8563898772356446, - 2.6893289995240535, - 2.5441332277093074, - 2.4155268629211637, - 2.2999465952931906, - 2.1948737634833075, - 2.0984635802467224, - 2.0093257338236987, - 1.9263877968758019, - 1.8488065840052157, - 1.7759086058399591, - 1.707148889428722, - 1.6420817887799009, - 1.5803398547598762, - 1.5216182628043118, - 1.465663161574673, - 1.4122628448101022, - 1.3612409937285797, - 1.3124514633529571, - 1.2657742370665352, - 1.2211122760545985, - 1.1783890604152811, - 1.1375466669102803, - 1.0985442611535494, - 1.0613569037870998, - 1.025974583724371, - 0.9924013988548852, - 0.9606548072502227, - 0.9307648713083954, - 0.9027734149737965, - 0.8767330120859707, - 0.8527057244722818, - 0.8307615145752066, - 0.8109762724907119, - 0.7934294243661426, - 0.7782011300762282, - 0.7653691324491857, - 0.7550053838361062, - 0.7471726398762109, - 0.74192126241744, - 0.7392864996834035, - 0.7392865003362648, - 0.7419212643714884, - 0.7471726431181027, - 0.7550053883444544, - 0.7653691381957454, - 0.7782011370273824, - 0.7934294324845585, - 0.8109762817370367, - 0.8307615249096962, - 0.8527057358562802, - 0.8767330244831997, - 0.902773428351434, - 0.9307648856379527, - 0.9606548225082439, - 0.9924014150235032, - 1.02597460079176, - 1.0613569217478642, - 1.098544280009089, - 1.1375466866691726, - 1.1783890810937183, - 1.2211122976769122, - 1.2657742596658612, - 1.3124514869720723, - 1.3612410184209767, - 1.4122628706413634, - 1.4656631886242306, - 1.5216182911677165, - 1.5803398845517205, - 1.6420818201376266, - 1.7071489225176157, - 1.7759086408597808, - 1.8488066211991183, - 1.9263878365425318, - 2.0093257763346117, - 2.0984636260700453, - 2.194873813219682, - 2.2999466497293826, - 2.4155269231143244, - 2.5441332951252638, - 2.689329076277271, - 2.8563899665359913, - 3.053609491597563, - 3.2951493348229826, - 3.6083303477935296, - 4.057613973796574, - 4.874336559441805, - 5.551505037740515, - 4.313570438894145, - 3.7705638558414525, - 3.4160099133537796, - 3.1512325846410603, - 2.9391931928673376, - 2.761908605204321, - 2.6092765494089014, - 2.475054387122031, - 2.355115106770901, - 2.2465893635693184, - 2.147402898207814, - 2.0560090534732174, - 1.971225311908945, - 1.892128823068666, - 1.8179871130808845, - 1.7482106790594558, - 1.682319691689542, - 1.6199200767790345, - 1.5606860013544916, - 1.504346837819093, - 1.4506773256513525, - 1.3994900594674546, - 1.3506296979889387, - 1.303968464535948, - 1.2594026283361122, - 1.216849736928629, - 1.1762464255978369, - 1.1375466679783282, - 1.1007203578856062, - 1.0657521295065435, - 1.0326403337770145, - 1.0013960949532779, - 0.9720423746702939, - 0.9446129727784716, - 0.9191513967107017, - 0.8957095360263863, - 0.8743460882556156, - 0.8551246983272696, - 0.8381117983398276, - 0.8233741677537405, - 0.8109762749563983, - 0.8009775058619043, - 0.7934294274886103, - 0.7883732661441721, - 0.785837792503244, - 0.7858377931313909, - 0.7883732680249184, - 0.793429430611078, - 0.8009775102086162, - 0.8109762805041933, - 0.8233741744749379, - 0.8381118062035435, - 0.8551247073007939, - 0.874346098305767, - 0.8957095471207803, - 0.9191514088188927, - 0.944612985872948, - 0.9720423887273261, - 1.0013961099536322, - 1.032640349706555, - 1.0657521463567559, - 1.1007203756540687, - 1.1375466866691726, - 1.1762464452222274, - 1.2168497575053037, - 1.2594026498920146, - 1.3039684871070085, - 1.3506297216210357, - 1.399490084217629, - 1.4506773515893518, - 1.504346865029326, - 1.560686029938554, - 1.619920106858955, - 1.6823197234120175, - 1.7482107126014284, - 1.8179871486569752, - 1.8921288609412348, - 1.9712253524019485, - 2.0560090969916986, - 2.147402945265964, - 2.246589414832073, - 2.355115163117655, - 2.4750544497482827, - 2.6092766199964874, - 2.7619086862244195, - 2.939193288163414, - 3.151232700672345, - 3.416010062260518, - 3.770564064861833, - 4.31357079310478, - 5.551506240284594, - 4.674639996651257, - 3.9725611221160997, - 3.5591044427069516, - 3.2636882061475037, - 3.0329368763650546, - 2.8430952909577396, - 2.6815005996613284, - 2.540600075259625, - 2.415526865328891, - 2.3029623292126207, - 2.200543700472655, - 2.1065306939454014, - 2.0196061026257244, - 1.9387505724367071, - 1.8631607497843217, - 1.7921939634073718, - 1.7253297700746038, - 1.6621425735109114, - 1.6022817227743458, - 1.5454567892574584, - 1.4914265083903084, - 1.4399903652337815, - 1.3909821201260708, - 1.3442647788288016, - 1.299726651043868, - 1.257278235893712, - 1.2168497379838437, - 1.1783890625361462, - 1.1418601690062504, - 1.1072416837440755, - 1.074525686540526, - 1.0437165955050791, - 1.01483008142152, - 0.987891948144299, - 0.962936921302165, - 0.9400072951549154, - 0.9191513984404436, - 0.9004218557630949, - 0.8838736422943101, - 0.8695619561515808, - 0.857539963358355, - 0.8478565017902925, - 0.8405538585577578, - 0.8356657545632487, - 0.8332156754178531, - 0.8332156760247503, - 0.8356657563809307, - 0.840553861577352, - 0.8478565059975198, - 0.8575399687342498, - 0.8695619626734123, - 0.8838736499366434, - 0.9004218644989206, - 0.9191514082423125, - 0.9400073059960274, - 0.962936933157382, - 0.9878919609910574, - 1.0148300952406388, - 1.043716610281472, - 1.0745257022638326, - 1.1072417004092334, - 1.141860186614038, - 1.1783890810937183, - 1.2168497575053037, - 1.2572782564007505, - 1.2997266725665038, - 1.344264801406277, - 1.3909821438079528, - 1.439990390081333, - 1.4914265344782145, - 1.545456816676022, - 1.6022817516323038, - 1.662142603939068, - 1.7253298022305825, - 1.7921939974818966, - 1.8631607860096326, - 1.9387506110980326, - 2.0196061440772066, - 2.1065307386327072, - 2.200543748965899, - 2.302962382255816, - 2.4155269239169006, - 2.5406001407632917, - 2.6815006740420424, - 2.8430953771609464, - 3.032936979107548, - 3.263688333689539, - 3.5591046115806835, - 3.972561373691433, - 4.6746404967593485, - 5.272998301194447, - 4.236077794693764, - 3.732403639935664, - 3.394969151558327, - 3.13998861282553, - 2.9344486200213327, - 2.761908608281033, - 2.6129853940119854, - 2.4818174338259715, - 2.364499109306903, - 2.2582990115166424, - 2.161233767482037, - 2.0718194668793544, - 1.9889186956340716, - 1.9116422106330186, - 1.8392834127979278, - 1.7712733316396643, - 1.7071488922328657, - 1.6465300453540828, - 1.5891029683088582, - 1.5346075200084557, - 1.4828277378937056, - 1.4335845483678995, - 1.386730112411377, - 1.3421433941192404, - 1.2997266520937525, - 1.2594026304391273, - 1.2211122792188394, - 1.1848128711889703, - 1.1504764074338727, - 1.1180882226662139, - 1.08764571392727, - 1.0591571261867396, - 1.0326403365234873, - 1.008121586612338, - 0.9856341224500271, - 0.9652167117484418, - 0.9469120240261171, - 0.930764876467036, - 0.9168203697007572, - 0.9051219604966066, - 0.8957095406977099, - 0.8886176104837102, - 0.8838736458215406, - 0.8814967616699292, - 0.8814967622586166, - 0.8838736475851559, - 0.8886176134150353, - 0.8957095447851185, - 0.9051219657246347, - 0.9168203760508489, - 0.9307648839184058, - 0.9469120325566871, - 0.9652167213358005, - 0.9856341330723711, - 1.0081215982493728, - 1.0326403491572607, - 1.0591571398024124, - 1.0876457285138148, - 1.1180882382170636, - 1.1504764239475311, - 1.184812888669611, - 1.2211122976769122, - 1.2594026498920146, - 1.2997266725665038, - 1.3421434156454202, - 1.3867301350340902, - 1.4335845721410359, - 1.4828277628834887, - 1.5346075462953854, - 1.5891029959901806, - 1.6465300745469518, - 1.707148923078445, - 1.7712733643084995, - 1.839283447497093, - 1.911642247615749, - 1.9889187352129953, - 2.0718195094450316, - 2.1612338135295692, - 2.2582990616849106, - 2.3644991644384015, - 2.4818174950616307, - 2.612985462948807, - 2.761908687249991, - 2.9344487126154233, - 3.139988725007478, - 3.3949692943260397, - 3.732403837202878, - 4.2360781165019805, - 5.2729991958510105, - 7.140958878574692, - 4.608667178501068, - 3.949443000207986, - 3.551105632444466, - 3.2636882107574565, - 3.03807252374729, - 2.851943123413747, - 2.693260185641035, - 2.554785204553444, - 2.431827586184913, - 2.3211757470324472, - 2.2205361741370613, - 2.128215785605242, - 2.0429310326909036, - 1.9636875435737624, - 1.8897011942999702, - 1.8203446154200116, - 1.7551099127576373, - 1.693582060944179, - 1.6354195198142694, - 1.580339858551566, - 1.5281089259979315, - 1.4785325788223944, - 1.4314502840894991, - 1.3867301134635963, - 1.3442647809290318, - 1.3039684676853984, - 1.265774241271061, - 1.2296319202469719, - 1.1955062670329994, - 1.1633754138696397, - 1.1332294433029049, - 1.1050690572270985, - 1.0789042790615242, - 1.05475314345884, - 1.032640338171371, - 1.0125957742071292, - 0.9946530737354005, - 0.9788479804669071, - 0.9652167140042913, - 0.9537943068824415, - 0.9446129790410477, - 0.9377006172019173, - 0.9330794338591033, - 0.9307648804793125, - 0.9307648810524948, - 0.9330794355766724, - 0.9377006200580392, - 0.9446129830263232, - 0.9537943119843695, - 0.9652167202078764, - 0.978847987755373, - 0.9946530820909758, - 1.0125957836118658, - 1.0326403486079667, - 1.0547531549114422, - 1.0789042915164981, - 1.1050690706737563, - 1.1332294577341926, - 1.1633754292827954, - 1.1955062834301966, - 1.229631937635965, - 1.2657742596658612, - 1.3039684871070085, - 1.344264801406277, - 1.3867301350340902, - 1.4314503068008009, - 1.478532602733418, - 1.5281089511806958, - 1.5803398850933903, - 1.6354195478205609, - 1.6935820905420174, - 1.7551099441004345, - 1.8203446486936545, - 1.8897012297310287, - 1.9636875814406487, - 2.0429310733393335, - 2.1282158294701223, - 2.2205362217742994, - 2.3211757991665536, - 2.431827643782849, - 2.5547852689441553, - 2.693260258719381, - 2.8519432080119733, - 3.038072624371665, - 3.2636883352261887, - 3.551105796178584, - 3.949443240802369, - 4.608667637320136, - 7.140964572092064, - 5.233169817023579, - 4.236077805790599, - 3.7418206203313122, - 3.4089534799913883, - 3.156894266675555, - 2.953535127600994, - 2.7827911831096803, - 2.6354481826467477, - 2.50573574672582, - 2.389802329583167, - 2.284951097810413, - 2.189222228488385, - 2.101148762718068, - 2.0196061058143, - 1.9437151482001758, - 1.8727776208633715, - 1.80623163421848, - 1.7436202992025822, - 1.6845690835771165, - 1.6287691530581427, - 1.5759649059271286, - 1.5259445038699548, - 1.4785325798851063, - 1.4335845504810671, - 1.3909821232836546, - 1.3506297021902007, - 1.3124514686016497, - 1.2763889705946259, - 1.242399089669481, - 1.2104522819395895, - 1.1805310107669813, - 1.1526283033683067, - 1.1267463766410564, - 1.1028952887813983, - 1.0810915842327864, - 1.0613569108625527, - 1.0437166004305434, - 1.02819821643712, - 1.0148300869491675, - 1.0036398532051425, - 0.9946530765205923, - 0.9878919548469554, - 0.9833742048721501, - 0.9811121646842826, - 0.9811121652444015, - 0.9833742065509266, - 0.9878919576397291, - 0.9946530804198608, - 1.003639858200943, - 1.01483009302958, - 1.028198223588865, - 1.04371660863965, - 1.0613569201150677, - 1.0810915945154973, - 1.1028953000825585, - 1.1267463889510978, - 1.152628316680533, - 1.1805310250782428, - 1.210452297250952, - 1.2423991059868942, - 1.27638898792962, - 1.3124514869720723, - 1.3506297216210357, - 1.3909821438079528, - 1.4335845721410359, - 1.478532602733418, - 1.5259445279713406, - 1.5759649313603632, - 1.628769179918532, - 1.6845691119796709, - 1.7436203292861108, - 1.806231666150939, - 1.8727776548489514, - 1.943715184488852, - 2.0196061447149223, - 2.101148804616685, - 2.189222273874505, - 2.284951147315703, - 2.389802384040357, - 2.5057358072619413, - 2.635448250837811, - 2.782791261252758, - 2.953535219229673, - 3.1568943776368177, - 3.408953621022091, - 3.741820814607034, - 4.23607812020093, - 5.233170658126849, - 7.439859481844975, - 4.652180759058688, - 3.9843082938960444, - 3.583447658162469, - 3.2951492148646944, - 3.06934559983981, - 2.8833982648448773, - 2.7251280565249956, - 2.5872272009764865, - 2.4649673553441853, - 2.355115112945888, - 2.255363914572416, - 2.164012808690617, - 2.079773600575633, - 2.0016493694937827, - 1.9288548536477221, - 1.8607625171972875, - 1.7968649740995282, - 1.7367481691195903, - 1.6800718317727146, - 1.6265549669422288, - 1.5759649070093937, - 1.5281089281411453, - 1.4828277410838906, - 1.439990369463152, - 1.3994900647334492, - 1.3612410000330215, - 1.3251755499410696, - 1.2912420089091103, - 1.2594026341194033, - 1.2296319228816677, - 1.2019150533077863, - 1.1762464319625043, - 1.1526283049657737, - 1.1310694006865785, - 1.1115835834363823, - 1.0941885088351608, - 1.078904282852168, - 1.0657521376598722, - 1.0547531478217356, - 1.045927019160535, - 1.0392909889966915, - 1.0348588794199185, - 1.0326403442136103, - 1.0326403447629047, - 1.0348588810665627, - 1.0392909917370354, - 1.045927022988715, - 1.0547531527299938, - 1.0657521436389799, - 1.0789042898919359, - 1.0941885169250147, - 1.1115835925659834, - 1.1310694108464696, - 1.1526283161480433, - 1.1762464441614497, - 1.2019150665205802, - 1.2296319371090254, - 1.2594026493662613, - 1.2912420251853258, - 1.3251755672621608, - 1.3612410184209767, - 1.399490084217629, - 1.439990390081333, - 1.4828277628834887, - 1.5281089511806958, - 1.5759649313603632, - 1.6265549926912664, - 1.6800718590245014, - 1.7367481980004722, - 1.7968650047622383, - 1.8607625498271474, - 1.9288548884709196, - 2.0016494067886255, - 2.0797736406881304, - 2.164012852056546, - 2.2553639617493904, - 2.355115164661402, - 2.4649674125701613, - 2.5872272650501085, - 2.725128129355047, - 2.8833983492882354, - 3.0693457004495484, - 3.2951493395581797, - 3.5834478226098363, - 3.9843085365292112, - 4.6521812264764995, - 7.439866980196807, - 5.40275928914026, - 4.313570474713199, - 3.8000781995138624, - 3.45928565113513, - 3.203178169893706, - 2.997573138270573, - 2.825578997824508, - 2.6776032242484225, - 2.5476751059150904, - 2.4318275902411064, - 2.327292996424649, - 2.232066007323708, - 2.144649440571047, - 2.0638981235577862, - 1.9889187000317299, - 1.91900293965187, - 1.853581960347601, - 1.7921939686051813, - 1.7344610032237902, - 1.6800718328850328, - 1.6287691552508274, - 1.5803398618015851, - 1.5346075243001993, - 1.491426513714371, - 1.4506773320035162, - 1.4122628521904625, - 1.376105241579206, - 1.3421433988445002, - 1.3103307757720744, - 1.2806334838173596, - 1.2530286078673605, - 1.227502667050655, - 1.2040501768345724, - 1.182672279148695, - 1.163375418653033, - 1.1461700539662647, - 1.131069402825503, - 1.118088229637285, - 1.1072416923454473, - 1.0985442724668735, - 1.0920088169418065, - 1.0876457225711487, - 1.0854622929061144, - 1.0854622934466704, - 1.0876457241918758, - 1.0920088196399371, - 1.0985442762379813, - 1.1072416971837191, - 1.118088235535883, - 1.131069409777008, - 1.1461700619631778, - 1.1633754276883312, - 1.1826722892164163, - 1.2040501879304282, - 1.22750267917266, - 1.2530286210164785, - 1.2806334979981695, - 1.3103307909934618, - 1.3421434151203915, - 1.376105258929364, - 1.4122628706413634, - 1.4506773515893518, - 1.4914265344782145, - 1.5346075462953854, - 1.5803398850933903, - 1.628769179918532, - 1.6800718590245014, - 1.7344610309507502, - 1.7921939980594315, - 1.853581991698508, - 1.9190029731056446, - 1.9889187358412328, - 2.0638981620359753, - 2.14464948210983, - 2.2320660524210036, - 2.32729304572435, - 2.431827644594087, - 2.5476751664760746, - 2.677603292637376, - 2.825579076411994, - 2.9975732307220184, - 3.2031782823169026, - 3.4592857948616467, - 3.8000783994176204, - 4.313570805044471, - 5.402760259556869, - 4.820682817559466, - 4.083203524681575, - 3.6598198162516495, - 3.360732664289202, - 3.1288486497335737, - 2.9391932058087815, - 2.778588170971154, - 2.6392275811034396, - 2.516107355000527, - 2.405829541677239, - 2.3059836838611525, - 2.2148003085499384, - 2.1309444660524286, - 2.053386462752334, - 1.981317565585458, - 1.9140931317948038, - 1.851193118187844, - 1.7921939697602498, - 1.7367481713847575, - 1.6845690869185936, - 1.6354195242074128, - 1.5891029737365685, - 1.5454567957088852, - 1.5043468452885689, - 1.4656631700608087, - 1.4293165125489062, - 1.3952354195521275, - 1.3633638090951667, - 1.333658881421388, - 1.3060892870504537, - 1.280633485393005, - 1.2572782437810346, - 1.2360172404024676, - 1.216849746425556, - 1.1997793731056743, - 1.1848128791347161, - 1.1719590419333117, - 1.161227603823765, - 1.152628309758175, - 1.1461700571650297, - 1.1418601802112065, - 1.1397038901747747, - 1.13970389070857, - 1.141860181811914, - 1.1461700598306672, - 1.1526283134855986, - 1.161227608608903, - 1.1719590477714863, - 1.1848128860210292, - 1.1997793810354578, - 1.2168497553948756, - 1.2360172504086602, - 1.2572782548232864, - 1.280633497472954, - 1.3060893001728289, - 1.3336588955946769, - 1.3633638243323303, - 1.3952354358713757, - 1.4293165299745512, - 1.4656631886242306, - 1.504346865029326, - 1.545456816676022, - 1.5891029959901806, - 1.6354195478205609, - 1.6845691119796709, - 1.7367481980004722, - 1.7921939980594315, - 1.851193148326368, - 1.9140931639620729, - 1.9813176000130577, - 2.0533864997258098, - 2.1309445059276406, - 2.214800351776286, - 2.3059837310154507, - 2.4058295935146874, - 2.51610741253426, - 2.639227645734274, - 2.7785882447110586, - 2.9391932916929004, - 3.1288487526504825, - 3.360732792868496, - 3.6598199879766784, - 4.0832037842724205, - 4.820683354572621, - 5.936528441294873, - 4.488066419235653, - 3.9156655920184003, - 3.5511056482260654, - 3.282463428234678, - 3.0693456063729094, - 2.892529083894084, - 2.741349900369424, - 2.6092765613262867, - 2.492020486837463, - 2.3866167927863837, - 2.290932795413353, - 2.203385635201908, - 2.122770590715601, - 2.0481517931497506, - 1.9787899718081194, - 1.9140931330086635, - 1.8535819627137067, - 1.7968649775707783, - 1.743620303743492, - 1.6935820665286767, - 1.6465300519637884, - 1.6022817303972023, - 1.560686009983643, - 1.5216182724371659, - 1.4849763682284456, - 1.4506773346502504, - 1.4186546609185209, - 1.3888559681550772, - 1.3612410042359826, - 1.335779877769779, - 1.3124514743752107, - 1.2912420136344633, - 1.2721437177169292, - 1.2551535734009265, - 1.240272178458341, - 1.227502671267004, - 1.216849749063591, - 1.2083187853227233, - 1.2019150601784392, - 1.1976431194476067, - 1.1955062776118361, - 1.195506278140778, - 1.1976431210339933, - 1.2019150628209978, - 1.208318789019474, - 1.2168497538120542, - 1.227502677064485, - 1.2402721853022785, - 1.2551535812893035, - 1.2721437266487374, - 1.291242023610208, - 1.3124514853974645, - 1.3357798898437712, - 1.361241017370236, - 1.388855982362092, - 1.4186546762155192, - 1.4506773510600046, - 1.484976385780204, - 1.5216182911677165, - 1.560686029938554, - 1.6022817516323038, - 1.6465300745469518, - 1.6935820905420174, - 1.7436203292861108, - 1.7968650047622383, - 1.853581991698508, - 1.9140931639620729, - 1.9787900049439244, - 2.0481518287307114, - 2.1227706290678445, - 2.203385676735189, - 2.2909328406502794, - 2.3866168424058403, - 2.492020541741387, - 2.6092766227466537, - 2.741349970048432, - 2.8925291644072, - 3.069345701756167, - 3.282463545339917, - 3.551105800123982, - 3.9156658087704597, - 4.488066799808933, - 5.936530045278681, - 5.194835849963137, - 4.2663976966217065, - 3.7901517349662845, - 3.4666602382080365, - 3.2210087407185943, - 3.0227293486670375, - 2.856389894875219, - 2.713089172937435, - 2.5872272072936044, - 2.4750543996472825, - 2.3739396833866127, - 2.2819684223173176, - 2.197706431408042, - 2.120054025136976, - 2.0481517944436036, - 1.9813175680892843, - 1.9190029433013724, - 1.8607625219434492, - 1.8062316400243819, - 1.755109919596066, - 1.707148900084468, - 1.662142582362739, - 1.6199200866233725, - 1.5803398655932743, - 1.543285075435929, - 1.5086598164526261, - 1.476386032135138, - 1.4464009094322063, - 1.418654662500969, - 1.3931086114733513, - 1.3697334900406297, - 1.3485079330673355, - 1.3294171094017242, - 1.312451476474688, - 1.297605642740215, - 1.2848773318230544, - 1.2742664485406758, - 1.2657742517823756, - 1.259402642531463, - 1.2551535770821696, - 1.2530286157568313, - 1.2530286162827964, - 1.2551535786598451, - 1.259402645160232, - 1.2657742554613354, - 1.274266453268829, - 1.284877337599566, - 1.297605649564733, - 1.3124514843477262, - 1.3294171183250993, - 1.3485079430446543, - 1.3697335010778264, - 1.3931086235792771, - 1.4186546756880367, - 1.4464009237171012, - 1.476386047539607, - 1.5086598330043683, - 1.543285093169613, - 1.5803398845517205, - 1.619920106858955, - 1.662142603939068, - 1.707148923078445, - 1.7551099441004345, - 1.806231666150939, - 1.8607625498271474, - 1.9190029731056446, - 1.9813176000130577, - 2.0481518287307114, - 2.1200540620890087, - 2.19770647140229, - 2.281968465832414, - 2.373939731040225, - 2.4750544522533335, - 2.587227265952553, - 2.713089239185534, - 2.856389970945885, - 3.0227294379832186, - 3.221008848913664, - 3.4666603755420944, - 3.790151923287454, - 4.266397997317611, - 5.194836604235423, - 4.820682849909651, - 4.109419368969551, - 3.6955179377145626, - 3.4019400968582003, - 3.1740414354739026, - 2.987651736189056, - 2.829935960467103, - 2.6932601973335695, - 2.572716957975182, - 2.4649673628084434, - 2.36763964207806, - 2.2789911446694213, - 2.1977064328113496, - 2.1227705934069867, - 2.053386466644279, - 1.9889187050576251, - 1.9288548597570552, - 1.8727776280182304, - 1.8203446235924854, - 1.7712733408098635, - 1.725329780229123, - 1.6823197028202357, - 1.642081800882883, - 1.6044822855683916, - 1.5694105334308408, - 1.5367755324431716, - 1.5065029366548537, - 1.4785325878554472, - 1.4528163985408225, - 1.4293165173013547, - 1.4080037182215328, - 1.3888559718383775, - 1.371857167871724, - 1.356995970104947, - 1.3442647919552406, - 1.3336588877206277, - 1.3251755593889378, - 1.318813482334316, - 1.3145721552810012, - 1.3124514806736416, - 1.3124514811985108, - 1.314572156855597, - 1.31881348495864, - 1.3251755630631086, - 1.3336588924450568, - 1.3442647977308737, - 1.3569959769335653, - 1.37185717575631, - 1.3888559807835352, - 1.408003728233965, - 1.4293165283904015, - 1.4528164107190582, - 1.4785326011393494, - 1.50650295106555, - 1.5367755480072913, - 1.569410550181486, - 1.6044823035462659, - 1.6420818201376266, - 1.6823197234120175, - 1.7253298022305825, - 1.7712733643084995, - 1.8203446486936545, - 1.8727776548489514, - 1.9288548884709196, - 1.9889187358412328, - 2.0533864997258098, - 2.1227706290678445, - 2.19770647140229, - 2.278991186633415, - 2.367639687983595, - 2.464967413399524, - 2.5727170142492217, - 2.6932602606681377, - 2.829936032837607, - 2.9876518205686877, - 3.174041536635808, - 3.4019402231874034, - 3.6955181060680786, - 4.109419621858012, - 4.8206833610426605, - 6.20304228392045, - 4.5875740626188115, - 3.9961847032981406, - 3.6252310261042195, - 3.354005332098566, - 3.1399886335999647, - 2.9631881976830545, - 2.812594991353042, - 2.681500616083043, - 2.565517145109756, - 2.461620172520799, - 2.3676396436341807, - 2.2819684252674937, - 2.2033856394256315, - 2.130944471459237, - 2.063898130079513, - 2.001649377079174, - 1.943715156811048, - 1.889701203908393, - 1.8392834233841138, - 1.792193974958058, - 1.7482106915666324, - 1.7071489028886109, - 1.668855020412865, - 1.6332014300737145, - 1.6000823669119526, - 1.5694105350518706, - 1.5411142989486506, - 1.5151353169359574, - 1.4914265211680582, - 1.469950372781413, - 1.4506773399437194, - 1.4335845610469056, - 1.4186546667208306, - 1.4058747433116672, - 1.395235427448538, - 1.3867301266163359, - 1.3803543644670264, - 1.3761052520944528, - 1.3739810878187984, - 1.373981088344498, - 1.3761052536717397, - 1.380354367096499, - 1.3867301302991033, - 1.3952354321863836, - 1.4058747491072832, - 1.4186546735781058, - 1.4335845689712843, - 1.4506773489426168, - 1.4699503828646954, - 1.4914265323485887, - 1.5151353292302199, - 1.5411143123774504, - 1.5694105496411421, - 1.600082382693686, - 1.6332014470870335, - 1.6688550387052996, - 1.7071489225176157, - 1.7482107126014284, - 1.7921939974818966, - 1.839283447497093, - 1.8897012297310287, - 1.943715184488852, - 2.0016494067886255, - 2.0638981620359753, - 2.1309445059276406, - 2.203385676735189, - 2.281968465832414, - 2.367639687983595, - 2.461620221343297, - 2.5655171993220005, - 2.681500676939991, - 2.812595060634211, - 2.9631882780278374, - 3.1399887291623645, - 3.3540054499724032, - 3.625231179941509, - 3.9961849249712436, - 4.587574460560566, - 6.203044271947857, - 5.551505288821035, - 4.432609638387573, - 3.9156656112242794, - 3.5752745959051695, - 3.3209411787334835, - 3.1178105560816958, - 2.9487363095894734, - 2.8040102207970814, - 2.6776032348438936, - 2.5655171468872076, - 2.464967366125891, - 2.373939688073852, - 2.2909328013460644, - 2.2148003156362246, - 2.1446494487426104, - 2.07977360978178, - 2.0196061160177425, - 1.9636875547475978, - 1.9116422227585037, - 1.8631607628491877, - 1.8179871270780352, - 1.7759086207664405, - 1.7367481781802592, - 1.700358279538655, - 1.6666160915639594, - 1.6354195313462716, - 1.6066840349996925, - 1.5803398704683032, - 1.5563298756145245, - 1.5346075334201545, - 1.5151353190740908, - 1.4978832711270573, - 1.4828277522495386, - 1.4699503754349088, - 1.4592370794208573, - 1.4506773431198015, - 1.4442635332788945, - 1.439990382679935, - 1.4378545981491393, - 1.437854598677682, - 1.4399903842659487, - 1.4442635359235696, - 1.4506773468252296, - 1.4592370841901936, - 1.4699503812725985, - 1.4828277591616066, - 1.497883279121463, - 1.5151353281611537, - 1.534607543613046, - 1.5563298869298372, - 1.5803398829267106, - 1.6066840486267087, - 1.6354195461731318, - 1.6666161076286492, - 1.7003582968871274, - 1.7367481968678893, - 1.7759086408597808, - 1.8179871486569752, - 1.8631607860096326, - 1.911642247615749, - 1.9636875814406487, - 2.0196061447149223, - 2.0797736406881304, - 2.14464948210983, - 2.214800351776286, - 2.2909328406502794, - 2.373939731040225, - 2.464967413399524, - 2.5655171993220005, - 2.6776032936006002, - 2.8040102875068644, - 2.9487363866435357, - 3.1178106471848523, - 3.32094129007459, - 3.575274739005801, - 3.9156658115141565, - 4.432609972611342, - 5.551506306358499, - 5.23316996204133, - 4.329774609743998, - 3.861603826468639, - 3.543163187441797, - 3.301544046596044, - 3.106872251300654, - 2.9439557226582584, - 2.8040102229148527, - 2.6815006199469757, - 2.572716963334615, - 2.4750544063274154, - 2.386616800662488, - 2.305983692842924, - 2.232066017345329, - 2.1640128197041864, - 2.1011487746891016, - 2.042931045595167, - 1.988918709455283, - 1.938750587164831, - 1.8921288386986155, - 1.8488066005358395, - 1.8085785124843412, - 1.771273345394963, - 1.7367481798791342, - 1.7048837460000668, - 1.675580643248335, - 1.6487562363706836, - 1.6243420767956531, - 1.6022817385645491, - 1.5825289864557668, - 1.5650462154495788, - 1.5498031168733388, - 1.5367755388834967, - 1.525944518330786, - 1.5172954681773068, - 1.5108175099586014, - 1.5065029446607963, - 1.5043468580933845, - 1.5043468586269182, - 1.5065029462619846, - 1.5108175126292362, - 1.5172954719204834, - 1.525944523151063, - 1.5367755447871283, - 1.5498031238685679, - 1.5650462235470024, - 1.5825289956687778, - 1.6022817489098546, - 1.6243420882938846, - 1.648756249047111, - 1.6755806571337006, - 1.7048837611315704, - 1.7367481963015972, - 1.7712733631622244, - 1.808578531660949, - 1.8488066211991183, - 1.8921288609412348, - 1.9387506110980326, - 1.9889187352129953, - 2.0429310733393335, - 2.101148804616685, - 2.164012852056546, - 2.2320660524210036, - 2.3059837310154507, - 2.3866168424058403, - 2.4750544522533335, - 2.5727170142492217, - 2.681500676939991, - 2.8040102875068644, - 2.943955797058189, - 3.1068723388897164, - 3.301544152928374, - 3.543163322603255, - 3.8616040118302735, - 4.329774904770115, - 5.23317068713043, - 5.054423765855305, - 4.266397730878192, - 3.830408555867848, - 3.527443892718232, - 3.2951492401190685, - 3.106872253995701, - 2.948736314331261, - 2.8125949977482256, - 2.6932602051285923, - 2.587227216318057, - 2.492020496973571, - 2.405829552842226, - 2.327293008559959, - 2.2553639276368074, - 2.189222242453345, - 2.128215800451816, - 2.0718194825959118, - 2.019606119206317, - 1.9712253293520852, - 1.9263878151835234, - 1.884853493882004, - 1.846422381531742, - 1.8109274843140182, - 1.7782291766573013, - 1.7482106966832038, - 1.7207744926619803, - 1.6958392264531528, - 1.6733372913202498, - 1.6532127386923592, - 1.635419535739415, - 1.619920095920802, - 1.6066840399054179, - 1.5956871557767316, - 1.5869105361529388, - 1.5803398764266712, - 1.5759649232433735, - 1.5737790659644242, - 1.5737790665052915, - 1.5759649248667713, - 1.580339879135021, - 1.5869105399503858, - 1.5956871606693142, - 1.6066840459013048, - 1.6199201030306012, - 1.635419543976559, - 1.6532127480735768, - 1.6733373018661253, - 1.6958392381887952, - 1.7207745056178128, - 1.748210710895904, - 1.7782291921709203, - 1.8109275011813273, - 1.8464223998158644, - 1.884853513658415, - 1.9263878365425318, - 1.9712253524019485, - 2.0196061440772066, - 2.0718195094450316, - 2.1282158294701223, - 2.189222273874505, - 2.2553639617493904, - 2.32729304572435, - 2.4058295935146874, - 2.492020541741387, - 2.587227265952553, - 2.6932602606681377, - 2.812595060634211, - 2.9487363866435357, - 3.1068723388897164, - 3.295149342714976, - 3.5274440221487984, - 3.830408730936606, - 4.266398001123885, - 5.054424358553522, - 4.960444155913409, - 4.236077876070547, - 3.820204853193917, - 3.527443896581832, - 3.3015440529442435, - 3.117810564240187, - 2.9631882072764606, - 2.8299359712686702, - 2.7130891848027647, - 2.6092765741603925, - 2.5161073687399265, - 2.431827604843398, - 2.3551151283833547, - 2.284951114065881, - 2.220536191201146, - 2.1612337853512287, - 2.1065307126206934, - 2.056009072959105, - 2.0093257541274183, - 1.9661971888874057, - 1.926387817014296, - 1.8897012105141844, - 1.8559731464626839, - 1.8250661267304606, - 1.7968649885630714, - 1.7712733494069257, - 1.7482106989572368, - 1.7276100009370587, - 1.7094157029269987, - 1.6935820788145721, - 1.6800718479013237, - 1.6688550292819246, - 1.6599080010947587, - 1.6532127425552139, - 1.648756242984472, - 1.6465300668356284, - 1.6465300673864371, - 1.648756244637919, - 1.6532127453143954, - 1.6599080049649535, - 1.6688550342707704, - 1.680071854019071, - 1.6935820860744193, - 1.7094157113455064, - 1.7276100105346677, - 1.7482107097588888, - 1.7712733614428124, - 1.7968650018695302, - 1.8250661413510567, - 1.8559731624495106, - 1.8897012279294498, - 1.9263878359322748, - 1.9661972093968552, - 2.0093257763346117, - 2.0560090969916986, - 2.1065307386327072, - 2.1612338135295692, - 2.2205362217742994, - 2.284951147315703, - 2.355115164661402, - 2.431827644594087, - 2.51610741253426, - 2.6092766227466537, - 2.713089239185534, - 2.829936032837607, - 2.9631882780278374, - 3.1178106471848523, - 3.301544152928374, - 3.5274440221487984, - 3.820205021610768, - 4.236078131297767, - 4.960444681982711, - 4.930934304236292, - 4.236077883468435, - 3.8304085660167635, - 3.5431631991949657, - 3.3209411916425973, - 3.1399886474495875, - 2.987651750863774, - 2.8563899103098453, - 2.741349916526873, - 2.639227597963657, - 2.5476751234689976, - 2.4649673735901474, - 2.3898023485247974, - 2.3211757666771824, - 2.2582990318747798, - 2.2005437215566737, - 2.1474029200318836, - 2.0984636028263304, - 2.05338647637414, - 2.0118909714183717, - 1.9737438765457607, - 1.938750592687877, - 1.9067483079313507, - 1.8776006021171192, - 1.851193132370678, - 1.8274301481042865, - 1.8062316522167747, - 1.7875310737440855, - 1.7712733522726125, - 1.75741336009832, - 1.7459146071344254, - 1.7367481878072195, - 1.7298919399333532, - 1.7253297937684822, - 1.7230512957356419, - 1.723051296299359, - 1.7253297954609024, - 1.7298919427583186, - 1.7367481917712624, - 1.7459146122469613, - 1.7574133663719276, - 1.7712733597233998, - 1.7875310823921557, - 1.8062316620868066, - 1.827430159226242, - 1.8511931447806593, - 1.8776006158584109, - 1.9067483230556934, - 1.9387506092570175, - 1.9737438946333614, - 2.0118909911123946, - 2.0533864977798366, - 2.0984636260700453, - 2.147402945265964, - 2.200543748965899, - 2.2582990616849106, - 2.3211757991665536, - 2.389802384040357, - 2.4649674125701613, - 2.5476751664760746, - 2.639227645734274, - 2.741349970048432, - 2.856389970945885, - 2.9876518205686877, - 3.1399887291623645, - 3.32094129007459, - 3.543163322603255, - 3.830408730936606, - 4.236078131297767, - 4.930934801035784, - 4.960444185551121, - 4.266397753715859, - 3.861603847354461, - 3.575274616060189, - 3.354005352020903, - 3.1740414554213205, - 3.0227293687946286, - 2.892529104305859, - 2.778588191742958, - 2.677603245439365, - 2.587227222635176, - 2.505735768893977, - 2.4318276088995927, - 2.364499132601903, - 2.302962353119413, - 2.24658938811768, - 2.194873788701751, - 2.147402922077891, - 2.1038378126587447, - 2.0638981405142767, - 2.0273508842087105, - 1.994001589518825, - 1.9636875640591278, - 1.936272507970405, - 1.9116422324588922, - 1.8897012153183954, - 1.8703698106806874, - 1.8535819786849241, - 1.8392834357346652, - 1.8274301516164841, - 1.8179871387423272, - 1.8109274930384893, - 1.806231656861497, - 1.8038868827278305, - 1.8038868833079043, - 1.8062316586032667, - 1.8109274959466457, - 1.8179871428248298, - 1.8274301568847786, - 1.8392834422040008, - 1.853581986374769, - 1.8703698196152634, - 1.8897012255273442, - 1.9116422439781038, - 1.9362725208430263, - 1.963687578336806, - 1.9940016052632423, - 2.0273509014934747, - 2.063898159427285, - 2.103837833305166, - 2.147402944583964, - 2.194873813219682, - 2.246589414832073, - 2.302962382255816, - 2.3644991644384015, - 2.431827643782849, - 2.5057358072619413, - 2.5872272650501085, - 2.677603292637376, - 2.7785882447110586, - 2.8925291644072, - 3.0227294379832186, - 3.174041536635808, - 3.3540054499724032, - 3.575274739005801, - 3.8616040118302735, - 4.266398001123885, - 4.960444681982711, - 5.054423830808528, - 4.329774650158534, - 3.9156656441486426, - 3.625231055607259, - 3.4019401245467895, - 3.221008767396829, - 3.069345632505308, - 2.939193231691666, - 2.8255790236614877, - 2.7251280824644657, - 2.6354482088022246, - 2.5547852310153796, - 2.481817460669, - 2.415526892616456, - 2.355115134558341, - 2.299946623629838, - 2.249509140304492, - 2.2033856520968027, - 2.161233791536718, - 2.1227706075367605, - 2.0877610404832363, - 2.0560090794544, - 2.0273508867694163, - 2.0016493903536103, - 1.9787899893138285, - 1.9586771175895694, - 1.9412314800670463, - 1.9263878249476418, - 1.9140931518234812, - 1.9043052810450938, - 1.8969917294110308, - 1.892128851923957, - 1.8897012207231327, - 1.889701221323659, - 1.8921288537274128, - 1.896991732423094, - 1.904305285275393, - 1.9140931572858475, - 1.9263878316604732, - 1.941231488053795, - 1.958677126879371, - 1.9787899999422942, - 2.001649402363814, - 2.0273509002131207, - 2.05600909439358, - 2.0877610569919716, - 2.1227706257036125, - 2.1612338114677394, - 2.2033856739193736, - 2.249509164172297, - 2.2999466497293826, - 2.355115163117655, - 2.4155269239169006, - 2.4818174950616307, - 2.5547852689441553, - 2.635448250837811, - 2.725128129355047, - 2.825579076411994, - 2.9391932916929004, - 3.069345701756167, - 3.221008848913664, - 3.4019402231874034, - 3.625231179941509, - 3.9156658115141565, - 4.329774904770115, - 5.054424358553522, - 5.233170078055538, - 4.432609700775997, - 3.9961847505884, - 3.695517978119404, - 3.4666602748304483, - 3.282463462585547, - 3.128848682666984, - 2.9975731703204067, - 2.8833982963703972, - 2.7827912143669105, - 2.6932602168211286, - 2.6129854252633433, - 2.540600106701384, - 2.475054418852665, - 2.4155268950241817, - 2.361364900089079, - 2.312043370778517, - 2.2671354879887593, - 2.226291364172375, - 2.189222252927064, - 2.1556886499620145, - 2.125491192625204, - 2.098463610131498, - 2.0744672032265448, - 2.0533864841580303, - 2.0351257120303234, - 2.0196061313229046, - 2.0067637729706975, - 1.996547714678801, - 1.988918724532968, - 1.983848232482511, - 1.9813175899977549, - 1.981317590623711, - 1.9838482343626487, - 1.9889187276741525, - 1.9965477190926695, - 2.0067637786739567, - 2.01960613833777, - 2.0351257203851056, - 2.053386493887892, - 2.0744672143744722, - 2.098463622749514, - 2.1254912067759024, - 2.1556886657204726, - 2.1892222703832647, - 2.2262913834342806, - 2.267135509186262, - 2.3120433940685574, - 2.3613649256623943, - 2.4155269231143244, - 2.4750544497482827, - 2.5406001407632917, - 2.612985462948807, - 2.693260258719381, - 2.782791261252758, - 2.8833983492882354, - 2.9975732307220184, - 3.1288487526504825, - 3.282463545339917, - 3.4666603755420944, - 3.6955181060680786, - 3.9961849249712436, - 4.432609972611342, - 5.23317068713043, - 5.551505500257324, - 4.587574155644144, - 4.109419434654862, - 3.7901517887723295, - 3.551105695570871, - 3.3607327077055857, - 3.203178210774867, - 3.069345639038409, - 2.9535351656804454, - 2.8519431607688075, - 2.7619086452015846, - 2.681500636368693, - 2.6092765860777782, - 2.544133264481647, - 2.4852106354085337, - 2.431827616200738, - 2.3834378167601664, - 2.3395982377188282, - 2.299946628849747, - 2.264184788205225, - 2.232066032377761, - 2.2033856577284348, - 2.1779735884674754, - 2.155688653387768, - 2.1364140975242174, - 2.1200540473081957, - 2.106530725960188, - 2.095782271318781, - 2.08776104840743, - 2.0824323786608376, - 2.07977363016682, - 2.079773630824402, - 2.0824323806363365, - 2.0877610517091765, - 2.0957822759608997, - 2.1065307319629603, - 2.1200540546986018, - 2.1364141063366606, - 2.155688663665022, - 2.17797360026191, - 2.2033856711035584, - 2.232066047410193, - 2.264184804987191, - 2.299946647492279, - 2.3395982583558905, - 2.3834378395540385, - 2.431827641349133, - 2.4852106631541546, - 2.5441332951252638, - 2.6092766199964874, - 2.6815006740420424, - 2.761908687249991, - 2.8519432080119733, - 2.953535219229673, - 3.0693457004495484, - 3.2031782823169026, - 3.360732792868496, - 3.551105800123982, - 3.790151923287454, - 4.109419621858012, - 4.587574460560566, - 5.551506306358499, - 6.203042787218177, - 4.820682992250461, - 4.26639778797235, - 3.9156656633545164, - 3.6598198771162145, - 3.459285705714818, - 3.295149265373447, - 3.156894314431034, - 3.0380725696014337, - 2.9344486645602608, - 2.8430953346049317, - 2.7619086482782973, - 2.6893290422726803, - 2.624171473133241, - 2.565517167327889, - 2.512641970037749, - 2.464967386030578, - 2.422026208106453, - 2.383437819904148, - 2.3488900920430247, - 2.3181258821807726, - 2.290932821368966, - 2.2671354945672957, - 2.246589399669849, - 2.2291762533271022, - 2.2148003368950837, - 2.2033856626561112, - 2.194873802011484, - 2.189222262004289, - 2.1864033298118297, - 2.1864033305089547, - 2.1892222640990324, - 2.1948738055140464, - 2.203385667583789, - 2.214800343272742, - 2.2291762611878534, - 2.246589409055987, - 2.267135505531521, - 2.290932833975979, - 2.3181258965093137, - 2.3488901081885087, - 2.3834378379820467, - 2.4220262282567013, - 2.4649674084233526, - 2.5126419948811605, - 2.565517194878373, - 2.624171503709869, - 2.689329076277271, - 2.7619086862244195, - 2.8430953771609464, - 2.9344487126154233, - 3.038072624371665, - 3.1568943776368177, - 3.2951493395581797, - 3.4592857948616467, - 3.6598199879766784, - 3.9156658087704597, - 4.266397997317611, - 4.8206833610426605, - 6.203044271947857, - 5.194836092075159, - 4.488066550791834, - 4.083203620826325, - 3.80007827848818, - 3.583447727189757, - 3.4089535426716977, - 3.2636882691501934, - 3.1399886682240226, - 3.032936929638938, - 2.9391932446331075, - 2.8563899279494205, - 2.7827912237440793, - 2.717090203053686, - 2.6582813858227676, - 2.6055775588411527, - 2.558353591034385, - 2.5161073867728865, - 2.4784320836192357, - 2.444995843462152, - 2.4155269046550885, - 2.3898023650987255, - 2.367639669310157, - 2.34889009665602, - 2.3334337620056504, - 2.321175784810785, - 2.312043382799183, - 2.305983717542794, - 2.302962371049506, - 2.302962371796593, - 2.305983719788237, - 2.312043386555642, - 2.3211757900997525, - 2.333433768858068, - 2.348890105113178, - 2.3676396794249355, - 2.3898023769372445, - 2.415526918298872, - 2.44499585901094, - 2.478432101194657, - 2.5161074065232727, - 2.558353613141145, - 2.6055775835273205, - 2.6582814133646484, - 2.717090233797029, - 2.782791258127035, - 2.8563899665359913, - 2.939193288163414, - 3.032936979107548, - 3.139988725007478, - 3.2636883352261887, - 3.408953621022091, - 3.5834478226098363, - 3.8000783994176204, - 4.0832037842724205, - 4.488066799808933, - 5.194836604235423, - 5.936529021047764, - 4.820683024600652, - 4.3135706100296085, - 3.9843083991345236, - 3.7418207092768196, - 3.5511057113524704, - 3.394969223802227, - 3.263688273760147, - 3.1512326489475564, - 3.0536094464498413, - 2.96804278421896, - 2.8925291235836474, - 2.8255790398096017, - 2.7660588684354686, - 2.71308920754465, - 2.665977440196376, - 2.624171480545757, - 2.5872272406840833, - 2.5547852468925405, - 2.526553527311034, - 2.5022949074334035, - 2.4818174774458934, - 2.4649673951535607, - 2.451623449771931, - 2.441692987496954, - 2.4351089209494714, - 2.4318276308030313, - 2.4318276316142704, - 2.435108923388478, - 2.441692991579762, - 2.4516234555258003, - 2.4649674026178188, - 2.481817486673185, - 2.502294918491416, - 2.5265535402848296, - 2.5547852618876385, - 2.5872272578305457, - 2.6241715000036114, - 2.665977462162871, - 2.7130892322640907, - 2.7660588962127624, - 2.8255790710292894, - 2.8925291587372604, - 2.9680428239454906, - 3.053609491597563, - 3.151232700672345, - 3.263688333689539, - 3.3949692943260397, - 3.551105796178584, - 3.741820814607034, - 3.9843085365292112, - 4.313570805044471, - 4.820683354572621, - 5.936530045278681, - 5.402759700140106, - 4.65218096802192, - 4.236077953748391, - 3.9494431190899055, - 3.732403742050454, - 3.5591045340974388, - 3.41600999744229, - 3.295149279579032, - 3.191437986430473, - 3.101439929607278, - 3.022729393954114, - 2.95353518115022, - 2.8925291281195964, - 2.8386940319689726, - 2.791237738430751, - 2.7495353448113207, - 2.713089212488538, - 2.6815006518244253, - 2.654449491548058, - 2.631679122704758, - 2.6129854445656555, - 2.5982086650807354, - 2.587227247903645, - 2.579953524114385, - 2.5763306424347308, - 2.576330643330248, - 2.5799535268078198, - 2.5872272524158717, - 2.59820867144732, - 2.612985452838073, - 2.631679132952215, - 2.6544495038600386, - 2.6815006663141747, - 2.713089229297757, - 2.7495353641164995, - 2.7912377604517706, - 2.838694056980918, - 2.892529156469285, - 2.953535213279757, - 3.022729430435371, - 3.1014399711939036, - 3.191438034139256, - 3.2951493348229826, - 3.416010062260518, - 3.5591046115806835, - 3.732403837202878, - 3.949443240802369, - 4.23607812020093, - 4.6521812264764995, - 5.402760259556869, - 7.439862929356006, - 5.233170223073338, - 4.608667410547463, - 4.236077964845222, - 3.972561260916277, - 3.770563975968104, - 3.6083302751418382, - 3.4740828871669476, - 3.360732732753498, - 3.2636882845167023, - 3.1798122193618936, - 3.1068722944214215, - 3.043229749463249, - 2.9876517838818897, - 2.9391932587510436, - 2.89711915111487, - 2.860852099722619, - 2.8299360058336855, - 2.804010262093613, - 2.7827912393726955, - 2.76605888078093, - 2.753647001318965, - 2.7454363682590732, - 2.7413499518712983, - 2.7413499528811394, - 2.7454363712978918, - 2.7536470064150036, - 2.766058887982452, - 2.782791248749865, - 2.804010273741353, - 2.8299360198757233, - 2.8608521163171146, - 2.897119170462176, - 2.9391932811044454, - 2.987651809562649, - 3.043229778882031, - 3.1068723281095236, - 3.1798122580180315, - 3.2636883290795837, - 3.360732784519189, - 3.4740829479887516, - 3.6083303477935296, - 3.770564064861833, - 3.972561373691433, - 4.2360781165019805, - 4.608667637320136, - 5.233170658126849, - 7.439866980196807, - 7.140961821287471, - 5.272998783705772, - 4.674640277610831, - 4.313570645848664, - 4.057613864272009, - 3.861603910011907, - 3.704624879243526, - 3.575274666447733, - 3.4666603132839873, - 3.374305843109324, - 3.295149292206222, - 3.2270123621234372, - 3.1682984663604885, - 3.11781060911189, - 3.074636378418048, - 3.0380725950759606, - 3.0075744781738734, - 2.9827205814729374, - 2.9631882516459673, - 2.9487363617491456, - 2.939193269339499, - 2.93444869386219, - 2.934448695034267, - 2.939193272868983, - 2.948736367676382, - 2.9631882600401993, - 2.98272059243551, - 3.007574491843139, - 3.038072611634402, - 3.0746363981024145, - 3.1178106322276173, - 3.168298493302412, - 3.227012393406108, - 3.295149328509389, - 3.3743058853484778, - 3.4666603627242507, - 3.575274724897287, - 3.704624949403784, - 3.8616039961659077, - 4.057613973796574, - 4.31357079310478, - 4.6746404967593485, - 5.2729991958510105, - 7.140964572092064, - 5.5515057513379364, - 4.8743363209093395, - 4.488066621268368, - 4.221237012482759, - 4.0203373601867, - 3.861603920454817, - 3.7324037675791537, - 3.6252311125059826, - 3.5352762772548623, - 3.4592857439206, - 3.3949692513237126, - 3.340666658652607, - 3.2951493016766125, - 3.257495924558253, - 3.227012372550993, - 3.203178251656028, - 3.185610971220776, - 3.1740415081394953, - 3.168298480540447, - 3.168298481958442, - 3.174041512413941, - 3.1856109784141595, - 3.203178261876319, - 3.2270123859578526, - 3.2574959413727544, - 3.2951493221957935, - 3.3406666832709715, - 3.3949692805652947, - 3.4592857784877378, - 3.535276318104687, - 3.625231160975267, - 3.732403825598926, - 3.8616039909444506, - 4.0203374478430876, - 4.221237125557934, - 4.488066776316759, - 4.874336559441805, - 5.551506240284594, - 6.430176997508014, - 5.314444557402527, - 4.820683128121249, - 4.507224510155179, - 4.281889560313908, - 4.109419516761496, - 3.9725612956163205, - 3.861603933508449, - 3.770564007201034, - 3.69551804546081, - 3.6337783229293885, - 3.583447775914902, - 3.5431632755905715, - 3.511940147322102, - 3.4890748205694795, - 3.474082920342476, - 3.4666603407507965, - 3.466660342581917, - 3.4740829258717296, - 3.48907482990711, - 3.511940160660796, - 3.543163293220328, - 3.58344779824726, - 3.6337783505354952, - 3.695518079131514, - 3.7705640480441, - 3.861603983112268, - 3.972561356341407, - 4.109419592299612, - 4.281889656873681, - 4.50722463935701, - 4.820683315752371, - 5.3144448819416095, - 6.430178038000308, - 6.72398377733476, - 5.551505857056109, - 5.0544240906214055, - 4.745090062994907, - 4.5267398834380534, - 4.362949356416787, - 4.236078027727296, - 4.136294046068338, - 4.0576139112111065, - 3.996184854035849, - 3.9494431841919186, - 3.9156657511528192, - 3.893717670739087, - 3.882907549658957, - 3.882907552321219, - 3.893717678805605, - 3.9156657648713056, - 3.949443204005576, - 3.996184880636623, - 4.057613945633111, - 4.136294089851063, - 4.236078083211472, - 4.362949427317765, - 4.526739976071029, - 4.745090189291498, - 5.054424277361966, - 5.551506187425497, - 6.723984917518634, - 7.140962844841784, - 5.936529504175407, - 5.449965660539678, - 5.157887530236954, - 4.960444489337579, - 4.820683205761709, - 4.7210711728855985, - 4.652181116495821, - 4.608667542392035, - 4.5875743571990535, - 4.5875743623671275, - 4.608667558213383, - 4.652181143990989, - 4.721071214019948, - 4.820683263992059, - 4.960444570841271, - 5.157887646998927, - 5.449965839918794, - 5.936529832702351, - 7.140964060313825 - ], - "colorbar": { - "title": "Poincare Distance" - }, - "colorscale": "Viridis", - "showscale": true, - "size": "9" - }, - "mode": "markers", - "name": "", - "text": [ - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.93", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.93", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.82", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.82", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.02", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.02", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.20", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.20", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.09", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.09", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.03", - "Distance from (0.00, 0.00): 0.03", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.03", - "Distance from (0.00, 0.00): 0.03", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.09", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.06", - "Distance from (0.00, 0.00): 0.09", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.10", - "Distance from (0.00, 0.00): 0.12", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.20", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.14", - "Distance from (0.00, 0.00): 0.15", - "Distance from (0.00, 0.00): 0.17", - "Distance from (0.00, 0.00): 0.20", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.18", - "Distance from (0.00, 0.00): 0.19", - "Distance from (0.00, 0.00): 0.21", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.22", - "Distance from (0.00, 0.00): 0.23", - "Distance from (0.00, 0.00): 0.25", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.29", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.26", - "Distance from (0.00, 0.00): 0.27", - "Distance from (0.00, 0.00): 0.28", - "Distance from (0.00, 0.00): 0.30", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.31", - "Distance from (0.00, 0.00): 0.32", - "Distance from (0.00, 0.00): 0.34", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.35", - "Distance from (0.00, 0.00): 0.36", - "Distance from (0.00, 0.00): 0.38", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.39", - "Distance from (0.00, 0.00): 0.40", - "Distance from (0.00, 0.00): 0.41", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.43", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.44", - "Distance from (0.00, 0.00): 0.45", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.49", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.47", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.48", - "Distance from (0.00, 0.00): 0.50", - "Distance from (0.00, 0.00): 0.51", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.52", - "Distance from (0.00, 0.00): 0.53", - "Distance from (0.00, 0.00): 0.54", - "Distance from (0.00, 0.00): 0.55", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.56", - "Distance from (0.00, 0.00): 0.57", - "Distance from (0.00, 0.00): 0.58", - "Distance from (0.00, 0.00): 0.59", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.60", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.61", - "Distance from (0.00, 0.00): 0.62", - "Distance from (0.00, 0.00): 0.63", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.65", - "Distance from (0.00, 0.00): 0.66", - "Distance from (0.00, 0.00): 0.67", - "Distance from (0.00, 0.00): 0.68", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.02", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.69", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.70", - "Distance from (0.00, 0.00): 0.71", - "Distance from (0.00, 0.00): 0.72", - "Distance from (0.00, 0.00): 0.73", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.02", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.74", - "Distance from (0.00, 0.00): 0.75", - "Distance from (0.00, 0.00): 0.76", - "Distance from (0.00, 0.00): 0.77", - "Distance from (0.00, 0.00): 0.78", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.79", - "Distance from (0.00, 0.00): 0.80", - "Distance from (0.00, 0.00): 0.81", - "Distance from (0.00, 0.00): 0.82", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.83", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.84", - "Distance from (0.00, 0.00): 0.85", - "Distance from (0.00, 0.00): 0.86", - "Distance from (0.00, 0.00): 0.87", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.96", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.88", - "Distance from (0.00, 0.00): 0.89", - "Distance from (0.00, 0.00): 0.90", - "Distance from (0.00, 0.00): 0.91", - "Distance from (0.00, 0.00): 0.92", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.93", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.94", - "Distance from (0.00, 0.00): 0.95", - "Distance from (0.00, 0.00): 0.97", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.98", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 0.99", - "Distance from (0.00, 0.00): 1.00", - "Distance from (0.00, 0.00): 1.01", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.06", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.03", - "Distance from (0.00, 0.00): 1.04", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.05", - "Distance from (0.00, 0.00): 1.07", - "Distance from (0.00, 0.00): 1.08", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.09", - "Distance from (0.00, 0.00): 1.10", - "Distance from (0.00, 0.00): 1.11", - "Distance from (0.00, 0.00): 1.12", - "Distance from (0.00, 0.00): 1.13", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.14", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.15", - "Distance from (0.00, 0.00): 1.16", - "Distance from (0.00, 0.00): 1.17", - "Distance from (0.00, 0.00): 1.18", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.20", - "Distance from (0.00, 0.00): 1.21", - "Distance from (0.00, 0.00): 1.22", - "Distance from (0.00, 0.00): 1.23", - "Distance from (0.00, 0.00): 1.24", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.29", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.25", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.26", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.27", - "Distance from (0.00, 0.00): 1.28", - "Distance from (0.00, 0.00): 1.30", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.35", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.92", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.31", - "Distance from (0.00, 0.00): 1.32", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.33", - "Distance from (0.00, 0.00): 1.34", - "Distance from (0.00, 0.00): 1.36", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.37", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.38", - "Distance from (0.00, 0.00): 1.39", - "Distance from (0.00, 0.00): 1.40", - "Distance from (0.00, 0.00): 1.41", - "Distance from (0.00, 0.00): 1.42", - "Distance from (0.00, 0.00): 1.43", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.49", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.63", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.44", - "Distance from (0.00, 0.00): 1.45", - "Distance from (0.00, 0.00): 1.46", - "Distance from (0.00, 0.00): 1.47", - "Distance from (0.00, 0.00): 1.48", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.56", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.50", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.51", - "Distance from (0.00, 0.00): 1.52", - "Distance from (0.00, 0.00): 1.53", - "Distance from (0.00, 0.00): 1.54", - "Distance from (0.00, 0.00): 1.55", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.57", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.58", - "Distance from (0.00, 0.00): 1.59", - "Distance from (0.00, 0.00): 1.60", - "Distance from (0.00, 0.00): 1.61", - "Distance from (0.00, 0.00): 1.62", - "Distance from (0.00, 0.00): 1.64", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.70", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.78", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.41", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.81", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.82", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.65", - "Distance from (0.00, 0.00): 1.66", - "Distance from (0.00, 0.00): 1.67", - "Distance from (0.00, 0.00): 1.68", - "Distance from (0.00, 0.00): 1.69", - "Distance from (0.00, 0.00): 1.71", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.86", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.22", - "Distance from (0.00, 0.00): 2.28", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.53", - "Distance from (0.00, 0.00): 3.82", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.93", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.72", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.73", - "Distance from (0.00, 0.00): 1.74", - "Distance from (0.00, 0.00): 1.75", - "Distance from (0.00, 0.00): 1.76", - "Distance from (0.00, 0.00): 1.77", - "Distance from (0.00, 0.00): 1.79", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.88", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.97", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.32", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.83", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.93", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.80", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.81", - "Distance from (0.00, 0.00): 1.82", - "Distance from (0.00, 0.00): 1.83", - "Distance from (0.00, 0.00): 1.84", - "Distance from (0.00, 0.00): 1.85", - "Distance from (0.00, 0.00): 1.87", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.15", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.35", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.89", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.90", - "Distance from (0.00, 0.00): 1.91", - "Distance from (0.00, 0.00): 1.93", - "Distance from (0.00, 0.00): 1.94", - "Distance from (0.00, 0.00): 1.96", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.03", - "Distance from (0.00, 0.00): 2.06", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.64", - "Distance from (0.00, 0.00): 2.73", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.22", - "Distance from (0.00, 0.00): 3.40", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.33", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.98", - "Distance from (0.00, 0.00): 1.99", - "Distance from (0.00, 0.00): 2.00", - "Distance from (0.00, 0.00): 2.01", - "Distance from (0.00, 0.00): 2.02", - "Distance from (0.00, 0.00): 2.04", - "Distance from (0.00, 0.00): 2.05", - "Distance from (0.00, 0.00): 2.07", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.13", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.36", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.88", - "Distance from (0.00, 0.00): 3.00", - "Distance from (0.00, 0.00): 3.13", - "Distance from (0.00, 0.00): 3.28", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.43", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.08", - "Distance from (0.00, 0.00): 2.09", - "Distance from (0.00, 0.00): 2.10", - "Distance from (0.00, 0.00): 2.11", - "Distance from (0.00, 0.00): 2.12", - "Distance from (0.00, 0.00): 2.14", - "Distance from (0.00, 0.00): 2.16", - "Distance from (0.00, 0.00): 2.18", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.26", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.34", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.49", - "Distance from (0.00, 0.00): 2.54", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.85", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.79", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.19", - "Distance from (0.00, 0.00): 2.20", - "Distance from (0.00, 0.00): 2.21", - "Distance from (0.00, 0.00): 2.23", - "Distance from (0.00, 0.00): 2.25", - "Distance from (0.00, 0.00): 2.27", - "Distance from (0.00, 0.00): 2.29", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.38", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.51", - "Distance from (0.00, 0.00): 2.57", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.69", - "Distance from (0.00, 0.00): 2.76", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.16", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.66", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 4.27", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 6.20", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.30", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.31", - "Distance from (0.00, 0.00): 2.32", - "Distance from (0.00, 0.00): 2.33", - "Distance from (0.00, 0.00): 2.35", - "Distance from (0.00, 0.00): 2.37", - "Distance from (0.00, 0.00): 2.39", - "Distance from (0.00, 0.00): 2.42", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.52", - "Distance from (0.00, 0.00): 2.56", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.66", - "Distance from (0.00, 0.00): 2.72", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 3.03", - "Distance from (0.00, 0.00): 3.14", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.41", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.80", - "Distance from (0.00, 0.00): 4.08", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 5.19", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.43", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.44", - "Distance from (0.00, 0.00): 2.45", - "Distance from (0.00, 0.00): 2.46", - "Distance from (0.00, 0.00): 2.48", - "Distance from (0.00, 0.00): 2.50", - "Distance from (0.00, 0.00): 2.53", - "Distance from (0.00, 0.00): 2.55", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.62", - "Distance from (0.00, 0.00): 2.67", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.97", - "Distance from (0.00, 0.00): 3.05", - "Distance from (0.00, 0.00): 3.15", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.55", - "Distance from (0.00, 0.00): 3.74", - "Distance from (0.00, 0.00): 3.98", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.58", - "Distance from (0.00, 0.00): 2.59", - "Distance from (0.00, 0.00): 2.60", - "Distance from (0.00, 0.00): 2.61", - "Distance from (0.00, 0.00): 2.63", - "Distance from (0.00, 0.00): 2.65", - "Distance from (0.00, 0.00): 2.68", - "Distance from (0.00, 0.00): 2.71", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.79", - "Distance from (0.00, 0.00): 2.84", - "Distance from (0.00, 0.00): 2.89", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 3.02", - "Distance from (0.00, 0.00): 3.10", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.42", - "Distance from (0.00, 0.00): 3.56", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 5.40", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.74", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.75", - "Distance from (0.00, 0.00): 2.77", - "Distance from (0.00, 0.00): 2.78", - "Distance from (0.00, 0.00): 2.80", - "Distance from (0.00, 0.00): 2.83", - "Distance from (0.00, 0.00): 2.86", - "Distance from (0.00, 0.00): 2.90", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.99", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.11", - "Distance from (0.00, 0.00): 3.18", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.36", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.61", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 5.23", - "Distance from (0.00, 0.00): 7.44", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.93", - "Distance from (0.00, 0.00): 2.94", - "Distance from (0.00, 0.00): 2.95", - "Distance from (0.00, 0.00): 2.96", - "Distance from (0.00, 0.00): 2.98", - "Distance from (0.00, 0.00): 3.01", - "Distance from (0.00, 0.00): 3.04", - "Distance from (0.00, 0.00): 3.07", - "Distance from (0.00, 0.00): 3.12", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.37", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.31", - "Distance from (0.00, 0.00): 4.67", - "Distance from (0.00, 0.00): 5.27", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.17", - "Distance from (0.00, 0.00): 3.19", - "Distance from (0.00, 0.00): 3.20", - "Distance from (0.00, 0.00): 3.23", - "Distance from (0.00, 0.00): 3.26", - "Distance from (0.00, 0.00): 3.30", - "Distance from (0.00, 0.00): 3.34", - "Distance from (0.00, 0.00): 3.39", - "Distance from (0.00, 0.00): 3.46", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.73", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 4.02", - "Distance from (0.00, 0.00): 4.22", - "Distance from (0.00, 0.00): 4.49", - "Distance from (0.00, 0.00): 4.87", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.47", - "Distance from (0.00, 0.00): 3.49", - "Distance from (0.00, 0.00): 3.51", - "Distance from (0.00, 0.00): 3.54", - "Distance from (0.00, 0.00): 3.58", - "Distance from (0.00, 0.00): 3.63", - "Distance from (0.00, 0.00): 3.70", - "Distance from (0.00, 0.00): 3.77", - "Distance from (0.00, 0.00): 3.86", - "Distance from (0.00, 0.00): 3.97", - "Distance from (0.00, 0.00): 4.11", - "Distance from (0.00, 0.00): 4.28", - "Distance from (0.00, 0.00): 4.51", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 5.31", - "Distance from (0.00, 0.00): 6.43", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.88", - "Distance from (0.00, 0.00): 3.89", - "Distance from (0.00, 0.00): 3.92", - "Distance from (0.00, 0.00): 3.95", - "Distance from (0.00, 0.00): 4.00", - "Distance from (0.00, 0.00): 4.06", - "Distance from (0.00, 0.00): 4.14", - "Distance from (0.00, 0.00): 4.24", - "Distance from (0.00, 0.00): 4.36", - "Distance from (0.00, 0.00): 4.53", - "Distance from (0.00, 0.00): 4.75", - "Distance from (0.00, 0.00): 5.05", - "Distance from (0.00, 0.00): 5.55", - "Distance from (0.00, 0.00): 6.72", - "Distance from (0.00, 0.00): 7.14", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.59", - "Distance from (0.00, 0.00): 4.61", - "Distance from (0.00, 0.00): 4.65", - "Distance from (0.00, 0.00): 4.72", - "Distance from (0.00, 0.00): 4.82", - "Distance from (0.00, 0.00): 4.96", - "Distance from (0.00, 0.00): 5.16", - "Distance from (0.00, 0.00): 5.45", - "Distance from (0.00, 0.00): 5.94", - "Distance from (0.00, 0.00): 7.14" - ], - "type": "scatter", - "x": [ - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595 - ], - "y": [ - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899 - ] - }, - { - "marker": { - "color": "rgb(200, 50, 50)", - "size": "10" - }, - "mode": "markers+text", - "name": "Distance from (0.00, 0.00)", - "type": "scatter", - "x": [ - 0 - ], - "y": [ - 0 - ] - } - ], - "layout": { - "height": 800, - "hovermode": "closest", - "showlegend": false, - "title": "Poincare Distances from (0.00, 0.00)", - "width": 900 - } - }, - "text/html": [ - "
" - ], - "text/vnd.plotly.v1+html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "iplot(poincare_distance_heatmap([0.0, 0.0]))" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "data": [ - { - "marker": { - "color": [ - 8.817520258163979, - 7.607104179511697, - 7.114300066678511, - 6.815726360209999, - 6.611532448033859, - 6.464765512191273, - 6.357894254226662, - 6.281493353158949, - 6.230220036265378, - 6.2011217117863735, - 6.192875467166922, - 6.205486370658124, - 6.240287462536957, - 6.300241436001868, - 6.390701121632819, - 6.521101837883849, - 6.70898480483828, - 6.991312675611428, - 7.467945828347758, - 8.662276051243882, - 8.42336401051951, - 7.245860938905707, - 6.743498837970188, - 6.428627533206476, - 6.204480148537564, - 6.03462997651729, - 5.901434677508027, - 5.795061202290333, - 5.709525582579129, - 5.640975345319219, - 5.586847888564072, - 5.54542196498251, - 5.515565424900537, - 5.496590451173972, - 5.488173629916909, - 5.490320225811235, - 5.503364172806501, - 5.528003780236842, - 5.5653816436002685, - 5.617229391332406, - 5.686119923614513, - 5.775915911003154, - 5.892611401105784, - 6.046049387536831, - 6.253882004164689, - 6.552545592110836, - 7.038816516758468, - 8.20035476696892, - 8.144634092593508, - 7.024600499752425, - 6.5262895531407015, - 6.208028772911535, - 5.977633949928483, - 5.799841645822194, - 5.657394624155915, - 5.540578360987761, - 5.4434065193845775, - 5.361953410765926, - 5.293529834092103, - 5.23623803270205, - 5.188715003813081, - 5.149977048843062, - 5.119322448449156, - 5.096269572764991, - 5.080517966959244, - 5.071925453727956, - 5.07049750347368, - 5.076387224515736, - 5.089905973357845, - 5.111546232721649, - 5.142020506646101, - 5.182323191094436, - 5.233827880001362, - 5.298442796337723, - 5.378867464364907, - 5.479037735002412, - 5.604949929427102, - 5.766328361368968, - 5.980439847864506, - 6.282557188707637, - 6.764873749851185, - 7.8690713581886955, - 7.275344611262124, - 6.594359819943777, - 6.204032743333538, - 5.93289712102345, - 5.727436304382859, - 5.563880394289452, - 5.42959075501553, - 5.317056398376221, - 5.2214630190178095, - 5.139553101949071, - 5.069033075482102, - 5.008240228408199, - 4.9559441162759335, - 4.911222539027734, - 4.873381274507895, - 4.841900773175523, - 4.816400229324687, - 4.79661336687353, - 4.782372527108621, - 4.77359900900192, - 4.770298498268872, - 4.7725610570681285, - 4.780565674369996, - 4.794589905147351, - 4.815025762274929, - 4.8424039105744034, - 4.877429575674228, - 4.921035829678596, - 4.97446383840064, - 5.039386864886104, - 5.118108844779264, - 5.213897451350211, - 5.331576925419293, - 5.478667951532753, - 5.667818607654, - 5.922807968707051, - 6.297161590100261, - 6.962354440136341, - 8.876302913467576, - 7.00524475943387, - 6.4035616050969875, - 6.038933775147392, - 5.779177420473409, - 5.579118780798004, - 5.41783447191726, - 5.283915243784023, - 5.170461396803885, - 5.072990682032647, - 4.988435397852867, - 4.914612107399089, - 4.8499197493488175, - 4.793157578995335, - 4.7434102210618985, - 4.699972374682713, - 4.662298030479241, - 4.629965453039063, - 4.602652678937682, - 4.580120282880898, - 4.56219936067759, - 4.548783423081131, - 4.53982338177598, - 4.535325147854154, - 4.535349620978916, - 4.540015069263686, - 4.549502121725043, - 4.564061853021409, - 4.584027779257543, - 4.609833070873748, - 4.642035033967545, - 4.681350107528559, - 4.728704626505355, - 4.785310097457447, - 4.852778126926378, - 4.933302462166995, - 5.029960862854903, - 5.147245366951928, - 5.292065178272656, - 5.475838751840824, - 5.719498365579107, - 6.068226357685836, - 6.654214881233596, - 8.50979350051634, - 9.182118707113665, - 6.972807986373422, - 6.345467771198585, - 5.969818634070069, - 5.703011248841825, - 5.497483554171768, - 5.331471108411591, - 5.193188242409684, - 5.075537755314553, - 4.973920341906197, - 4.885191313974882, - 4.807111546791473, - 4.73803595304398, - 4.6767260315857735, - 4.622231640578957, - 4.5738135212246505, - 4.530890910239201, - 4.493005203623392, - 4.459794243638167, - 4.430973857813028, - 4.40632449818631, - 4.38568157830308, - 4.368928582239762, - 4.355992334581037, - 4.346840037203823, - 4.341477837152081, - 4.339950815237309, - 4.3423443953936705, - 4.348787285210981, - 4.359456183420063, - 4.374582648534407, - 4.394462739781846, - 4.419470356117054, - 4.450075675849753, - 4.486870848750874, - 4.530606311872678, - 4.5822431572324795, - 4.643030588877142, - 4.71462413123557, - 4.799273062637423, - 4.900131924493578, - 5.021809558894872, - 5.1714123724218695, - 5.360734895500924, - 5.6115500759959, - 5.971428124077289, - 6.583226208212855, - 8.777234383643412, - 7.14874803711527, - 6.395808455285744, - 5.977136033918456, - 5.687713994808816, - 5.46766013139024, - 5.291109664556151, - 5.144517678519978, - 5.019904040290458, - 4.912175278363568, - 4.817886398553698, - 4.734603223414225, - 4.660546510677647, - 4.594380548860501, - 4.535081160966407, - 4.481849872342322, - 4.434056192651848, - 4.391197705879111, - 4.352871830028474, - 4.318755457330392, - 4.288590063791138, - 4.262170714241512, - 4.239337914283097, - 4.219971600065638, - 4.203986783051522, - 4.191330522748365, - 4.181980012174164, - 4.175941645441051, - 4.173251005764335, - 4.173973773926651, - 4.178207618950371, - 4.186085201652367, - 4.197778506377392, - 4.213504827990522, - 4.233534897035056, - 4.258203852185536, - 4.28792610866167, - 4.323215696513245, - 4.364714480004488, - 4.413232047354445, - 4.469803409235904, - 4.535774812187965, - 4.612935717048876, - 4.703730186428496, - 4.811612750371892, - 4.9416860521821295, - 5.101939019170382, - 5.305924972370346, - 5.579516698984992, - 5.982604020650537, - 6.72021104144955, - 7.6878167009407, - 6.570069311435301, - 6.060862403435175, - 5.729303459493622, - 5.484306855262415, - 5.29086066230698, - 5.131760533663282, - 4.997273326086502, - 4.881358712285865, - 4.780013793831974, - 4.690452881476236, - 4.610662891170418, - 4.539145192485096, - 4.474757336594392, - 4.416611643253921, - 4.364007810103553, - 4.316386746786181, - 4.27329812974252, - 4.234377105090119, - 4.199327260213848, - 4.167907999045404, - 4.139925083590563, - 4.115223504005747, - 4.093682101114924, - 4.075209540993457, - 4.059741362570713, - 4.047237905597036, - 4.037682990246662, - 4.03108326938468, - 4.027468215955445, - 4.026890745523068, - 4.02942851156789, - 4.0351859525726805, - 4.044297219689548, - 4.0569301777055085, - 4.07329175841969, - 4.093635066871561, - 4.118268816596582, - 4.147569931676453, - 4.182000553095088, - 4.222131314493728, - 4.268673766769601, - 4.322526524182139, - 4.384842636179306, - 4.457130982525939, - 4.541414528477204, - 4.6404884606497845, - 4.758364776517085, - 4.901092490965601, - 5.0784130118941055, - 5.307538518877556, - 5.6234883372654485, - 6.117355073748488, - 7.220038199340893, - 6.948913071755296, - 6.240502144904074, - 5.833812935164029, - 5.548666375731108, - 5.329809257107764, - 5.152872538455251, - 5.004938004076382, - 4.87833156525066, - 4.768124527201387, - 4.670966224058633, - 4.584478208423054, - 4.506914130778269, - 4.436956716175144, - 4.373590470753538, - 4.316018588830349, - 4.263606861194759, - 4.215844724294281, - 4.172317555575401, - 4.132686562610695, - 4.096673932171842, - 4.064051707614757, - 4.034633365966263, - 4.0082673901971555, - 3.9848323462529294, - 3.9642331192220155, - 3.946398063312731, - 3.9312768915453495, - 3.9188391831645255, - 3.9090734262992064, - 3.9019865448485653, - 3.8976038852198798, - 3.8959696629495713, - 3.897147893644077, - 3.901223859325254, - 3.9083061927173786, - 3.9185297015360208, - 3.9320591069394415, - 3.949093941540128, - 3.9698749526672454, - 3.9946925013811296, - 4.023897661829109, - 4.057917049628711, - 4.097272910988711, - 4.1426108064858855, - 4.1947385419431304, - 4.254682241222577, - 4.3237694213269675, - 4.4037562692453465, - 4.497030649892664, - 4.606952212663521, - 4.73845818928575, - 4.899230747909597, - 5.102195717266981, - 5.371729279530932, - 5.76309131951927, - 6.456467199013312, - 7.9607578444559115, - 6.577183156576026, - 6.0215159534836, - 5.669225682472753, - 5.411635193510818, - 5.209158999144965, - 5.042872179263547, - 4.902247229814332, - 4.780824425092475, - 4.674356827427277, - 4.579905529404217, - 4.495354949993837, - 4.419133941046611, - 4.3500460176026365, - 4.287161193325199, - 4.229744420962837, - 4.177206730552538, - 4.129070959994984, - 4.084947163719736, - 4.044514617135653, - 4.007508425969709, - 3.973709421221744, - 3.9429364457945097, - 3.9150404152433067, - 3.889899718960593, - 3.867416653155361, - 3.847514663857572, - 3.8301362398554635, - 3.81524134031609, - 3.8028062753656235, - 3.792822983865154, - 3.785298673653593, - 3.780255807604499, - 3.7777324355284425, - 3.777782888637563, - 3.7804788713649815, - 3.78591100636885, - 3.79419091451172, - 3.80545394513409, - 3.8198627167858343, - 3.8376116902590987, - 3.858933082639212, - 3.8841045561367986, - 3.913459299337431, - 3.9473993948917214, - 3.9864137930016597, - 4.031102881683937, - 4.082212736198607, - 4.140683962008091, - 4.207723236716991, - 4.284911458359975, - 4.374373500212309, - 4.479057090895967, - 4.603217506428023, - 4.753322317894022, - 4.939906373673798, - 5.181901431985948, - 5.518899313791547, - 6.059583033382146, - 7.428489281547969, - 7.31101728863467, - 6.346117158875158, - 5.866837005910233, - 5.546277396314251, - 5.305762201453932, - 5.113731969398123, - 4.954320735087361, - 4.818420272256178, - 4.700318822379511, - 4.596200597301893, - 4.503392285007016, - 4.419950454827351, - 4.344420062964649, - 4.275685412200496, - 4.212874111165074, - 4.155292926046455, - 4.102383619005834, - 4.0536917525547205, - 4.008844160103603, - 3.967532362010629, - 3.9295001561144045, - 3.8945342009417008, - 3.8624567855989667, - 3.833120226084144, - 3.8064024920843234, - 3.7822037805348248, - 3.760443830369578, - 3.7410598284020535, - 3.724004796511841, - 3.7092463801432305, - 3.696765980841404, - 3.6865581934480334, - 3.6786305233004533, - 3.673003371576536, - 3.6697102888170177, - 3.6687985085470096, - 3.6703297857173522, - 3.6743815794104533, - 3.681048637153568, - 3.6904450609043344, - 3.7027069646075406, - 3.7179958734610525, - 3.7365030705413975, - 3.758455174596811, - 3.7841213450283493, - 3.8138226744111097, - 3.8479445746368204, - 3.886953338578264, - 3.9314186483827314, - 3.9820447511565233, - 4.0397146019197585, - 4.105553994661657, - 4.181027587314003, - 4.268087927840682, - 4.369416936154959, - 4.488838488072339, - 4.6320719005463555, - 4.808232422114469, - 5.033192499727722, - 5.338517527771677, - 5.802889058612421, - 6.75321167641038, - 6.9940905387752945, - 6.192802652627993, - 5.755504168558777, - 5.45380777992744, - 5.22375369919448, - 5.038182615387941, - 4.883004118295455, - 4.749963499828579, - 4.633809826125005, - 4.530997621574963, - 4.439022269469887, - 4.356050754721933, - 4.280703041759786, - 4.211915890354882, - 4.148854420479803, - 4.090852657697596, - 4.037372372144179, - 3.9879738584109106, - 3.942294738739601, - 3.9000342957008605, - 3.860941702292138, - 3.8248070550895945, - 3.7914544607457885, - 3.7607366524429526, - 3.7325307648071004, - 3.7067349998034587, - 3.6832659887154127, - 3.662056706884176, - 3.643054835207745, - 3.626221489929691, - 3.611530263003899, - 3.598966531379926, - 3.5885270063893535, - 3.5802195051083525, - 3.574062934959573, - 3.5700874915849283, - 3.5683350787897488, - 3.5688599687478826, - 3.5717297313541967, - 3.5770264744492883, - 3.5848484527030906, - 3.595312123703272, - 3.6085547573303174, - 3.6247377418266042, - 3.6440507815457717, - 3.6667172539540642, - 3.6930010974737906, - 3.7232157536569863, - 3.757735913496845, - 3.7970131623429255, - 3.841597155583427, - 3.8921648190216005, - 3.9495614916289155, - 4.014860363458866, - 4.089450895745099, - 4.175174991766085, - 4.274545607452033, - 4.391115999060119, - 4.530144314914483, - 4.699891905946864, - 4.914455250830186, - 5.200999156335891, - 5.623488349154121, - 6.410314655319692, - 6.816356735225208, - 6.09121433580837, - 5.676477235798468, - 5.385269660168069, - 5.1610502126433095, - 4.979023663903544, - 4.826087029667218, - 4.6944707196749045, - 4.579189642551153, - 4.476855902121584, - 4.385063944182835, - 4.302045901428679, - 4.226466102189232, - 4.157292333493488, - 4.093711843980617, - 4.035074644550728, - 3.9808541172125405, - 3.9306189645525498, - 3.884012803974199, - 3.840739045199575, - 3.8005495004017416, - 3.763235684049036, - 3.728622085973844, - 3.6965609160932247, - 3.6669279637701773, - 3.6396193139683097, - 3.614548731624926, - 3.5916455749007326, - 3.570853133550002, - 3.55212731482105, - 3.5354356188939877, - 3.520756360850498, - 3.5080781079256447, - 3.4973993103067498, - 3.4887281117595865, - 3.482082333456447, - 3.4774896310370695, - 3.4749878315903726, - 3.4746254643407664, - 3.476462506840532, - 3.480571377988151, - 3.4870382209517548, - 3.4959645340693797, - 3.507469227399732, - 3.5216912087684484, - 3.5387926387455293, - 3.5589630432276205, - 3.582424541575345, - 3.609438547423308, - 3.6403144438443573, - 3.6754209494657895, - 3.7152012185663903, - 3.7601932258948434, - 3.811057797822603, - 3.8686179857837812, - 3.933915749672399, - 4.008295940827521, - 4.093535026795857, - 4.192046572420501, - 4.307225886818495, - 4.444064870678682, - 4.610339316332738, - 4.819157802013657, - 5.0953205462235385, - 5.495373344935002, - 6.206195884339111, - 6.722987093935125, - 6.0286730569530915, - 5.623488303072359, - 5.336635141599732, - 5.114698382906787, - 4.9339123850143904, - 4.781611999973501, - 4.650245109078581, - 4.534946582613142, - 4.432399864619715, - 4.340244256466825, - 4.256741295851944, - 4.180575190499479, - 4.110727457394468, - 4.046394944751588, - 3.9869343891188103, - 3.9318238321813204, - 3.8806351038491314, - 3.833013776381611, - 3.7886642882306307, - 3.7473387240736376, - 3.7088282315715415, - 3.672956373490828, - 3.639573923513603, - 3.6085547552395747, - 3.5797925707955467, - 3.5531982831880433, - 3.5286979146531134, - 3.506230907999208, - 3.485748773422833, - 3.4672140122767163, - 3.450599273689233, - 3.435886711100984, - 3.4230675146478893, - 3.41214160257369, - 3.403117461023122, - 3.396012127065926, - 3.3908513149815795, - 3.3876696910150197, - 3.3865113073143998, - 3.38743021193338, - 3.3904912590381233, - 3.3957711523276948, - 3.403359765849491, - 3.4133618008165714, - 3.425898856040342, - 3.4411120150822865, - 3.4591650879764595, - 3.48024869349843, - 3.5045854356810895, - 3.5324365251928693, - 3.564110337376319, - 3.5999736084299503, - 3.6404662893195474, - 3.6861215710657613, - 3.7375933828394916, - 3.7956949582182924, - 3.861454263118389, - 3.9361959609249224, - 4.021666762498951, - 4.120234983930064, - 4.23522416125794, - 4.371505762978774, - 4.536637603832513, - 4.743289886466618, - 5.015232671840046, - 5.405884949544825, - 6.086047681435815, - 6.693680981476129, - 5.998772345869838, - 5.592939575678627, - 5.305409971097939, - 5.082772721163822, - 4.901263106498333, - 4.748215886827756, - 4.6160784434764315, - 4.499984939201507, - 4.396617980755294, - 4.303615935546464, - 4.219239324855005, - 4.142171262747447, - 4.071392095728424, - 4.006097422241222, - 3.945642645324281, - 3.8895043834158933, - 3.8372529460678226, - 3.788532279356929, - 3.7430450796231796, - 3.700541561887812, - 3.660810863315976, - 3.623674380142828, - 3.588980546114811, - 3.5566007016212633, - 3.5264257995377015, - 3.4983637614452974, - 3.472337345917552, - 3.448282425195969, - 3.4261465919250362, - 3.4058880364509876, - 3.387474649403068, - 3.3708833151890247, - 3.3560993705825704, - 3.3431162094352374, - 3.3319350202090123, - 3.322564647883001, - 3.315021576144236, - 3.3093300298907984, - 3.3055222021942536, - 3.303638614227601, - 3.303728621525543, - 3.305851085612975, - 3.310075236898467, - 3.316481763282673, - 3.32516416985236, - 3.336230469253105, - 3.34980528117598, - 3.3660324447498318, - 3.3850782822687138, - 3.4071357007166343, - 3.4324293851997774, - 3.4612224352458054, - 3.4938249360546543, - 3.5306051664173044, - 3.5720044630708516, - 3.6185572552636276, - 3.6709185710221433, - 3.729902610441378, - 3.7965381793368382, - 3.872150658352298, - 3.9584873542887387, - 4.057917054601675, - 4.173763630082917, - 4.3108987166403665, - 4.476880053838106, - 4.6843773291736674, - 4.95715904403924, - 5.348639145853166, - 6.029592918543186, - 6.722987093935125, - 5.998772345869838, - 5.58295185881618, - 5.290135293252053, - 5.064061840520089, - 4.880026248710742, - 4.724962157176943, - 4.5911167634322245, - 4.473512941733112, - 4.368766297603264, - 4.274472275412805, - 4.188862471503969, - 4.110599654638575, - 4.038649312578005, - 3.972195816226685, - 3.910585811828234, - 3.853288879260707, - 3.7998695039541004, - 3.749966675090234, - 3.703278753438965, - 3.6595520609372296, - 3.6185721505303023, - 3.58015704037993, - 3.54415191086564, - 3.5104249069114757, - 3.4788637869465044, - 3.4493732287141556, - 3.421872651002533, - 3.396294445539956, - 3.3725825389898785, - 3.3506912240107503, - 3.330584212648128, - 3.3122338762367893, - 3.2956206444538356, - 3.280732542857023, - 3.267564853661467, - 3.2561198890240006, - 3.2464068700057065, - 3.2384419079020907, - 3.232248087966588, - 3.2278556588902125, - 3.2253023349220094, - 3.224633721420734, - 3.225903879150595, - 3.229176048060405, - 3.234523557987466, - 3.242030962200334, - 3.2517954406150387, - 3.263928533831187, - 3.2785582881755215, - 3.2958319176394726, - 3.315919123777224, - 3.3390162634943144, - 3.365351623568062, - 3.3951921595196106, - 3.428852200563305, - 3.466704836678244, - 3.509197029426811, - 3.5568699945499467, - 3.610387213110866, - 3.6705737586396863, - 3.738472892853246, - 3.8154298919843233, - 3.9032204932943135, - 4.00425587038544, - 4.1219263185381845, - 4.261214148340948, - 4.429876635222506, - 4.640983908121976, - 4.919244294458352, - 5.320921009657543, - 6.031406240055281, - 6.816356735225208, - 6.0286730569530915, - 5.592939575678627, - 5.290135293252053, - 5.05789631156226, - 4.869560226167414, - 4.71123968182586, - 4.5747768259235695, - 4.454971417990719, - 4.348305869761709, - 4.252291042241368, - 4.165102096316823, - 4.085362575288722, - 4.012009737351466, - 3.9442070082898075, - 3.881285062081296, - 3.8227009870174897, - 3.7680092639809755, - 3.7168406845241724, - 3.6688867414702284, - 3.623887875835139, - 3.581624495198226, - 3.5419100193429944, - 3.50458543271915, - 3.4695149733765325, - 3.4365826906947636, - 3.4056896757163324, - 3.376751818475497, - 3.349697983055547, - 3.3244685175882265, - 3.3010140359714946, - 3.2792944227288703, - 3.2592780235520054, - 3.2409409926319217, - 3.2242667745887568, - 3.2092457041591023, - 3.195874711167181, - 3.184157121973786, - 3.174102551786031, - 3.165726885101921, - 3.159052344311998, - 3.154107649229719, - 3.15092827321661, - 3.1495568047629674, - 3.150043427060111, - 3.1524465324766404, - 3.1568334942110647, - 3.1632816241092674, - 3.171879354211384, - 3.182727690723489, - 3.1959420037687147, - 3.211654235846116, - 3.2300156384168757, - 3.2512001823859595, - 3.275408838838161, - 3.3028749978750134, - 3.3338713960730244, - 3.3687190731814067, - 3.4077991024009666, - 3.4515681792720616, - 3.5005796855159135, - 3.5555126952376006, - 3.617212795956087, - 3.6867509979159023, - 3.765511274138059, - 3.8553252235696784, - 3.9586879870939895, - 4.079122398386757, - 4.22183319126722, - 4.394981967092226, - 4.6124590961027625, - 4.900929279904846, - 5.322758026107083, - 6.096967397703666, - 6.9940905387752945, - 6.09121433580837, - 5.623488303072359, - 5.305409971097939, - 5.064061840520089, - 4.869560226167414, - 4.706702822297419, - 4.566694443367345, - 4.443988261415343, - 4.334861857189555, - 4.236697120736931, - 4.147583829642134, - 4.066086634811776, - 3.9911007506730636, - 3.921758684264645, - 3.857367770089946, - 3.7973670585135446, - 3.741296784344783, - 3.688776256464755, - 3.639487530512882, - 3.593163143479786, - 3.5495767589308436, - 3.5085359355785664, - 3.4698764701167497, - 3.4334579245285988, - 3.3991600567298255, - 3.3668799488465737, - 3.3365296806726694, - 3.308034434003695, - 3.2813309412738287, - 3.2563662123456294, - 3.2330964885434197, - 3.211486384540815, - 3.1915081875365905, - 3.1731412900082403, - 3.1563717377439926, - 3.141191879206113, - 3.12760010585835, - 3.1156006761178117, - 3.105203618239731, - 3.0964247098548294, - 3.089285534176982, - 3.083813615198253, - 3.080042636603798, - 3.078012751794037, - 3.0777709954381263, - 3.07937181057401, - 3.0828777096353894, - 3.0883600932116044, - 3.0959002572166154, - 3.105590627982213, - 3.117536276325418, - 3.1318567768946197, - 3.148688499535862, - 3.1681874471597538, - 3.1905327927506666, - 3.215931321409711, - 3.2446230587638025, - 3.2768884757202685, - 3.3130578188403295, - 3.35352335379041, - 3.3987556733110504, - 3.4493257910044024, - 3.5059356590519384, - 3.569461269111585, - 3.6410151098305183, - 3.7220394332474873, - 3.814450563242604, - 3.920871911561494, - 4.0450304045340655, - 4.192476590590048, - 4.372008600459687, - 4.598830924777271, - 4.902828693998585, - 5.356920152012689, - 6.246608029189181, - 7.31101728863467, - 6.192802652627993, - 5.676477235798468, - 5.336635141599732, - 5.082772721163822, - 4.880026248710742, - 4.71123968182586, - 4.566694443367345, - 4.440350350126276, - 4.328197264940259, - 4.227437828545983, - 4.136044202982954, - 4.052500554035568, - 3.975645060756646, - 3.9045685914613406, - 3.8385472850404465, - 3.77699627690338, - 3.719437083031881, - 3.6654740768275866, - 3.614777180498098, - 3.5670689029147358, - 3.522114480177859, - 3.4797142718503102, - 3.4396978242492193, - 3.401919184306542, - 3.3662531644613103, - 3.332592339970018, - 3.30084461695212, - 3.270931250155422, - 3.242785218891961, - 3.2163498912309416, - 3.1915779226253003, - 3.168430347263235, - 3.1468758296714063, - 3.126890051227977, - 3.108455211827333, - 3.0915596313792553, - 3.076197439422757, - 3.0623683441143763, - 3.05007747438638, - 3.039335291300259, - 3.030157566659769, - 3.022565428895267, - 3.016585478180348, - 3.012249974785601, - 3.009597106912424, - 3.008671346796529, - 3.0095239068639645, - 3.0122133113356315, - 3.0168061031344604, - 3.023377711551433, - 3.032013513276715, - 3.0428101286559266, - 3.0558770071637307, - 3.07133837219269, - 3.089335616904741, - 3.110030272369029, - 3.1336077098848065, - 3.160281796321883, - 3.190300802233695, - 3.223954979445279, - 3.2615863969287466, - 3.303601882194256, - 3.350490312130589, - 3.4028461215096697, - 3.4614019075320352, - 3.5270746958230257, - 3.6010333544608573, - 3.68479991675699, - 3.780407573939584, - 3.890658198324002, - 4.019565608883827, - 4.173172851705276, - 4.361200563590279, - 4.600806063065874, - 4.926853594896205, - 5.429846621819233, - 6.535190558494213, - 7.9607578444559115, - 6.346117158875158, - 5.755504168558777, - 5.385269660168069, - 5.114698382906787, - 4.901263106498333, - 4.724962157176943, - 4.5747768259235695, - 4.443988261415343, - 4.328197264940259, - 4.224367297737389, - 4.13031527133198, - 4.044420080569864, - 3.9654459041356613, - 3.8924299850558945, - 3.8246085702375123, - 3.7613664287843034, - 3.702201481264697, - 3.646699420756465, - 3.594515122341649, - 3.545358775589138, - 3.4989853727548326, - 3.4551866263065936, - 3.413784674952624, - 3.3746271265839263, - 3.337583114529296, - 3.3025401317072194, - 3.2694014690567816, - 3.238084128612669, - 3.2085171133452857, - 3.1806400191239144, - 3.154401871380271, - 3.129760161965699, - 3.106680051498939, - 3.085133710032509, - 3.0650997747238757, - 3.0465629078168237, - 3.0295134419374024, - 3.0139471027250404, - 2.9998648013332976, - 2.9872724914864395, - 2.9761810876797674, - 2.966606442857012, - 2.958569385568978, - 2.9520958182905557, - 2.9472168803245786, - 2.9439691806325587, - 2.9423951080973354, - 2.942543229252951, - 2.9444687865521955, - 2.948234313962167, - 2.953910391319571, - 2.9615765647583485, - 2.971322468075742, - 2.983249189727992, - 2.9974709430822246, - 3.014117114787397, - 3.033334789377541, - 3.0552918799860014, - 3.080181039037263, - 3.1082245845807295, - 3.1396807661115003, - 3.174851821700458, - 3.214094467472156, - 3.257833746019559, - 3.306581601196387, - 3.3609622448906387, - 3.421747519213856, - 3.4899073733528185, - 3.566683922945192, - 3.653703672234386, - 3.7531542199154324, - 3.8680757361033873, - 4.002870185557033, - 4.164258337394922, - 4.363259990827639, - 4.619877107202403, - 4.976636435297189, - 5.554252049920849, - 7.156372494484362, - 6.577183156576026, - 5.866837005910233, - 5.45380777992744, - 5.1610502126433095, - 4.9339123850143904, - 4.748215886827756, - 4.5911167634322245, - 4.454971417990719, - 4.334861857189555, - 4.227437828545983, - 4.13031527133198, - 4.041738276744514, - 3.9603771360843107, - 3.8852016089677206, - 3.815398113747299, - 3.750313755100698, - 3.689417387575466, - 3.632271851648136, - 3.5785137463150285, - 3.5278384122227013, - 3.479988596267137, - 3.4347457680003366, - 3.3919233794859904, - 3.351361571866247, - 3.3129229742485515, - 3.2764893381120697, - 3.241958818508066, - 3.209243761572892, - 3.178268892565213, - 3.148969823927325, - 3.1212918215387213, - 3.095188781278305, - 3.0706223785549254, - 3.047561361527216, - 3.0259809649693996, - 3.005862426622547, - 2.9871925917457784, - 2.969963594704259, - 2.9541726089923097, - 2.9398216592371513, - 2.9269174905764905, - 2.9154714924437752, - 2.9054996753060394, - 2.8970227003489812, - 2.8900659635560646, - 2.8846597371466958, - 2.880839372990921, - 2.8786455744816806, - 2.8781247455125643, - 2.879329427793221, - 2.8823188408821654, - 2.887159543218488, - 2.8939262373443144, - 2.902702748772866, - 2.9135832160443633, - 2.926673540079361, - 2.9420931549082474, - 2.959977200541037, - 2.980479204042152, - 3.0037744095749006, - 3.030063946425828, - 3.0595800920890133, - 3.0925929850696012, - 3.1294192843952735, - 3.1704334844210917, - 3.216082914787047, - 3.266907954763082, - 3.3235697880993413, - 3.3868893344485436, - 3.457903220843029, - 3.537946594435798, - 3.628779861499823, - 3.7327906504244384, - 3.8533318665674985, - 3.995323260073205, - 4.166409310940894, - 4.379434009469763, - 4.658574985098023, - 5.058482602643172, - 5.756199921724373, - 6.948913071755296, - 6.0215159534836, - 5.546277396314251, - 5.22375369919448, - 4.979023663903544, - 4.781611999973501, - 4.6160784434764315, - 4.473512941733112, - 4.348305869761709, - 4.236697120736931, - 4.136044202982954, - 4.044420080569864, - 3.9603771360843107, - 3.8828011622240313, - 3.810817084519868, - 3.7437258725671327, - 3.6809610265323895, - 3.622057777413161, - 3.5666307914651125, - 3.5143577108277086, - 3.464966790749991, - 3.418227470432695, - 3.3739430825470187, - 3.3319451471819765, - 3.2920888568420508, - 3.2542494687681445, - 3.2183193969379333, - 3.184205849758244, - 3.151828897871518, - 3.1211198843752195, - 3.092020110247065, - 3.0644797430185773, - 3.0384569082181465, - 3.0139169318419907, - 2.990831708836024, - 2.969179177806138, - 2.948942886298129, - 2.9301116342803355, - 2.9126791861296635, - 2.8966440436223, - 2.8820092742849863, - 2.868782391066509, - 2.856975280719405, - 2.846604179603691, - 2.8376896968953513, - 2.8302568864560937, - 2.824335369951312, - 2.8199595152475343, - 2.8171686757434897, - 2.8160074981670546, - 2.816526308598258, - 2.818781589176428, - 2.822836561273645, - 2.8287618950736277, - 2.8366365707627863, - 2.8465489232966004, - 2.8585979114711546, - 2.872894663534212, - 2.8895643668412294, - 2.90874858957159, - 2.930608150406724, - 2.955326690483959, - 2.9831151555918103, - 3.0142174726434803, - 3.0489178140970252, - 3.0875500048337323, - 3.130509866664512, - 3.1782716636389905, - 3.231410387902337, - 3.2906325541676162, - 3.3568197124373875, - 3.4310915404937936, - 3.5149001293369095, - 3.6101760040870756, - 3.719564177902768, - 3.8468263320890967, - 3.9975727436488326, - 4.180713223106094, - 4.411686930340371, - 4.720967228111253, - 5.183472620402086, - 6.098643598055328, - 7.6878167009407, - 6.240502144904074, - 5.669225682472753, - 5.305762201453932, - 5.038182615387941, - 4.826087029667218, - 4.650245109078581, - 4.499984939201507, - 4.368766297603264, - 4.252291042241368, - 4.147583829642134, - 4.052500554035568, - 3.9654459041356613, - 3.8852016089677206, - 3.810817084519868, - 3.7415371127114017, - 3.676752456781921, - 3.615965205359797, - 3.5587638722673884, - 3.504805134261248, - 3.453800193000294, - 3.40550442623601, - 3.35970942247253, - 3.316236771780001, - 3.274933170178518, - 3.235666520092965, - 3.198322795645757, - 3.1628035020556697, - 3.129023601498046, - 3.0969098089034595, - 3.066399183947563, - 3.0374379623577648, - 3.00998058230768, - 2.98398887125258, - 2.9594313658989386, - 2.9362827436841985, - 2.914523348591927, - 2.894138797651923, - 2.875119657303268, - 2.857461181102539, - 2.84116310216996, - 2.826229475384403, - 2.8126685657440427, - 2.800492780568443, - 2.7897186443852284, - 2.7803668164693436, - 2.7724621521311246, - 2.766033810027049, - 2.7611154090426817, - 2.7577452397259727, - 2.7559665368953055, - 2.755827821989934, - 2.757383326070915, - 2.7606935072478627, - 2.765825679871245, - 2.772854777319033, - 2.781864275928155, - 2.792947314997047, - 2.8062080573997057, - 2.8217633480235795, - 2.8397447441366754, - 2.8603010145776886, - 2.883601235789375, - 2.909838655798437, - 2.939235557733437, - 2.9720494407170865, - 3.0085809610219156, - 3.0491842610740045, - 3.0942805922795977, - 3.1443765668521553, - 3.200089052462633, - 3.262179827571866, - 3.3316049703845714, - 3.4095871891036467, - 3.4977251892607453, - 3.5981654464580415, - 3.713884672528133, - 3.8491814034686005, - 4.0105953122353055, - 4.208796855124599, - 4.463014039694257, - 4.813643610418048, - 5.372610764179548, - 6.808136867645919, - 6.570069311435301, - 5.833812935164029, - 5.411635193510818, - 5.113731969398123, - 4.883004118295455, - 4.6944707196749045, - 4.534946582613142, - 4.396617980755294, - 4.274472275412805, - 4.165102096316823, - 4.066086634811776, - 3.975645060756646, - 3.8924299850558945, - 3.815398113747299, - 3.7437258725671327, - 3.676752456781921, - 3.6139402620884065, - 3.554846698436048, - 3.4991036729350977, - 3.446402369202459, - 3.3964817652100447, - 3.3491198416016936, - 3.3041267601197855, - 3.2613395073749385, - 3.2206176440716985, - 3.181839899040667, - 3.1449014165911007, - 3.1097115146711376, - 3.0761918465074327, - 3.0442748840160685, - 3.0139026601664947, - 2.9850257215718785, - 2.957602253208599, - 2.9315973452712316, - 2.9069823784122018, - 2.8837345084751704, - 2.861836235655738, - 2.841275046067923, - 2.822043116150543, - 2.8041370723578014, - 2.7875578002530736, - 2.7723102985498316, - 2.7584035748871587, - 2.7458505812452834, - 2.734668187946618, - 2.7248771961921974, - 2.716502390091881, - 2.709572630198876, - 2.70412099169697, - 2.7001849516594203, - 2.697806631256836, - 2.697033100505096, - 2.6979167551978436, - 2.700515778170215, - 2.7048947001334422, - 2.711125079192712, - 2.7192863230673883, - 2.729466684319224, - 2.7417644670368815, - 2.756289494087367, - 2.773164898161957, - 2.7925293187508045, - 2.8145396128074727, - 2.839374222046086, - 2.8672373887729905, - 2.8983644812940264, - 2.9330287891413565, - 2.9715502931993036, - 3.014307131348379, - 3.0617508078622824, - 3.1144267046290857, - 3.173002266911841, - 3.2383065774827724, - 3.3113873172041686, - 3.3935951561144417, - 3.4867131200277495, - 3.593163153469926, - 3.71635273272527, - 3.861293606758119, - 4.035797654473965, - 4.253047303514035, - 4.538019842140418, - 4.947809972856328, - 5.672216707984819, - 7.14874803711527, - 6.060862403435175, - 5.548666375731108, - 5.209158999144965, - 4.954320735087361, - 4.749963499828579, - 4.579189642551153, - 4.432399864619715, - 4.303615935546464, - 4.188862471503969, - 4.085362575288722, - 3.9911007506730636, - 3.9045685914613406, - 3.8246085702375123, - 3.750313755100698, - 3.6809610265323895, - 3.615965205359797, - 3.554846698436048, - 3.4972081495359166, - 3.442717248306755, - 3.3910938481095183, - 3.342100160788336, - 3.295533188860976, - 3.251218811404316, - 3.209007110339408, - 3.1687686396637047, - 3.1303914203500844, - 3.0937785000363864, - 3.058845956912629, - 3.0255212563843767, - 2.9937418904874864, - 2.9634542459122923, - 2.934612658418212, - 2.9071786204660497, - 2.881120115829972, - 2.8564110603211934, - 2.8330308319565276, - 2.810963877226687, - 2.7901993827759344, - 2.770731003956931, - 2.7525566434942332, - 2.735678274970663, - 2.7201018071161913, - 2.7058369859878972, - 2.6928973331303947, - 2.681300118740263, - 2.6710663697622916, - 2.6622209137544535, - 2.654792460307028, - 2.6488137228256443, - 2.6443215846290142, - 2.641357314617304, - 2.639966839294227, - 2.6402010797472717, - 2.642116364398195, - 2.645774931050334, - 2.6512455351390303, - 2.658604185349125, - 2.6679350331866174, - 2.6793314500739935, - 2.692897334625645, - 2.7087487047144436, - 2.727015644844873, - 2.7478447007549494, - 2.7714018423383022, - 2.7978761562464736, - 2.827484485908081, - 2.860477316834002, - 2.897146320869698, - 2.9378341434253614, - 2.982947273426901, - 3.0329732281089017, - 3.0885039018941614, - 3.150267926517517, - 3.219176554811126, - 3.296390461367453, - 3.3834200488790858, - 3.4822816877098277, - 3.5957520600452573, - 3.727805283245738, - 3.884417311699578, - 4.075184203955206, - 4.316999456402277, - 4.644046139999664, - 5.14433800212413, - 6.220869831973494, - 9.182118707113665, - 6.395808455285744, - 5.729303459493622, - 5.329809257107764, - 5.042872179263547, - 4.818420272256178, - 4.633809826125005, - 4.476855902121584, - 4.340244256466825, - 4.219239324855005, - 4.110599654638575, - 4.012009737351466, - 3.921758684264645, - 3.8385472850404465, - 3.7613664287843034, - 3.689417387575466, - 3.622057777413161, - 3.5587638722673884, - 3.4991036729350977, - 3.442717248306755, - 3.389302115232277, - 3.3386021849780536, - 3.2903992829063213, - 3.244506556654912, - 3.2007632917941025, - 3.159030791203422, - 3.1191890686684007, - 3.081134173037828, - 3.0447760059968516, - 3.01003653013457, - 2.9768482885074525, - 2.945153175005923, - 2.9149014083538782, - 2.886050672779773, - 2.8585653961848148, - 2.8324161426329253, - 2.807579100654478, - 2.784035652523553, - 2.7617720125808662, - 2.74077892501354, - 2.7210514134055037, - 2.702588575943036, - 2.685393421479626, - 2.6694727427967098, - 2.654837024393094, - 2.6415003830384833, - 2.6294805401717793, - 2.618798826045164, - 2.6094802163410598, - 2.6015534028512484, - 2.595050900737831, - 2.590009195929917, - 2.586468937389407, - 2.5844751803539694, - 2.5840776882974965, - 2.5853313033171994, - 2.58829639706446, - 2.5930394173187143, - 2.599633549039431, - 2.608159513462965, - 2.6187065348683185, - 2.631373512472631, - 2.6462704451656376, - 2.6635201703421667, - 2.683260496211663, - 2.7056468314857613, - 2.7308554499524464, - 2.7590875741292855, - 2.7905745279832286, - 2.825584302902584, - 2.8644300183017575, - 2.907480961856902, - 2.9551772029285717, - 3.0080492512730643, - 3.066744994850806, - 3.132067399028439, - 3.205028565283471, - 3.286929473445913, - 3.379481592187054, - 3.4849998572556458, - 3.606724037696713, - 3.7493869495001233, - 3.9202990735366576, - 4.131640624884649, - 4.406049687270354, - 4.793591753672193, - 5.448713326980394, - 8.224207524238604, - 6.972807986373422, - 5.977136033918456, - 5.484306855262415, - 5.152872538455251, - 4.902247229814332, - 4.700318822379511, - 4.530997621574963, - 4.385063944182835, - 4.256741295851944, - 4.142171262747447, - 4.038649312578005, - 3.9442070082898075, - 3.857367770089946, - 3.77699627690338, - 3.702201481264697, - 3.632271851648136, - 3.5666307914651125, - 3.504805134261248, - 3.446402369202459, - 3.3910938481095183, - 3.3386021849780536, - 3.2886916538076547, - 3.2411607696059637, - 3.195836484927218, - 3.1525695994834866, - 3.111231092805676, - 3.0717091678507877, - 3.033906848336264, - 2.997740011821822, - 2.9631357690008513, - 2.930031120541276, - 2.8983718383230275, - 2.8681115295650352, - 2.839210851172059, - 2.8116368484050045, - 2.785362397220049, - 2.760365733717361, - 2.736630057371415, - 2.7141431972906336, - 2.6928973328304218, - 2.6728887615788475, - 2.6541177091388404, - 2.6365881763153136, - 2.620307820335915, - 2.6052878676351807, - 2.5915430565513207, - 2.579091609054844, - 2.567955231377711, - 2.5581591441678606, - 2.5497321435839204, - 2.5427066955971043, - 2.5371190667131236, - 2.533009495402913, - 2.530422409780678, - 2.529406698545377, - 2.530016043975749, - 2.532309327927709, - 2.536351124442149, - 2.5422122958844047, - 2.5499707137098255, - 2.559712130262352, - 2.5715312348474635, - 2.5855329362073154, - 2.6018339252064053, - 2.620564587062053, - 2.641871353333175, - 2.6659196123057614, - 2.6928973356182255, - 2.7230196338016857, - 2.7565345312609253, - 2.793730363577417, - 2.8349453650992804, - 2.880580262172244, - 2.931115066297456, - 2.987131856275706, - 3.0493462979630803, - 3.1186522473250133, - 3.1961865369328684, - 3.283425996259944, - 3.3823380912831245, - 3.4956252088393605, - 3.627142494047628, - 3.7826621045537, - 3.971398377829185, - 4.2094347162303265, - 4.528876056074127, - 5.010300290137571, - 5.995146909050779, - 8.876302913467576, - 6.345467771198585, - 5.687713994808816, - 5.29086066230698, - 5.004938004076382, - 4.780824425092475, - 4.596200597301893, - 4.439022269469887, - 4.302045901428679, - 4.180575190499479, - 4.071392095728424, - 3.972195816226685, - 3.881285062081296, - 3.7973670585135446, - 3.719437083031881, - 3.646699420756465, - 3.5785137463150285, - 3.5143577108277086, - 3.453800193000294, - 3.3964817652100447, - 3.342100160788336, - 3.2903992829063213, - 3.2411607696059637, - 3.1941974354172844, - 3.1493481119789695, - 3.1064735462395445, - 3.065453108347263, - 3.0261821266902227, - 2.9885697139293934, - 2.952536981257196, - 2.918015562469957, - 2.8849463874260888, - 2.853278657891712, - 2.822968988911828, - 2.793980686573124, - 2.766283138973257, - 2.739851301833702, - 2.7146652638185644, - 2.6907098794922835, - 2.6679744601452486, - 2.6464525145734408, - 2.6261415334193208, - 2.607042811945795, - 2.589161307185124, - 2.5725055263295755, - 2.5570874440505147, - 2.542922447180956, - 2.5300293059023224, - 2.518430171265207, - 2.508150599570902, - 2.4992196048695434, - 2.4916697416175806, - 2.4855372204097588, - 2.4808620606913547, - 2.477688285503424, - 2.476064164664817, - 2.476042514409445, - 2.477681063452545, - 2.4810428978556383, - 2.4861970000289473, - 2.4932189009291625, - 2.502191469218697, - 2.51320586717613, - 2.526362710936189, - 2.5417734828178404, - 2.5595622569536953, - 2.5798678174214746, - 2.6028462724164028, - 2.628674301353894, - 2.6575532181125325, - 2.6897140989004344, - 2.7254243166613197, - 2.764995959984521, - 2.8087968163362724, - 2.857264905197879, - 2.91092802069939, - 2.970430497407468, - 3.036570648119719, - 3.1103544142650814, - 3.193074449906872, - 3.2864306303739745, - 3.3927210996979884, - 3.515160056417649, - 3.658438836368354, - 3.8297949533340874, - 4.04126564083572, - 4.315162289868751, - 4.700597719957144, - 5.347532225009916, - 7.868141311983077, - 7.00524475943387, - 5.969818634070069, - 5.46766013139024, - 5.131760533663282, - 4.87833156525066, - 4.674356827427277, - 4.503392285007016, - 4.356050754721933, - 4.226466102189232, - 4.110727457394468, - 4.006097422241222, - 3.910585811828234, - 3.8227009870174897, - 3.741296784344783, - 3.6654740768275866, - 3.594515122341649, - 3.5278384122227013, - 3.464966790749991, - 3.40550442623601, - 3.3491198416016936, - 3.295533188860976, - 3.244506556654912, - 3.195836484927218, - 3.1493481119789695, - 3.104890546632147, - 3.0623331721681866, - 3.0215626676156706, - 2.9824805875094147, - 2.94500138093512, - 2.909050759427224, - 2.8745643443823212, - 2.84148654030909, - 2.809769591986809, - 2.7793727925143297, - 2.7502618160527685, - 2.722408154336721, - 2.695788640139743, - 2.670385044115057, - 2.646183734002271, - 2.62317538725266, - 2.6013547497979217, - 2.580720435061101, - 2.561274758453702, - 2.543023603575153, - 2.5259763171737393, - 2.5101456306779943, - 2.4955476067944606, - 2.4822016103179756, - 2.4701303029377715, - 2.459359662468988, - 2.4499190276168266, - 2.4418411701125495, - 2.435162396872069, - 2.429922685747929, - 2.4261658595082287, - 2.423939803923477, - 2.42329673732703, - 2.424293540803919, - 2.4269921603439166, - 2.4314600949827154, - 2.437770988303482, - 2.4460053448863173, - 2.4562513986561205, - 2.468606166975714, - 2.4831767332959145, - 2.5000818129577658, - 2.5194536724083743, - 2.541440493168145, - 2.56620930059604, - 2.593949617121179, - 2.62487805506322, - 2.6592441429568363, - 2.69733779309947, - 2.7394989853877805, - 2.786130493499911, - 2.837714864275, - 2.89483746570213, - 2.958218395326811, - 3.0287576679006776, - 3.1076009110456906, - 3.1962378556013435, - 3.296655463226945, - 3.4115866568916235, - 3.5449366473632167, - 3.7025647973184093, - 3.8938504807268597, - 4.1352289637408575, - 4.459706999009891, - 4.951062442262007, - 5.9762931939585755, - 6.4035616050969875, - 5.703011248841825, - 5.291109664556151, - 4.997273326086502, - 4.768124527201387, - 4.579905529404217, - 4.419950454827351, - 4.280703041759786, - 4.157292333493488, - 4.046394944751588, - 3.945642645324281, - 3.853288879260707, - 3.7680092639809755, - 3.688776256464755, - 3.614777180498098, - 3.545358775589138, - 3.479988596267137, - 3.418227470432695, - 3.35970942247253, - 3.3041267601197855, - 3.251218811404316, - 3.2007632917941025, - 3.1525695994834866, - 3.1064735462395445, - 3.0623331721681866, - 3.02002538942576, - 2.9794432673441937, - 2.940493819235421, - 2.903096185506108, - 2.867180132749933, - 2.8326848069484285, - 2.7995576926831296, - 2.7677537406429686, - 2.737234633614364, - 2.7079681672154416, - 2.6799277263462566, - 2.6530918420121368, - 2.6274438160861613, - 2.6029714038937852, - 2.579666546366319, - 2.557525145025416, - 2.536546874308522, - 2.5167350267881115, - 2.498096387725002, - 2.4806411361677783, - 2.4643827704991326, - 2.449338056963187, - 2.4355270003096523, - 2.422972836282644, - 2.411702046284656, - 2.401744395179879, - 2.393132993886814, - 2.3859043891709937, - 2.380098683910599, - 2.375759692101675, - 2.3729351340327183, - 2.3716768784374263, - 2.3720412400883997, - 2.374089343300589, - 2.377887564271905, - 2.383508068233659, - 2.3910294611952514, - 2.4005375808896283, - 2.412126457692512, - 2.4258994842608947, - 2.441970843059543, - 2.4604672547284516, - 2.481530128689, - 2.5053182223722397, - 2.532010949736352, - 2.5618125274275934, - 2.5949572142451935, - 2.6317159960776606, - 2.6724052092551194, - 2.717397804534891, - 2.7671382716054644, - 2.822162737566683, - 2.8831265400322974, - 2.950842868607538, - 3.026338265397929, - 3.1109346550398014, - 3.2063747427535247, - 3.3150215854851526, - 3.440192147995519, - 3.5867497985586367, - 3.7622421250310434, - 3.979325331055525, - 4.261746568576513, - 4.662872142014258, - 5.353273528081131, - 7.275344611262124, - 6.038933775147392, - 5.497483554171768, - 5.144517678519978, - 4.881358712285865, - 4.670966224058633, - 4.495354949993837, - 4.344420062964649, - 4.211915890354882, - 4.093711843980617, - 3.9869343891188103, - 3.8895043834158933, - 3.7998695039541004, - 3.7168406845241724, - 3.639487530512882, - 3.5670689029147358, - 3.4989853727548326, - 3.4347457680003366, - 3.3739430825470187, - 3.316236771780001, - 3.2613395073749385, - 3.209007110339408, - 3.159030791203422, - 3.111231092805676, - 3.065453108347263, - 3.0215626676156706, - 2.9794432673441937, - 2.938993580012533, - 2.900125416994626, - 2.862762052037086, - 2.8268368330768836, - 2.7922920267272744, - 2.7590778519871813, - 2.7271516689827036, - 2.696477295620383, - 2.6670244304846937, - 2.6387681645540377, - 2.611688567637686, - 2.585770338069868, - 2.5610025062999697, - 2.5373781847127868, - 2.514894357393674, - 2.4935517046926448, - 2.473354458395357, - 2.454310284122357, - 2.4364301882871087, - 2.41972844757804, - 2.4042225595155897, - 2.3899332131940474, - 2.376884279870176, - 2.365102823625154, - 2.3546191329222426, - 2.3454667745292364, - 2.3376826719933934, - 2.3313072116709397, - 2.3263843802512527, - 2.3229619388109644, - 2.3210916397271175, - 2.3208294943236667, - 2.3222361009899997, - 2.3253770457824534, - 2.330323390317783, - 2.337152265248946, - 2.345947591991822, - 2.3568009609383247, - 2.369812701548758, - 2.3850931890239955, - 2.40276444450311, - 2.4229621020334386, - 2.445837837527916, - 2.471562384906732, - 2.500329306090422, - 2.5323597396907163, - 2.5679084361206526, - 2.6072715068703016, - 2.650796492701435, - 2.698895621830098, - 2.7520635388569388, - 2.8109014313316023, - 2.8761505288155544, - 2.948739704054829, - 3.029854953245898, - 3.1210440530622687, - 3.2243802018149825, - 3.342729676185068, - 3.4802145803316136, - 3.6430709680149365, - 3.8413930060702803, - 4.0931543519713385, - 4.435382984381878, - 4.966743165684532, - 6.1936978792928965, - 6.594359819943777, - 5.779177420473409, - 5.331471108411591, - 5.019904040290458, - 4.780013793831974, - 4.584478208423054, - 4.419133941046611, - 4.275685412200496, - 4.148854420479803, - 4.035074644550728, - 3.9318238321813204, - 3.8372529460678226, - 3.749966675090234, - 3.6688867414702284, - 3.593163143479786, - 3.522114480177859, - 3.4551866263065936, - 3.3919233794859904, - 3.3319451471819765, - 3.274933170178518, - 3.2206176440716985, - 3.1687686396637047, - 3.1191890686684007, - 3.0717091678507877, - 3.0261821266902227, - 2.9824805875094147, - 2.940493819235421, - 2.900125416994626, - 2.8612914163370964, - 2.8239187374775057, - 2.787943894503858, - 2.7533119190641533, - 2.719975458991165, - 2.6878940206430837, - 2.6570333301149986, - 2.6273647934088395, - 2.5988650394972557, - 2.5715155332433017, - 2.5453022475379936, - 2.5202153859377106, - 2.496249148633501, - 2.4734015358490216, - 2.4516741838084433, - 2.431072229291496, - 2.4116041995407653, - 2.393281924939663, - 2.3761204724657548, - 2.3601380984669524, - 2.3453562198282376, - 2.3317994031130254, - 2.3194953717940185, - 2.30847503225125, - 2.2987725198282893, - 2.290425266921019, - 2.283474095849009, - 2.2779633401527053, - 2.2739409990009025, - 2.27145893061955, - 2.270573092111847, - 2.271343834791069, - 2.27383626627023, - 2.278120693150499, - 2.2842731613624307, - 2.292376115228488, - 2.3025192013887352, - 2.31480025021685, - 2.32932647574119, - 2.34621594606289, - 2.3655993908035478, - 2.3876224316139054, - 2.412448348255762, - 2.440261529208644, - 2.471271806596492, - 2.505719947230259, - 2.543884675167747, - 2.5860917528987475, - 2.6327258747090347, - 2.6842464710506264, - 2.7412090618604874, - 2.8042946613345547, - 2.8743511657265954, - 2.952453100919287, - 3.0399904604024095, - 3.1388054858679224, - 3.251412249423085, - 3.3813676056048916, - 3.5339391032792453, - 3.7174105865557867, - 3.945932684326162, - 4.246813970427829, - 4.684502524729995, - 5.490320328885252, - 8.144634092593508, - 6.204032743333538, - 5.579118780798004, - 5.193188242409684, - 4.912175278363568, - 4.690452881476236, - 4.506914130778269, - 4.3500460176026365, - 4.212874111165074, - 4.090852657697596, - 3.9808541172125405, - 3.8806351038491314, - 3.788532279356929, - 3.703278753438965, - 3.623887875835139, - 3.5495767589308436, - 3.4797142718503102, - 3.413784674952624, - 3.351361571866247, - 3.2920888568420508, - 3.235666520092965, - 3.181839899040667, - 3.1303914203500844, - 3.081134173037828, - 3.033906848336264, - 2.9885697139293934, - 2.94500138093512, - 2.903096185506108, - 2.862762052037086, - 2.8239187374775057, - 2.786496379982773, - 2.750434292672933, - 2.7156799563682075, - 2.682188175059083, - 2.649920365404534, - 2.618843957347001, - 2.5889318874272265, - 2.560162169896443, - 2.5325175334932966, - 2.505985113953488, - 2.4805561940828946, - 2.456225984649669, - 2.4329934405141627, - 2.410861107376995, - 2.389834995332113, - 2.369924476100956, - 2.3511422014265526, - 2.3335040406483922, - 2.3170290359822965, - 2.3017393745140318, - 2.287660376399067, - 2.2748204992609176, - 2.2632513593139985, - 2.252987770321279, - 2.2440678021510054, - 2.236532861440936, - 2.2304277977364544, - 2.225801039468501, - 2.2227047653121796, - 2.221195117859434, - 2.221332468202999, - 2.223181742033835, - 2.2268128202926287, - 2.2323010304108784, - 2.239727747895133, - 2.249181132676081, - 2.2607570305746356, - 2.274560077862961, - 2.2907050568252694, - 2.309318563306985, - 2.3305410647028135, - 2.3545294504386054, - 2.3814602093302653, - 2.411533413089139, - 2.4449777484729927, - 2.4820569310438563, - 2.5230779651153603, - 2.5684019095500683, - 2.618458104162298, - 2.67376326815079, - 2.7349476069753704, - 2.802791248754369, - 2.8782763317217785, - 2.9626635723660715, - 3.0576085717454227, - 3.165345519612172, - 3.2889914098970086, - 3.4330802123281416, - 3.604573449270973, - 3.814970210784235, - 4.085362603666774, - 4.461362044426651, - 5.077018178110507, - 7.009020280393058, - 7.024600499752425, - 5.93289712102345, - 5.41783447191726, - 5.075537755314553, - 4.817886398553698, - 4.610662891170418, - 4.436956716175144, - 4.287161193325199, - 4.155292926046455, - 4.037372372144179, - 3.9306189645525498, - 3.833013776381611, - 3.7430450796231796, - 3.6595520609372296, - 3.581624495198226, - 3.5085359355785664, - 3.4396978242492193, - 3.3746271265839263, - 3.3129229742485515, - 3.2542494687681445, - 3.198322795645757, - 3.1449014165911007, - 3.0937785000363864, - 3.0447760059968516, - 2.997740011821822, - 2.952536981257196, - 2.909050759427224, - 2.867180132749933, - 2.8268368330768836, - 2.787943894503858, - 2.750434292672933, - 2.7142498122388474, - 2.6793401000572854, - 2.6456618706524453, - 2.6131782374000996, - 2.5818581481662064, - 2.5516759082644027, - 2.522610776826364, - 2.4946466252296275, - 2.4677716482565706, - 2.4419781202850515, - 2.4172621901268068, - 2.3936237092039536, - 2.3710660886415833, - 2.349596181598731, - 2.329224187795853, - 2.3099635777530794, - 2.291831034754275, - 2.2748464130182198, - 2.259032711009055, - 2.2444160592708484, - 2.2310257226424897, - 2.2188941172157346, - 2.2080568429579825, - 2.1985527335503874, - 2.1904239257107174, - 2.183715951101217, - 2.178477854890322, - 2.174762346174345, - 2.1726259868092415, - 2.1721294268014444, - 2.1733376963227578, - 2.176320566729297, - 2.1811529957879783, - 2.18791567579379, - 2.1966957075990043, - 2.2075874290490995, - 2.2206934333145947, - 2.2361258216614415, - 2.254007747073846, - 2.274475320912605, - 2.297679976013606, - 2.3237914085696714, - 2.353001261140273, - 2.385527765217626, - 2.421621641607601, - 2.461573672381627, - 2.5057245282618887, - 2.5544776908103692, - 2.608316701064109, - 2.667828583432599, - 2.7337362918912387, - 2.8069446915064287, - 2.8886074706723552, - 2.9802275781548992, - 3.08381362430931, - 3.202134443961383, - 3.3391565557822704, - 3.5008491671970763, - 3.696803729240977, - 3.9439146144233947, - 4.2763823991352, - 4.782310076037392, - 5.865554679029046, - 6.5262895531407015, - 5.727436304382859, - 5.283915243784023, - 4.973920341906197, - 4.734603223414225, - 4.539145192485096, - 4.373590470753538, - 4.229744420962837, - 4.102383619005834, - 3.9879738584109106, - 3.884012803974199, - 3.7886642882306307, - 3.700541561887812, - 3.6185721505303023, - 3.5419100193429944, - 3.4698764701167497, - 3.401919184306542, - 3.337583114529296, - 3.2764893381120697, - 3.2183193969379333, - 3.1628035020556697, - 3.1097115146711376, - 3.058845956912629, - 3.01003653013457, - 2.9631357690008513, - 2.918015562469957, - 2.8745643443823212, - 2.8326848069484285, - 2.7922920267272744, - 2.7533119190641533, - 2.7156799563682075, - 2.6793401000572854, - 2.6442439068633257, - 2.6103497784434726, - 2.577622329566054, - 2.5460318550280316, - 2.515553879267807, - 2.4861687756254396, - 2.4578614445646383, - 2.4306210420517447, - 2.4044407507955743, - 2.3793175882717166, - 2.3552522464502337, - 2.332248958967053, - 2.3103153921670083, - 2.2894625570329588, - 2.2697047395278775, - 2.2510594473381467, - 2.233547371436869, - 2.217192361303979, - 2.2020214130624676, - 2.188064670233604, - 2.1753554372950807, - 2.1639302067613158, - 2.153828701112437, - 2.1450939315968114, - 2.1377722767426164, - 2.131913584361078, - 2.1275713019362135, - 2.1248026416078085, - 2.1236687875092484, - 2.124235155075262, - 2.1265717141593674, - 2.1307533904940863, - 2.1368605633202367, - 2.144979681084659, - 2.155204022206416, - 2.1676346343841337, - 2.182381494243163, - 2.1995649399790467, - 2.2193174440073515, - 2.2417858118627225, - 2.267133919709976, - 2.295546138790363, - 2.3272316453346313, - 2.3624298856206307, - 2.4014175682775463, - 2.444517705954231, - 2.492111452393747, - 2.544653822315289, - 2.6026949142883455, - 2.666909110694387, - 2.73813613926784, - 2.8174402917640746, - 2.9061983838252714, - 3.006235029599558, - 3.1200395272278487, - 3.2511317008614693, - 3.40471938623057, - 3.5889805644839887, - 3.81785342652533, - 4.118138284235504, - 4.55266447428184, - 5.343218581507919, - 8.42336401051951, - 6.208028772911535, - 5.563880394289452, - 5.170461396803885, - 4.885191313974882, - 4.660546510677647, - 4.474757336594392, - 4.316018588830349, - 4.177206730552538, - 4.0536917525547205, - 3.942294738739601, - 3.840739045199575, - 3.7473387240736376, - 3.660810863315976, - 3.58015704037993, - 3.50458543271915, - 3.4334579245285988, - 3.3662531644613103, - 3.3025401317072194, - 3.241958818508066, - 3.184205849758244, - 3.129023601498046, - 3.0761918465074327, - 3.0255212563843767, - 2.9768482885074525, - 2.930031120541276, - 2.8849463874260888, - 2.84148654030909, - 2.7995576926831296, - 2.7590778519871813, - 2.719975458991165, - 2.682188175059083, - 2.6456618706524453, - 2.6103497784434726, - 2.5762117820277317, - 2.543213817079274, - 2.5113273663244633, - 2.4805290332480965, - 2.450800182225614, - 2.422126634975049, - 2.39449841497477, - 2.3679095328982513, - 2.3423578072523217, - 2.317844715330054, - 2.294375270350749, - 2.2719579212948564, - 2.2506044724817778, - 2.2303300204090646, - 2.2111529057944934, - 2.1930946791575407, - 2.1761800786618064, - 2.160437019331876, - 2.1458965931736245, - 2.1325930801825312, - 2.120563970737238, - 2.10985000046313, - 2.1004951993321583, - 2.092546957561184, - 2.08605611180513, - 2.081077056239856, - 2.077667884424852, - 2.07589056936663, - 2.0758111910196524, - 2.077500222627434, - 2.081032889908149, - 2.08648962024339, - 2.0939566028958523, - 2.10352648608331, - 2.1152992427812514, - 2.1293832448480696, - 2.14589659507551, - 2.1649687799308146, - 2.186742723318466, - 2.2113773454473313, - 2.2390507634783794, - 2.2699643159635996, - 2.3043476570778108, - 2.342465258372954, - 2.384624789483752, - 2.431188047688978, - 2.482585406910177, - 2.5393352226940875, - 2.602070370520403, - 2.6715753070772306, - 2.7488390946499446, - 2.835133431326116, - 2.932131345025521, - 3.0420950059576004, - 3.1681874571506943, - 3.315021589776926, - 3.4897027302480055, - 3.704016928019697, - 3.9797138828288916, - 4.364296628793854, - 5.0003245723232075, - 7.208236848276105, - 7.245860938905707, - 5.977633949928483, - 5.42959075501553, - 5.072990682032647, - 4.807111546791473, - 4.594380548860501, - 4.416611643253921, - 4.263606861194759, - 4.129070959994984, - 4.008844160103603, - 3.9000342957008605, - 3.8005495004017416, - 3.7088282315715415, - 3.623674380142828, - 3.54415191086564, - 3.4695149733765325, - 3.3991600567298255, - 3.332592339970018, - 3.2694014690567816, - 3.209243761572892, - 3.151828897871518, - 3.0969098089034595, - 3.0442748840160685, - 2.9937418904874864, - 2.945153175005923, - 2.8983718383230275, - 2.853278657891712, - 2.809769591986809, - 2.7677537406429686, - 2.7271516689827036, - 2.6878940206430837, - 2.649920365404534, - 2.6131782374000996, - 2.577622329566054, - 2.543213817079274, - 2.5099197879801647, - 2.477712763410734, - 2.446570293203797, - 2.4164746151605625, - 2.3874123684134028, - 2.3593743529110736, - 2.332355328378096, - 2.3063538471600777, - 2.281372116227895, - 2.2574158843198497, - 2.2344943507874486, - 2.2126200932062305, - 2.191809011242663, - 2.1720802846527496, - 2.1534563436467846, - 2.1359628502055057, - 2.1196286892927376, - 2.104485969295463, - 2.0905700314510813, - 2.0779194685110367, - 2.0665761534582625, - 2.0565852797626083, - 2.047995415444195, - 2.0408585741426, - 2.035230307485395, - 2.0311698243425402, - 2.0287401440790838, - 2.028008292721776, - 2.029045553092678, - 2.031927782510586, - 2.0367358147220043, - 2.0435559664398193, - 2.052480673437586, - 2.0636092868481777, - 2.0770490675384163, - 2.0929164257293564, - 2.111338465191876, - 2.1324549074954358, - 2.1564204935513174, - 2.1834079894460445, - 2.2136119648210464, - 2.247253570101413, - 2.2845866217806603, - 2.325905425306209, - 2.3715549429013754, - 2.421944181531714, - 2.477564088753949, - 2.5390118953465506, - 2.607024900532783, - 2.682528466525674, - 2.766706066768927, - 2.861104812200958, - 2.967800512239162, - 3.0896678228291874, - 3.2308477322120526, - 3.397615578788448, - 3.6001484778682333, - 3.856610830164817, - 4.204553156210649, - 4.744674899049346, - 6.005694216281124, - 6.743498837970188, - 5.799841645822194, - 5.317056398376221, - 4.988435397852867, - 4.73803595304398, - 4.535081160966407, - 4.364007810103553, - 4.215844724294281, - 4.084947163719736, - 3.967532362010629, - 3.860941702292138, - 3.763235684049036, - 3.672956373490828, - 3.588980546114811, - 3.5104249069114757, - 3.4365826906947636, - 3.3668799488465737, - 3.30084461695212, - 3.238084128612669, - 3.178268892565213, - 3.1211198843752195, - 3.066399183947563, - 3.0139026601664947, - 2.9634542459122923, - 2.9149014083538782, - 2.8681115295650352, - 2.822968988911828, - 2.7793727925143297, - 2.737234633614364, - 2.696477295620383, - 2.6570333301149986, - 2.618843957347001, - 2.5818581481662064, - 2.5460318550280316, - 2.5113273663244633, - 2.477712763410734, - 2.445161463669697, - 2.413651836064134, - 2.3831668780746136, - 2.3536939448585263, - 2.3252245230088247, - 2.2977540425255194, - 2.271281721605975, - 2.245810439663521, - 2.2213466346391004, - 2.197900221210885, - 2.175484526959526, - 2.1541162439354546, - 2.1338153934200395, - 2.11460530199327, - 2.0965125873348627, - 2.079567152510621, - 2.063802187849041, - 2.0492541799124075, - 2.035962927530466, - 2.0239715654126336, - 2.0133265965069853, - 2.004077935052608, - 1.9962789631994886, - 1.989986605172162, - 1.9852614242580622, - 1.9821677494416645, - 1.9807738403206214, - 1.981152101080421, - 1.9833793568357814, - 1.9875372086600982, - 1.993712487243827, - 2.001997829524657, - 2.012492408065608, - 2.0253028497753003, - 2.0405443892706154, - 2.0583423134936885, - 2.078833769141704, - 2.102170024534655, - 2.128519304896661, - 2.158070357850653, - 2.191036958995131, - 2.227663643001104, - 2.268233054981772, - 2.3130754777417817, - 2.3625813317250186, - 2.4172178139240144, - 2.477551421496617, - 2.5442790396147803, - 2.618271824699205, - 2.7006387849291995, - 2.792821748158656, - 2.8967424113432694, - 3.0150400828837953, - 3.1514769063753314, - 3.3116758706793945, - 3.5045854525413667, - 3.7457453878383444, - 4.065908493475244, - 4.5409929362003725, - 5.4776818113923165, - 6.428627533206476, - 5.657394624155915, - 5.2214630190178095, - 4.914612107399089, - 4.6767260315857735, - 4.481849872342322, - 4.316386746786181, - 4.172317555575401, - 4.044514617135653, - 3.9295001561144045, - 3.8248070550895945, - 3.728622085973844, - 3.639573923513603, - 3.5566007016212633, - 3.4788637869465044, - 3.4056896757163324, - 3.3365296806726694, - 3.270931250155422, - 3.2085171133452857, - 3.148969823927325, - 3.092020110247065, - 3.0374379623577648, - 2.9850257215718785, - 2.934612658418212, - 2.886050672779773, - 2.839210851172059, - 2.793980686573124, - 2.7502618160527685, - 2.7079681672154416, - 2.6670244304846937, - 2.6273647934088395, - 2.5889318874272265, - 2.5516759082644027, - 2.515553879267807, - 2.4805290332480965, - 2.446570293203797, - 2.413651836064134, - 2.3817527265225715, - 2.3508566103484734, - 2.320951458397234, - 2.2920293539970173, - 2.264086317554299, - 2.2371221631533267, - 2.2111403826755183, - 2.1861480535723468, - 2.1621557669211087, - 2.1391775728032494, - 2.1172309403922407, - 2.0963367304424434, - 2.0765191781506775, - 2.0578058846362888, - 2.040227815571344, - 2.023819305808461, - 2.0086180692187767, - 1.994665213386587, - 1.9820052593312907, - 1.9706861670635458, - 1.9607593685541154, - 1.9522798106251533, - 1.9453060113903355, - 1.939900135199911, - 1.936128092620119, - 1.9340596738290472, - 1.9337687259866831, - 1.9353333876924588, - 1.9388363966562214, - 1.9443654902866496, - 1.9520139231989748, - 1.9618811308833124, - 1.9740735752747334, - 1.9887058161847928, - 2.0059018631498633, - 2.025796876171359, - 2.0485393024347296, - 2.0742935613879006, - 2.103243425461069, - 2.135596292576053, - 2.1715886160211806, - 2.211492857427286, - 2.2556264754787563, - 2.3043636824035496, - 2.358151034756585, - 2.417528446755988, - 2.4831580498382473, - 2.5558647001220063, - 2.636694287387473, - 2.727000174505855, - 2.8285758572958914, - 2.943867166759643, - 3.0763292497532766, - 3.2310660229888217, - 3.4160718818009586, - 3.6449182533093447, - 3.9435340271288273, - 4.372008633724038, - 5.136536121077971, - 8.817520258163979, - 6.204480148537564, - 5.540578360987761, - 5.139553101949071, - 4.8499197493488175, - 4.622231640578957, - 4.434056192651848, - 4.27329812974252, - 4.132686562610695, - 4.007508425969709, - 3.8945342009417008, - 3.7914544607457885, - 3.6965609160932247, - 3.6085547552395747, - 3.5264257995377015, - 3.4493732287141556, - 3.376751818475497, - 3.308034434003695, - 3.242785218891961, - 3.1806400191239144, - 3.1212918215387213, - 3.0644797430185773, - 3.00998058230768, - 2.957602253208599, - 2.9071786204660497, - 2.8585653961848148, - 2.8116368484050045, - 2.766283138973257, - 2.722408154336721, - 2.6799277263462566, - 2.6387681645540377, - 2.5988650394972557, - 2.560162169896443, - 2.522610776826364, - 2.4861687756254396, - 2.450800182225614, - 2.4164746151605625, - 2.3831668780746136, - 2.3508566103484734, - 2.319527995659191, - 2.2891695200340525, - 2.2597737723418763, - 2.2313372812671073, - 2.2038603836913144, - 2.1773471201093524, - 2.151805153270266, - 2.127245706685886, - 2.1036835200179933, - 2.0811368186595813, - 2.0596272950868455, - 2.0391800997945086, - 2.01982383985632, - 2.001590583393552, - 1.984515868506509, - 1.9686387155480238, - 1.9540016420154476, - 1.940650679832136, - 1.9286353954053055, - 1.9180089136101823, - 1.908827947787039, - 1.9011528389754468, - 1.895047608976938, - 1.8905800334629521, - 1.8878217432618047, - 1.8868483642043474, - 1.8877397085306145, - 1.8905800339234209, - 1.8954583898307227, - 1.902469074999193, - 1.9117122352615334, - 1.923294636885129, - 1.9373306586166277, - 1.953943555551427, - 1.9732670609958018, - 1.9954474098428394, - 2.0206458904995244, - 2.049042064791893, - 2.0808378405615957, - 2.116262645913855, - 2.1555800465864086, - 2.1990962832477816, - 2.2471714070282305, - 2.300233997531346, - 2.358800922565691, - 2.4235043551762954, - 2.4951295031719813, - 2.5746686063894746, - 2.6634004531137094, - 2.7630114683734233, - 2.8757876156868103, - 3.004933587772055, - 3.1551364882543087, - 3.333640325558111, - 3.552512779323524, - 3.8341583121372977, - 4.227995125671944, - 4.885479266431382, - 7.492849170517863, - 7.607104179511697, - 6.03462997651729, - 5.4434065193845775, - 5.069033075482102, - 4.793157578995335, - 4.5738135212246505, - 4.391197705879111, - 4.234377105090119, - 4.096673932171842, - 3.973709421221744, - 3.8624567855989667, - 3.7607366524429526, - 3.6669279637701773, - 3.5797925707955467, - 3.4983637614452974, - 3.421872651002533, - 3.349697983055547, - 3.2813309412738287, - 3.2163498912309416, - 3.154401871380271, - 3.095188781278305, - 3.0384569082181465, - 2.98398887125258, - 2.9315973452712316, - 2.881120115829972, - 2.8324161426329253, - 2.785362397220049, - 2.739851301833702, - 2.695788640139743, - 2.6530918420121368, - 2.611688567637686, - 2.5715155332433017, - 2.5325175334932966, - 2.4946466252296275, - 2.4578614445646383, - 2.422126634975049, - 2.3874123684134028, - 2.3536939448585263, - 2.320951458397234, - 2.2891695200340525, - 2.258337029090297, - 2.2284469863735668, - 2.1994963433462775, - 2.1714858823529504, - 2.1444201236245624, - 2.118307255298877, - 2.0931590831067193, - 2.068990996699462, - 2.0458219498533343, - 2.02367445200075, - 2.0025745687259953, - 1.9825519290409743, - 1.9636397374455292, - 1.9458747889968753, - 1.9292974858863565, - 1.9139518543732696, - 1.8998855613812287, - 1.8871499306504076, - 1.8757999590882162, - 1.8658943349018169, - 1.8574954602585954, - 1.850669482635551, - 1.8454863407154714, - 1.84201983269702, - 1.8403477172401461, - 1.8405518600061586, - 1.842718441924316, - 1.8469382489968627, - 1.8533070677515286, - 1.861926215530941, - 1.872903240923876, - 1.886352837170568, - 1.902398020870342, - 1.9211716406004222, - 1.9428182963088243, - 1.9674967723043262, - 1.995383116870888, - 2.0266745437380718, - 2.061594390478162, - 2.1003984549792167, - 2.1433831568665096, - 2.1908961574722725, - 2.243350354566875, - 2.301242605084464, - 2.3651792216418506, - 2.435911417427961, - 2.5143857739892406, - 2.6018181254279273, - 2.6998053063731047, - 2.8105008289436193, - 2.936904244620217, - 3.0833659610430266, - 3.2565345206744567, - 3.467313042547234, - 3.735474354783285, - 4.1029543314646695, - 4.68807434928592, - 6.255205614714892, - 7.114300066678511, - 5.901434677508027, - 5.361953410765926, - 5.008240228408199, - 4.7434102210618985, - 4.530890910239201, - 4.352871830028474, - 4.199327260213848, - 4.064051707614757, - 3.9429364457945097, - 3.833120226084144, - 3.7325307648071004, - 3.6396193139683097, - 3.5531982831880433, - 3.472337345917552, - 3.396294445539956, - 3.3244685175882265, - 3.2563662123456294, - 3.1915779226253003, - 3.129760161965699, - 3.0706223785549254, - 3.0139169318419907, - 2.9594313658989386, - 2.9069823784122018, - 2.8564110603211934, - 2.807579100654478, - 2.760365733717361, - 2.7146652638185644, - 2.670385044115057, - 2.6274438160861613, - 2.585770338069868, - 2.5453022475379936, - 2.505985113953488, - 2.4677716482565706, - 2.4306210420517447, - 2.39449841497477, - 2.3593743529110736, - 2.3252245230088247, - 2.2920293539970173, - 2.2597737723418763, - 2.2284469863735668, - 2.1980423117802212, - 2.1685570328665453, - 2.139992294762861, - 2.1123530223887874, - 2.0856478624566743, - 2.059889145170213, - 2.0350928625558646, - 2.0112786605788404, - 1.9884698423597682, - 1.966693379941127, - 1.9459799321727311, - 1.9263638664131726, - 1.9078832819012765, - 1.8905800328628333, - 1.8744997497104776, - 1.8596918570984984, - 1.8462095881420917, - 1.8341099948364095, - 1.8234539556500544, - 1.8143061824558016, - 1.8067352304324196, - 1.800813516357729, - 1.7966173528442853, - 1.7942270085737841, - 1.7937268074943424, - 1.795205283293005, - 1.7987554092973408, - 1.80447492837858, - 1.8124668125594332, - 1.8228398880879264, - 1.8357096690595531, - 1.8511994517638934, - 1.86944173355934, - 1.8905800353611066, - 1.914771227403153, - 1.9421884862064795, - 1.973025050199367, - 2.0074989974860595, - 2.045859349896743, - 2.088393925148634, - 2.1354395334854988, - 2.187395378686886, - 2.244740929515414, - 2.3080601687684608, - 2.3780751670026925, - 2.455693668605703, - 2.5420783988743176, - 2.6387512694724697, - 2.747756061108499, - 2.87192414577177, - 3.015333277100054, - 3.184157138950927, - 3.388389045652484, - 3.6458066806713805, - 3.992949566435206, - 4.526669690364711, - 5.734550842149859, - 6.815726360209999, - 5.795061202290333, - 5.293529834092103, - 4.9559441162759335, - 4.699972374682713, - 4.493005203623392, - 4.318755457330392, - 4.167907999045404, - 4.034633365966263, - 3.9150404152433067, - 3.8064024920843234, - 3.7067349998034587, - 3.614548731624926, - 3.5286979146531134, - 3.448282425195969, - 3.3725825389898785, - 3.3010140359714946, - 3.2330964885434197, - 3.168430347263235, - 3.106680051498939, - 3.047561361527216, - 2.990831708836024, - 2.9362827436841985, - 2.8837345084751704, - 2.8330308319565276, - 2.784035652523553, - 2.736630057371415, - 2.6907098794922835, - 2.646183734002271, - 2.6029714038937852, - 2.5610025062999697, - 2.5202153859377106, - 2.4805561940828946, - 2.4419781202850515, - 2.4044407507955743, - 2.3679095328982513, - 2.332355328378096, - 2.2977540425255194, - 2.264086317554299, - 2.2313372812671073, - 2.1994963433462775, - 2.1685570328665453, - 2.1385168715865164, - 2.10937727832708, - 2.0811435003271246, - 2.053824567910785, - 2.027433269131192, - 2.0019861412945756, - 1.9775034764343125, - 1.954009337914835, - 1.9315315854179402, - 1.9101019056177482, - 1.8897558459061852, - 1.8705328486119108, - 1.8524762832890729, - 1.8356334748688032, - 1.8200557258005692, - 1.8057983308004997, - 1.792920583510619, - 1.7814857752992337, - 1.771561187641259, - 1.7632180810489435, - 1.7565316854152921, - 1.751581198916248, - 1.748449805319377, - 1.747224722688066, - 1.7479973000730835, - 1.7508631828786891, - 1.7559225722324892, - 1.763280608975872, - 1.7730479189987678, - 1.7853413638585427, - 1.8002850494095415, - 1.8180116562361117, - 1.8386641700897728, - 1.862398109847339, - 1.8893843770310383, - 1.91981288804978, - 1.9538972030697017, - 1.991880441414945, - 2.0340428843760483, - 2.080711830784763, - 2.1322745186628245, - 2.1891953074656807, - 2.2520389151468487, - 2.321502473098908, - 2.398460775963773, - 2.4840318889618103, - 2.579675285629472, - 2.687344146064856, - 2.8097323513439068, - 2.9506972197663672, - 3.116033622386252, - 3.3150215964365732, - 3.563912915399824, - 3.895281553102766, - 4.391423900116758, - 5.407493402837601, - 6.611532448033859, - 5.709525582579129, - 5.23623803270205, - 4.911222539027734, - 4.662298030479241, - 4.459794243638167, - 4.288590063791138, - 4.139925083590563, - 4.0082673901971555, - 3.889899718960593, - 3.7822037805348248, - 3.6832659887154127, - 3.5916455749007326, - 3.506230907999208, - 3.4261465919250362, - 3.3506912240107503, - 3.2792944227288703, - 3.211486384540815, - 3.1468758296714063, - 3.085133710032509, - 3.0259809649693996, - 2.969179177806138, - 2.914523348591927, - 2.861836235655738, - 2.810963877226687, - 2.7617720125808662, - 2.7141431972906336, - 2.6679744601452486, - 2.62317538725266, - 2.579666546366319, - 2.5373781847127868, - 2.496249148633501, - 2.456225984649669, - 2.4172621901268068, - 2.3793175882717166, - 2.3423578072523217, - 2.3063538471600777, - 2.271281721605975, - 2.2371221631533267, - 2.2038603836913144, - 2.1714858823529504, - 2.139992294762861, - 2.10937727832708, - 2.0796424289969844, - 2.050793225489874, - 2.022838997358511, - 1.9957929135948733, - 1.969671988648928, - 1.94449710285887, - 1.9202930343415894, - 1.8970884993979231, - 1.8749161984651748, - 1.8538128646205199, - 1.8338193116281356, - 1.8149804785595998, - 1.7973454681357655, - 1.780967576178914, - 1.765904309971671, - 1.752217393943579, - 1.7399727619999266, - 1.7292405370237751, - 1.7200949996723187, - 1.7126145505984718, - 1.7068816726951754, - 1.702982902909493, - 1.701008826621113, - 1.7010541115318463, - 1.7032176024748125, - 1.707602503543577, - 1.7143166795176883, - 1.723473114845493, - 1.7351905756738393, - 1.749594528994812, - 1.7668183835683688, - 1.7870051308871169, - 1.81030948258668, - 1.8369006256001368, - 1.8669657512833862, - 1.900714564550449, - 1.938385051041906, - 1.980250885679133, - 2.0266310221671415, - 2.0779022383369994, - 2.1345157734030513, - 2.19701975992213, - 2.2660900657144145, - 2.3425736749871127, - 2.42755133886491, - 2.5224308782447875, - 2.6290912484280473, - 2.7501147877125725, - 2.889181826975578, - 3.0517866716472972, - 3.246651727459808, - 3.488859963196577, - 3.8080435750081767, - 4.276345854951455, - 5.1741769246435485, - 6.464765512191273, - 5.640975345319219, - 5.188715003813081, - 4.873381274507895, - 4.629965453039063, - 4.430973857813028, - 4.262170714241512, - 4.115223504005747, - 3.9848323462529294, - 3.867416653155361, - 3.760443830369578, - 3.662056706884176, - 3.570853133550002, - 3.485748773422833, - 3.4058880364509876, - 3.330584212648128, - 3.2592780235520054, - 3.1915081875365905, - 3.126890051227977, - 3.0650997747238757, - 3.005862426622547, - 2.948942886298129, - 2.894138797651923, - 2.841275046067923, - 2.7901993827759344, - 2.74077892501354, - 2.6928973328304218, - 2.6464525145734408, - 2.6013547497979217, - 2.557525145025416, - 2.514894357393674, - 2.4734015358490216, - 2.4329934405141627, - 2.3936237092039536, - 2.3552522464502337, - 2.317844715330054, - 2.281372116227895, - 2.245810439663521, - 2.2111403826755183, - 2.1773471201093524, - 2.1444201236245624, - 2.1123530223887874, - 2.0811435003271246, - 2.050793225489874, - 2.021307807625228, - 1.9926967804231215, - 1.964973605153967, - 1.9381556925791295, - 1.9122644400744466, - 1.8873252808988306, - 1.863367742472558, - 1.8404255104220628, - 1.8185364950207732, - 1.7977428965346998, - 1.7780912658985597, - 1.7596325571417941, - 1.742422168099879, - 1.7265199662383643, - 1.711990296945579, - 1.6989019724804357, - 1.6873282409623003, - 1.6773467364267458, - 1.6690394131040611, - 1.6624924697544752, - 1.6577962731462001, - 1.6550452936004094, - 1.654338069942274, - 1.6557772261663617, - 1.6594695676252427, - 1.665526290582936, - 1.6740633456001166, - 1.6852020026047254, - 1.6990696739918452, - 1.7158010622887738, - 1.7355397117773994, - 1.7584400604574761, - 1.7846701120480406, - 1.814414880574194, - 1.8478808072084905, - 1.8853014174972889, - 1.9269445876622666, - 1.9731219381125327, - 2.0242010975364, - 2.0806219263199313, - 2.1429183289116254, - 2.2117481532889567, - 2.2879351120307287, - 2.372529117594311, - 2.466895801921226, - 2.572854158094905, - 2.6928973453608394, - 2.830565630125303, - 2.991118021139413, - 3.182845913471478, - 3.4199439713872435, - 3.7298650107182123, - 4.17757732582311, - 4.997644480740304, - 6.357894254226662, - 5.586847888564072, - 5.149977048843062, - 4.841900773175523, - 4.602652678937682, - 4.40632449818631, - 4.239337914283097, - 4.093682101114924, - 3.9642331192220155, - 3.847514663857572, - 3.7410598284020535, - 3.643054835207745, - 3.55212731482105, - 3.4672140122767163, - 3.387474649403068, - 3.3122338762367893, - 3.2409409926319217, - 3.1731412900082403, - 3.108455211827333, - 3.0465629078168237, - 2.9871925917457784, - 2.9301116342803355, - 2.875119657303268, - 2.822043116150543, - 2.770731003956931, - 2.7210514134055037, - 2.6728887615788475, - 2.6261415334193208, - 2.580720435061101, - 2.536546874308522, - 2.4935517046926448, - 2.4516741838084433, - 2.410861107376995, - 2.3710660886415833, - 2.332248958967053, - 2.294375270350749, - 2.2574158843198497, - 2.2213466346391004, - 2.1861480535723468, - 2.151805153270266, - 2.118307255298877, - 2.0856478624566743, - 2.053824567910785, - 2.022838997358511, - 1.9926967804231215, - 1.9634075478471105, - 1.9349849512718704, - 1.9074467025055566, - 1.8808146291942511, - 1.8551147437381674, - 1.8303773221481836, - 1.8066369893344856, - 1.78393280707867, - 1.7623083606891565, - 1.7418118401105391, - 1.72249611109281, - 1.7044187719786923, - 1.6876421917997642, - 1.6722335257581737, - 1.6582647048927794, - 1.645812397874107, - 1.6349579445295153, - 1.6257872629496841, - 1.6183907349362991, - 1.6128630781614204, - 1.6093032177334086, - 1.6078141748797, - 1.6085029961086592, - 1.6114807524272983, - 1.6168626449005885, - 1.6247682600192015, - 1.6353220260762191, - 1.648653930297089, - 1.6649005663482486, - 1.684206593980999, - 1.7067267083932964, - 1.732628238591056, - 1.762094524807875, - 1.7953292695944334, - 1.8325621224661437, - 1.8740558544910417, - 1.9201156231616738, - 1.9711010452337128, - 2.0274421284837842, - 2.089660634610428, - 2.1583992808477404, - 2.234462565691192, - 2.3188753547877248, - 2.4129695342912223, - 2.5185167895201714, - 2.637940773439802, - 2.774673782098095, - 2.9337953540024952, - 3.1232718411362583, - 3.356637289662054, - 3.65975613903156, - 4.092551596692821, - 4.86036237806261, - 6.281493353158949, - 5.54542196498251, - 5.119322448449156, - 4.816400229324687, - 4.580120282880898, - 4.38568157830308, - 4.219971600065638, - 4.075209540993457, - 3.946398063312731, - 3.8301362398554635, - 3.724004796511841, - 3.626221489929691, - 3.5354356188939877, - 3.450599273689233, - 3.3708833151890247, - 3.2956206444538356, - 3.2242667745887568, - 3.1563717377439926, - 3.0915596313792553, - 3.0295134419374024, - 2.969963594704259, - 2.9126791861296635, - 2.857461181102539, - 2.8041370723578014, - 2.7525566434942332, - 2.702588575943036, - 2.6541177091388404, - 2.607042811945795, - 2.561274758453702, - 2.5167350267881115, - 2.473354458395357, - 2.431072229291496, - 2.389834995332113, - 2.349596181598731, - 2.3103153921670083, - 2.2719579212948564, - 2.2344943507874486, - 2.197900221210885, - 2.1621557669211087, - 2.127245706685886, - 2.0931590831067193, - 2.059889145170213, - 2.027433269131192, - 1.9957929135948733, - 1.964973605153967, - 1.9349849512718704, - 1.9058406773024026, - 1.877558684612883, - 1.8501611267415403, - 1.8236745003820143, - 1.7981297477578448, - 1.7735623666415665, - 1.7500125239044275, - 1.7275251680785157, - 1.706150136007211, - 1.6859422482976247, - 1.6669613880288554, - 1.6492725570860853, - 1.6329459046716526, - 1.6180567230931353, - 1.6046854069585408, - 1.5929173735376285, - 1.5828429443889738, - 1.5745571915007168, - 1.5681597552146784, - 1.5637546461205794, - 1.5614500488875855, - 1.5613581525559075, - 1.5635950390060975, - 1.5682806690010107, - 1.5755390132226623, - 1.585498384063197, - 1.5982920327172734, - 1.614059085795168, - 1.6329459070856522, - 1.6551079846756054, - 1.6807124635840303, - 1.7099414726497735, - 1.7429964363686723, - 1.7801036246523314, - 1.82152128644645, - 1.8675488527209243, - 1.9185389057466766, - 1.974912936062584, - 2.0371824158041427, - 2.1059775287808726, - 2.1820872338346238, - 2.2665166120871123, - 2.360571473049052, - 2.4659876488729213, - 2.5851369782783533, - 2.721372372033535, - 2.8796429602638702, - 3.0676814884000057, - 3.2985528433081166, - 3.597011102290065, - 4.0195452204424775, - 4.752904839812274, - 6.230220036265378, - 5.515565424900537, - 5.096269572764991, - 4.79661336687353, - 4.56219936067759, - 4.368928582239762, - 4.203986783051522, - 4.059741362570713, - 3.9312768915453495, - 3.81524134031609, - 3.7092463801432305, - 3.611530263003899, - 3.520756360850498, - 3.435886711100984, - 3.3560993705825704, - 3.280732542857023, - 3.2092457041591023, - 3.141191879206113, - 3.076197439422757, - 3.0139471027250404, - 2.9541726089923097, - 2.8966440436223, - 2.84116310216996, - 2.7875578002530736, - 2.735678274970663, - 2.685393421479626, - 2.6365881763153136, - 2.589161307185124, - 2.543023603575153, - 2.498096387725002, - 2.454310284122357, - 2.4116041995407653, - 2.369924476100956, - 2.329224187795853, - 2.2894625570329588, - 2.2506044724817778, - 2.2126200932062305, - 2.175484526959526, - 2.1391775728032494, - 2.1036835200179933, - 2.068990996699462, - 2.0350928625558646, - 2.0019861412945756, - 1.969671988648928, - 1.9381556925791295, - 1.9074467025055566, - 1.877558684612883, - 1.8485096003097072, - 1.8203218048479097, - 1.793022162904874, - 1.7666421776165442, - 1.7412181291293236, - 1.7167912182281295, - 1.6934077100184821, - 1.6711190720249258, - 1.649982100463152, - 1.63005902791299, - 1.6114176052481468, - 1.5941311505722462, - 1.5782785581969332, - 1.5639442615227488, - 1.5512181452049068, - 1.5401954043619157, - 1.5309763519570274, - 1.5236661799560955, - 1.5183746854877704, - 1.5152159799717666, - 1.5143082069169584, - 1.5157733026144984, - 1.5197368429905371, - 1.5263280291566974, - 1.5356798734951322, - 1.5479296574145536, - 1.5632197415115878, - 1.5816988195426391, - 1.603523720778992, - 1.6288618832559099, - 1.6578946465215578, - 1.6908215516411276, - 1.7278658954878374, - 1.7692818761610096, - 1.8153638024981276, - 1.8664580479049158, - 1.9229787475274627, - 1.985428736247878, - 2.054428021856677, - 2.1307533975197916, - 2.215395022927959, - 2.3096397339021535, - 2.415198104886279, - 2.5344064555207346, - 2.6705644515029827, - 2.8285352186887005, - 3.015899467306066, - 3.2454202624852573, - 3.5411463413050006, - 3.9574260660637957, - 4.669930850395864, - 6.2011217117863735, - 5.496590451173972, - 5.080517966959244, - 4.782372527108621, - 4.548783423081131, - 4.355992334581037, - 4.191330522748365, - 4.047237905597036, - 3.9188391831645255, - 3.8028062753656235, - 3.696765980841404, - 3.598966531379926, - 3.5080781079256447, - 3.4230675146478893, - 3.3431162094352374, - 3.267564853661467, - 3.195874711167181, - 3.12760010585835, - 3.0623683441143763, - 2.9998648013332976, - 2.9398216592371513, - 2.8820092742849863, - 2.826229475384403, - 2.7723102985498316, - 2.7201018071161913, - 2.6694727427967098, - 2.620307820335915, - 2.5725055263295755, - 2.5259763171737393, - 2.4806411361677783, - 2.4364301882871087, - 2.393281924939663, - 2.3511422014265526, - 2.3099635777530794, - 2.2697047395278775, - 2.2303300204090646, - 2.191809011242663, - 2.1541162439354546, - 2.1172309403922407, - 2.0811368186595813, - 2.0458219498533343, - 2.0112786605788404, - 1.9775034764343125, - 1.94449710285887, - 1.9122644400744466, - 1.8808146291942511, - 1.8501611267415403, - 1.8203218048479097, - 1.791319074283327, - 1.7631800272119484, - 1.7359365961695092, - 1.7096257252230729, - 1.684289548610334, - 1.6599755713799127, - 1.6367368456947806, - 1.6146321355635376, - 1.5937260618958113, - 1.57408921903212, - 1.555798253398944, - 1.5389358948424752, - 1.5235909316860712, - 1.5098581218470293, - 1.497838034658623, - 1.4876368215832008, - 1.4793659189420103, - 1.4731416922241243, - 1.4690850394591544, - 1.4673209803995315, - 1.4679782685658558, - 1.4711890741451223, - 1.4770887968111865, - 1.4858160783100953, - 1.4975130948527409, - 1.5123262190781162, - 1.5304071512471278, - 1.5519146308185954, - 1.5770168550404673, - 1.6058947542764619, - 1.638746309672164, - 1.6757921548110435, - 1.7172827898457035, - 1.763507870073745, - 1.8148082357331312, - 1.8715916658952292, - 1.9343538339877973, - 2.0037067328873044, - 2.0804181353228284, - 2.165467857689523, - 2.2601304806813225, - 2.366101352899233, - 2.4856966731550574, - 2.622187453391956, - 2.7803922980365754, - 2.967815329647298, - 3.1970703589809912, - 3.4918620449248245, - 3.9055088912458804, - 4.608492096170232, - 6.192875467166922, - 5.488173629916909, - 5.071925453727956, - 4.77359900900192, - 4.53982338177598, - 4.346840037203823, - 4.181980012174164, - 4.037682990246662, - 3.9090734262992064, - 3.792822983865154, - 3.6865581934480334, - 3.5885270063893535, - 3.4973993103067498, - 3.41214160257369, - 3.3319350202090123, - 3.2561198890240006, - 3.184157121973786, - 3.1156006761178117, - 3.05007747438638, - 2.9872724914864395, - 2.9269174905764905, - 2.868782391066509, - 2.8126685657440427, - 2.7584035748871587, - 2.7058369859878972, - 2.654837024393094, - 2.6052878676351807, - 2.5570874440505147, - 2.5101456306779943, - 2.4643827704991326, - 2.41972844757804, - 2.3761204724657548, - 2.3335040406483922, - 2.291831034754275, - 2.2510594473381467, - 2.2111529057944934, - 2.1720802846527496, - 2.1338153934200395, - 2.0963367304424434, - 2.0596272950868455, - 2.02367445200075, - 1.9884698423597682, - 1.954009337914835, - 1.9202930343415894, - 1.8873252808988306, - 1.8551147437381674, - 1.8236745003820143, - 1.793022162904874, - 1.7631800272119484, - 1.7341752455048012, - 1.7060400185502784, - 1.6788118037214903, - 1.6525335339577358, - 1.6272538418013882, - 1.603027281534516, - 1.5799145411961157, - 1.5579826349781531, - 1.5373050652746392, - 1.5179619426330333, - 1.5000400512177046, - 1.4836328473750857, - 1.4688403797662504, - 1.455769121610453, - 1.4445317091709162, - 1.4352465859841006, - 1.4280375596718118, - 1.423033287524689, - 1.4203667182537556, - 1.4201745299937054, - 1.4225966182050265, - 1.4277757007987824, - 1.4358571208027735, - 1.4469889385699444, - 1.4613224156795193, - 1.4790130017599201, - 1.5002219448742804, - 1.5251186584363, - 1.5538839968523965, - 1.5867146238963599, - 1.6238287100994984, - 1.6654732792588525, - 1.7119336556944704, - 1.7635456679154704, - 1.8207115807964516, - 1.8839212242652634, - 1.9537805787692806, - 2.0310513777482013, - 2.116707491870797, - 2.212017747075982, - 2.3186720028351124, - 2.4389812878411656, - 2.576211797351313, - 2.7351776907576926, - 2.923379022167644, - 3.153425904966298, - 3.4490196584468373, - 3.863475785842746, - 4.567272802360266, - 6.205486370658124, - 5.490320225811235, - 5.07049750347368, - 4.770298498268872, - 4.535325147854154, - 4.341477837152081, - 4.175941645441051, - 4.03108326938468, - 3.9019865448485653, - 3.785298673653593, - 3.6786305233004533, - 3.5802195051083525, - 3.4887281117595865, - 3.403117461023122, - 3.322564647883001, - 3.2464068700057065, - 3.174102551786031, - 3.105203618239731, - 3.039335291300259, - 2.9761810876797674, - 2.9154714924437752, - 2.856975280719405, - 2.800492780568443, - 2.7458505812452834, - 2.6928973331303947, - 2.6415003830384833, - 2.5915430565513207, - 2.542922447180956, - 2.4955476067944606, - 2.449338056963187, - 2.4042225595155897, - 2.3601380984669524, - 2.3170290359822965, - 2.2748464130182198, - 2.233547371436869, - 2.1930946791575407, - 2.1534563436467846, - 2.11460530199327, - 2.0765191781506775, - 2.0391800997945086, - 2.0025745687259953, - 1.966693379941127, - 1.9315315854179402, - 1.8970884993979231, - 1.863367742472558, - 1.8303773221481836, - 1.7981297477578448, - 1.7666421776165442, - 1.7359365961695092, - 1.7060400185502784, - 1.676984719432153, - 1.6488084823078357, - 1.6215548643552344, - 1.5952734708368013, - 1.5700202315425227, - 1.5458576701504476, - 1.5228551556012229, - 1.5010891227634806, - 1.4806432479568914, - 1.4616085635150722, - 1.4440834947979213, - 1.428173803260093, - 1.4139924207657806, - 1.4016591637562166, - 1.3913003215519164, - 1.383048121342077, - 1.3770400834349648, - 1.3734182940012003, - 1.3723286383785407, - 1.3739200551956636, - 1.3783438889738062, - 1.3857534351842604, - 1.3963037857943446, - 1.410152094407322, - 1.4274583883303802, - 1.4483870616437033, - 1.4731091914490926, - 1.5018058335089475, - 1.5346724799051281, - 1.5719249088771678, - 1.6138067374737644, - 1.660599117809707, - 1.712633222727546, - 1.7703064866989064, - 1.8341040702923588, - 1.9046278192965018, - 1.9826363061014398, - 2.0691017729393075, - 2.1652937330103823, - 2.272906255119315, - 2.3942601278753286, - 2.532640560931783, - 2.692897350782654, - 2.882599016946464, - 3.11449755342783, - 3.4126317036518445, - 3.831340855760335, - 4.546288402752528, - 6.240287462536957, - 5.503364172806501, - 5.076387224515736, - 4.7725610570681285, - 4.535349620978916, - 4.339950815237309, - 4.173251005764335, - 4.027468215955445, - 3.8976038852198798, - 3.780255807604499, - 3.673003371576536, - 3.574062934959573, - 3.482082333456447, - 3.396012127065926, - 3.315021576144236, - 3.2384419079020907, - 3.165726885101921, - 3.0964247098548294, - 3.030157566659769, - 2.966606442857012, - 2.9054996753060394, - 2.846604179603691, - 2.7897186443852284, - 2.734668187946618, - 2.681300118740263, - 2.6294805401717793, - 2.579091609054844, - 2.5300293059023224, - 2.4822016103179756, - 2.4355270003096523, - 2.3899332131940474, - 2.3453562198282376, - 2.3017393745140318, - 2.259032711009055, - 2.217192361303979, - 2.1761800786618064, - 2.1359628502055057, - 2.0965125873348627, - 2.0578058846362888, - 2.01982383985632, - 1.9825519290409743, - 1.9459799321727311, - 1.9101019056177482, - 1.8749161984651748, - 1.8404255104220628, - 1.8066369893344856, - 1.7735623666415665, - 1.7412181291293236, - 1.7096257252230729, - 1.6788118037214903, - 1.6488084823078357, - 1.6196536423464656, - 1.5913912453572685, - 1.5640716651330395, - 1.5377520277117962, - 1.5124965493446112, - 1.4883768602491085, - 1.4654722993968106, - 1.443870163002234, - 1.423665887001264, - 1.404963141965411, - 1.3878738180475807, - 1.3725178782503877, - 1.3590230611841947, - 1.3475244201921477, - 1.33816369483911, - 1.3310885236577534, - 1.3264515237251144, - 1.3244092826119787, - 1.3251213304237623, - 1.3287491823926953, - 1.3354555637698893, - 1.3454039465762693, - 1.3587585405870268, - 1.375684888327427, - 1.3963512170711718, - 1.4209307031007912, - 1.4496048102549286, - 1.4825678837298173, - 1.5200332212696643, - 1.5622409202939396, - 1.609467928808035, - 1.6620409359082284, - 1.7203530650364436, - 1.7848858481910226, - 1.8562387819247004, - 1.9351701143041318, - 2.02265479799119, - 2.1199695794495326, - 2.2288226569759795, - 2.3515599185649823, - 2.4915101648018476, - 2.6536003322777306, - 2.8455428999536063, - 3.0803843749390785, - 3.382862263938615, - 3.8094506579334397, - 4.546885927011245, - 6.300241436001868, - 5.528003780236842, - 5.089905973357845, - 4.780565674369996, - 4.540015069263686, - 4.3423443953936705, - 4.173973773926651, - 4.026890745523068, - 3.8959696629495713, - 3.7777324355284425, - 3.6697102888170177, - 3.5700874915849283, - 3.4774896310370695, - 3.3908513149815795, - 3.3093300298907984, - 3.232248087966588, - 3.159052344311998, - 3.089285534176982, - 3.022565428895267, - 2.958569385568978, - 2.8970227003489812, - 2.8376896968953513, - 2.7803668164693436, - 2.7248771961921974, - 2.6710663697622916, - 2.618798826045164, - 2.567955231377711, - 2.518430171265207, - 2.4701303029377715, - 2.422972836282644, - 2.376884279870176, - 2.3317994031130254, - 2.287660376399067, - 2.2444160592708484, - 2.2020214130624676, - 2.160437019331876, - 2.1196286892927376, - 2.079567152510621, - 2.040227815571344, - 2.001590583393552, - 1.9636397374455292, - 1.9263638664131726, - 1.8897558459061852, - 1.8538128646205199, - 1.8185364950207732, - 1.78393280707867, - 1.7500125239044275, - 1.7167912182281295, - 1.684289548610334, - 1.6525335339577358, - 1.6215548643552344, - 1.5913912453572685, - 1.5620867716611202, - 1.5336923244648215, - 1.5062659847504682, - 1.4798734522051475, - 1.4545884565031637, - 1.430493144283832, - 1.4076784215056126, - 1.386244227184299, - 1.3662997112136175, - 1.3479632865684892, - 1.3313625254273447, - 1.3166338705003393, - 1.303922138089972, - 1.2933797990873144, - 1.285166038954855, - 1.2794456180462583, - 1.276387578935725, - 1.276163876438658, - 1.2789480364064303, - 1.2849139781133938, - 1.2942351587995315, - 1.3070842148712865, - 1.3236332810137927, - 1.3440551669440355, - 1.3685255655191235, - 1.3972264622066017, - 1.4303509241247903, - 1.4681094790938243, - 1.5107383662436147, - 1.558510068653432, - 1.6117467518515562, - 1.6708375711842198, - 1.7362613456874205, - 1.8086169491892221, - 1.888665166369013, - 1.977388130313483, - 2.076076644860853, - 2.1864634575545363, - 2.310935764018835, - 2.452892082092168, - 2.6173809360098987, - 2.812340421605206, - 3.0512790123498656, - 3.3600381344023114, - 3.7985203849547577, - 4.572046103309871, - 6.390701121632819, - 5.5653816436002685, - 5.111546232721649, - 4.794589905147351, - 4.549502121725043, - 4.348787285210981, - 4.178207618950371, - 4.02942851156789, - 3.897147893644077, - 3.777782888637563, - 3.6687985085470096, - 3.5683350787897488, - 3.4749878315903726, - 3.3876696910150197, - 3.3055222021942536, - 3.2278556588902125, - 3.154107649229719, - 3.083813615198253, - 3.016585478180348, - 2.9520958182905557, - 2.8900659635560646, - 2.8302568864560937, - 2.7724621521311246, - 2.716502390091881, - 2.6622209137544535, - 2.6094802163410598, - 2.5581591441678606, - 2.508150599570902, - 2.459359662468988, - 2.411702046284656, - 2.365102823625154, - 2.3194953717940185, - 2.2748204992609176, - 2.2310257226424897, - 2.188064670233604, - 2.1458965931736245, - 2.104485969295463, - 2.063802187849041, - 2.023819305808461, - 1.984515868506509, - 1.9458747889968753, - 1.9078832819012765, - 1.8705328486119108, - 1.8338193116281356, - 1.7977428965346998, - 1.7623083606891565, - 1.7275251680785157, - 1.6934077100184821, - 1.6599755713799127, - 1.6272538418013882, - 1.5952734708368013, - 1.5640716651330395, - 1.5336923244648215, - 1.5041865116933075, - 1.4756129493825474, - 1.4480385328326746, - 1.421538845626558, - 1.3961986594441809, - 1.3721123949683018, - 1.3493845154071766, - 1.328129818896716, - 1.3084735914485144, - 1.2905515790868807, - 1.2745097375520853, - 1.260503721852694, - 1.2486980875310054, - 1.2392651921047506, - 1.232383809582507, - 1.2282375030765802, - 1.2270128388454882, - 1.2288975664909612, - 1.2340789299718267, - 1.2427423072503012, - 1.2550703978045172, - 1.2712431838472804, - 1.291438883126405, - 1.3158360931549236, - 1.34461730754308, - 1.3779739774413284, - 1.4161133103669885, - 1.4592670625016628, - 1.5077027096968163, - 1.5617376044415676, - 1.6217570829483596, - 1.6882380493805555, - 1.7617804602963025, - 1.8431505971977342, - 1.9333424991014672, - 2.0336683258184514, - 2.1458966059016276, - 2.2724734369778483, - 2.4168956428627406, - 2.5843824790363974, - 2.7831892333246144, - 3.027477981285854, - 3.344672282542259, - 3.7997142853674757, - 4.627144286486655, - 6.521101837883849, - 5.617229391332406, - 5.142020506646101, - 4.815025762274929, - 4.564061853021409, - 4.359456183420063, - 4.186085201652367, - 4.0351859525726805, - 3.901223859325254, - 3.7804788713649815, - 3.6703297857173522, - 3.5688599687478826, - 3.4746254643407664, - 3.3865113073143998, - 3.303638614227601, - 3.2253023349220094, - 3.15092827321661, - 3.080042636603798, - 3.012249974785601, - 2.9472168803245786, - 2.8846597371466958, - 2.824335369951312, - 2.766033810027049, - 2.709572630198876, - 2.654792460307028, - 2.6015534028512484, - 2.5497321435839204, - 2.4992196048695434, - 2.4499190276168266, - 2.401744395179879, - 2.3546191329222426, - 2.30847503225125, - 2.2632513593139985, - 2.2188941172157346, - 2.1753554372950807, - 2.1325930801825312, - 2.0905700314510813, - 2.0492541799124075, - 2.0086180692187767, - 1.9686387155480238, - 1.9292974858863565, - 1.8905800328628333, - 1.8524762832890729, - 1.8149804785595998, - 1.7780912658985597, - 1.7418118401105391, - 1.706150136007211, - 1.6711190720249258, - 1.6367368456947806, - 1.603027281534516, - 1.5700202315425227, - 1.5377520277117962, - 1.5062659847504682, - 1.4756129493825474, - 1.4458518900808588, - 1.4170505177229766, - 1.389285923341919, - 1.362645213789308, - 1.3372261197457544, - 1.3131375432505672, - 1.290500004149728, - 1.2694459372556648, - 1.250119785650653, - 1.2326778319816, - 1.217287710771519, - 1.2041275530143973, - 1.1933847319349913, - 1.185254207576495, - 1.1799365083951332, - 1.177635438867747, - 1.178555659265829, - 1.1829003406128002, - 1.1908691459977567, - 1.2026568203814505, - 1.2184526787105712, - 1.2384412653831283, - 1.26280442232781, - 1.291724960429504, - 1.3253920973992879, - 1.3640088251706097, - 1.407801423425233, - 1.4570314661926342, - 1.5120109039455765, - 1.5731211863534793, - 1.6408379931753978, - 1.715764094983672, - 1.7986744204532032, - 1.8905800435475968, - 1.9928224843287672, - 2.1072184627568147, - 2.236292568803166, - 2.3836720718213944, - 2.5548029264876355, - 2.7583637894281274, - 3.009398277503596, - 3.3375033643959813, - 3.814790945436884, - 4.721643269237591, - 6.70898480483828, - 5.686119923614513, - 5.182323191094436, - 4.8424039105744034, - 4.584027779257543, - 4.374582648534407, - 4.197778506377392, - 4.044297219689548, - 3.9083061927173786, - 3.78591100636885, - 3.6743815794104533, - 3.5717297313541967, - 3.476462506840532, - 3.38743021193338, - 3.303728621525543, - 3.224633721420734, - 3.1495568047629674, - 3.078012751794037, - 3.009597106912424, - 2.9439691806325587, - 2.880839372990921, - 2.8199595152475343, - 2.7611154090426817, - 2.70412099169697, - 2.6488137228256443, - 2.595050900737831, - 2.5427066955971043, - 2.4916697416175806, - 2.4418411701125495, - 2.393132993886814, - 2.3454667745292364, - 2.2987725198282893, - 2.252987770321279, - 2.2080568429579825, - 2.1639302067613158, - 2.120563970737238, - 2.0779194685110367, - 2.035962927530466, - 1.994665213386587, - 1.9540016420154476, - 1.9139518543732696, - 1.8744997497104776, - 1.8356334748688032, - 1.7973454681357655, - 1.7596325571417941, - 1.72249611109281, - 1.6859422482976247, - 1.649982100463152, - 1.6146321355635376, - 1.5799145411961157, - 1.5458576701504476, - 1.5124965493446112, - 1.4798734522051475, - 1.4480385328326746, - 1.4170505177229766, - 1.3869774471971255, - 1.3578974538169324, - 1.3298995587239948, - 1.3030844589068158, - 1.2775652688757952, - 1.2534681693612082, - 1.230932904080926, - 1.2101130545354266, - 1.1911760140597927, - 1.1743025786660826, - 1.1596860769366915, - 1.147530978162226, - 1.1380509505276033, - 1.1314663914992813, - 1.1280015199396365, - 1.1278811991132747, - 1.131327742286828, - 1.1385580248877942, - 1.1497812747895326, - 1.1651979237294336, - 1.1849998740587941, - 1.2093724725275248, - 1.2384984042698384, - 1.2725636515388716, - 1.3117656325298956, - 1.3563236744862373, - 1.4064921087583018, - 1.4625765319869408, - 1.5249541979387726, - 1.5941001613372696, - 1.670621826395195, - 1.7553062247607008, - 1.8491871807423186, - 1.9536445663473219, - 2.0705573274955875, - 2.2025508790580073, - 2.3534199788141494, - 2.5289027790389795, - 2.73822822905932, - 2.9976023341845854, - 3.339558246808717, - 3.846356080071987, - 4.873117168871319, - 6.991312675611428, - 5.775915911003154, - 5.233827880001362, - 4.877429575674228, - 4.609833070873748, - 4.394462739781846, - 4.213504827990522, - 4.0569301777055085, - 3.9185297015360208, - 3.79419091451172, - 3.681048637153568, - 3.5770264744492883, - 3.480571377988151, - 3.3904912590381233, - 3.305851085612975, - 3.225903879150595, - 3.150043427060111, - 3.0777709954381263, - 3.008671346796529, - 2.9423951080973354, - 2.8786455744816806, - 2.8171686757434897, - 2.7577452397259727, - 2.7001849516594203, - 2.6443215846290142, - 2.590009195929917, - 2.5371190667131236, - 2.4855372204097588, - 2.435162396872069, - 2.3859043891709937, - 2.3376826719933934, - 2.290425266921019, - 2.2440678021510054, - 2.1985527335503874, - 2.153828701112437, - 2.10985000046313, - 2.0665761534582625, - 2.0239715654126336, - 1.9820052593312907, - 1.940650679832136, - 1.8998855613812287, - 1.8596918570984984, - 1.8200557258005692, - 1.780967576178914, - 1.742422168099879, - 1.7044187719786923, - 1.6669613880288554, - 1.63005902791299, - 1.5937260618958113, - 1.5579826349781531, - 1.5228551556012229, - 1.4883768602491085, - 1.4545884565031637, - 1.421538845626558, - 1.389285923341919, - 1.3578974538169324, - 1.3274520066525508, - 1.298039939511325, - 1.269764399585701, - 1.2427423051493471, - 1.217105253959835, - 1.1930002887265898, - 1.1705904323595657, - 1.1500548894036013, - 1.1315887983395845, - 1.1154024170744536, - 1.1017196368617033, - 1.0907757543105947, - 1.0828144919794758, - 1.078084346621855, - 1.076834455617173, - 1.0793102936865728, - 1.0857496233105972, - 1.096379199037396, - 1.1114127467528616, - 1.1310506939024765, - 1.1554820232243739, - 1.1848884872951984, - 1.2194512943210276, - 1.259360301507421, - 1.3048257704100479, - 1.356092879509149, - 1.413459479356694, - 1.4772980514345726, - 1.5480835639585675, - 1.626430050494515, - 1.7131405584358617, - 1.8092781966405547, - 1.91627152070257, - 2.0360779177259363, - 2.1714496434397685, - 2.326392628193958, - 2.5070158213028537, - 2.7232545350776776, - 2.992834730865513, - 3.3522499839657454, - 3.8983115888746473, - 5.118567449347718, - 7.467945828347758, - 5.892611401105784, - 5.298442796337723, - 4.921035829678596, - 4.642035033967545, - 4.419470356117054, - 4.233534897035056, - 4.07329175841969, - 3.9320591069394415, - 3.80545394513409, - 3.6904450609043344, - 3.5848484527030906, - 3.4870382209517548, - 3.3957711523276948, - 3.310075236898467, - 3.229176048060405, - 3.1524465324766404, - 3.07937181057401, - 3.0095239068639645, - 2.942543229252951, - 2.8781247455125643, - 2.8160074981670546, - 2.7559665368953055, - 2.697806631256836, - 2.641357314617304, - 2.586468937389407, - 2.533009495402913, - 2.4808620606913547, - 2.429922685747929, - 2.380098683910599, - 2.3313072116709397, - 2.283474095849009, - 2.236532861440936, - 2.1904239257107174, - 2.1450939315968114, - 2.1004951993321583, - 2.0565852797626083, - 2.0133265965069853, - 1.9706861670635458, - 1.9286353954053055, - 1.8871499306504076, - 1.8462095881420917, - 1.8057983308004997, - 1.765904309971671, - 1.7265199662383643, - 1.6876421917997642, - 1.6492725570860853, - 1.6114176052481468, - 1.57408921903212, - 1.5373050652746392, - 1.5010891227634806, - 1.4654722993968106, - 1.430493144283832, - 1.3961986594441809, - 1.362645213789308, - 1.3298995587239948, - 1.298039939511325, - 1.2671572889310456, - 1.2373564791033485, - 1.208757593043606, - 1.1814971591270687, - 1.1557292691690626, - 1.1316264750622287, - 1.1093803319615418, - 1.0892014318555963, - 1.071318756357734, - 1.0559781804901645, - 1.0434399905988172, - 1.0339753493857224, - 1.027861755328379, - 1.025377699485751, - 1.0267969035579803, - 1.032382698147396, - 1.0423832285229973, - 1.057028217333443, - 1.076527947210467, - 1.1010749588647246, - 1.1308487335718749, - 1.1660234083119703, - 1.2067784277024238, - 1.253312026114015, - 1.3058575908897077, - 1.3647033031054587, - 1.4302160113229263, - 1.5028711304004838, - 1.5832916220572406, - 1.6723011229944869, - 1.7709996809588247, - 1.880876656577251, - 2.00398698447653, - 2.14324067758289, - 2.3029074612148164, - 2.4895636436243698, - 2.7140480054265876, - 2.9960762991657295, - 3.3775339209900275, - 3.976697709768482, - 5.557899819980899, - 8.662276051243882, - 6.046049387536831, - 5.378867464364907, - 4.97446383840064, - 4.681350107528559, - 4.450075675849753, - 4.258203852185536, - 4.093635066871561, - 3.949093941540128, - 3.8198627167858343, - 3.7027069646075406, - 3.595312123703272, - 3.4959645340693797, - 3.403359765849491, - 3.316481763282673, - 3.234523557987466, - 3.1568334942110647, - 3.0828777096353894, - 3.0122133113356315, - 2.9444687865521955, - 2.879329427793221, - 2.816526308598258, - 2.755827821989934, - 2.697033100505096, - 2.639966839294227, - 2.5844751803539694, - 2.530422409780678, - 2.477688285503424, - 2.4261658595082287, - 2.375759692101675, - 2.3263843802512527, - 2.2779633401527053, - 2.2304277977364544, - 2.183715951101217, - 2.1377722767426164, - 2.092546957561184, - 2.047995415444195, - 2.004077935052608, - 1.9607593685541154, - 1.9180089136101823, - 1.8757999590882162, - 1.8341099948364095, - 1.792920583510619, - 1.752217393943579, - 1.711990296945579, - 1.6722335257581737, - 1.6329459046716526, - 1.5941311505722462, - 1.555798253398944, - 1.5179619426330333, - 1.4806432479568914, - 1.443870163002234, - 1.4076784215056126, - 1.3721123949683018, - 1.3372261197457544, - 1.3030844589068158, - 1.269764399585701, - 1.2373564791033485, - 1.2059663218854264, - 1.1757162530512022, - 1.1467469323991808, - 1.1192189235696888, - 1.0933140773976215, - 1.0692365673897204, - 1.047213372931615, - 1.0274939700035792, - 1.0103489721621457, - 0.9960674829940075, - 0.9849529939068625, - 0.9773178033954827, - 0.9734761493137585, - 0.9737365161159528, - 0.9783938589184746, - 0.9877227067849095, - 1.0019721955097012, - 1.0213639871495646, - 1.0460937644292783, - 1.0763366101859226, - 1.1122562068060757, - 1.154017535731681, - 1.2018027083190077, - 1.2558297540262795, - 1.3163746317440892, - 1.383797416551705, - 1.4585745966458694, - 1.5413408503631778, - 1.6329459160218793, - 1.7345359504065099, - 1.8476756127519487, - 1.974540305743546, - 2.1182352239085165, - 2.2833585607711018, - 2.477075316583118, - 2.711383260066908, - 3.00862518605569, - 3.4181650181582164, - 4.091411104486969, - 6.714561007231444, - 6.253882004164689, - 5.479037735002412, - 5.039386864886104, - 4.728704626505355, - 4.486870848750874, - 4.28792610866167, - 4.118268816596582, - 3.9698749526672454, - 3.8376116902590987, - 3.7179958734610525, - 3.6085547573303174, - 3.507469227399732, - 3.4133618008165714, - 3.32516416985236, - 3.242030962200334, - 3.1632816241092674, - 3.0883600932116044, - 3.0168061031344604, - 2.948234313962167, - 2.8823188408821654, - 2.818781589176428, - 2.757383326070915, - 2.6979167551978436, - 2.6402010797472717, - 2.5840776882974965, - 2.529406698545377, - 2.476064164664817, - 2.423939803923477, - 2.3729351340327183, - 2.3229619388109644, - 2.2739409990009025, - 2.225801039468501, - 2.178477854890322, - 2.131913584361078, - 2.08605611180513, - 2.0408585741426, - 1.9962789631994886, - 1.9522798106251533, - 1.908827947787039, - 1.8658943349018169, - 1.8234539556500544, - 1.7814857752992337, - 1.7399727619999266, - 1.6989019724804357, - 1.6582647048927794, - 1.6180567230931353, - 1.5782785581969332, - 1.5389358948424752, - 1.5000400512177046, - 1.4616085635150722, - 1.423665887001264, - 1.386244227184299, - 1.3493845154071766, - 1.3131375432505672, - 1.2775652688757952, - 1.2427423051493471, - 1.208757593043606, - 1.1757162530512022, - 1.1437415904742971, - 1.1129772054630998, - 1.0835891235440376, - 1.055767815555438, - 1.0297299173376713, - 1.0057193922039902, - 0.9840078113570565, - 0.9648933747800992, - 0.9486982825120571, - 0.9357641260454602, - 0.9264451351079408, - 0.9210994062519724, - 0.920078643406665, - 0.9237173933952026, - 0.9323231467256584, - 0.9461688584887289, - 0.9654893230576004, - 0.9904824015900415, - 1.0213154658565144, - 1.0581367849954268, - 1.1010911493822024, - 1.1503389320886186, - 1.2060780649969054, - 1.2685690115890025, - 1.3381637034198746, - 1.4153405931616456, - 1.5007496289584794, - 1.59527348302026, - 1.7001156303236007, - 1.8169336561097107, - 1.9480513835965223, - 2.096815287603023, - 2.2682330723680533, - 2.47021433406927, - 2.716255998475923, - 3.0322216369382535, - 3.4781434784635215, - 4.260165515718678, - 6.552545592110836, - 5.604949929427102, - 5.118108844779264, - 4.785310097457447, - 4.530606311872678, - 4.323215696513245, - 4.147569931676453, - 3.9946925013811296, - 3.858933082639212, - 3.7365030705413975, - 3.6247377418266042, - 3.5216912087684484, - 3.425898856040342, - 3.336230469253105, - 3.2517954406150387, - 3.171879354211384, - 3.0959002572166154, - 3.023377711551433, - 2.953910391319571, - 2.887159543218488, - 2.822836561273645, - 2.7606935072478627, - 2.700515778170215, - 2.642116364398195, - 2.5853313033171994, - 2.530016043975749, - 2.476042514409445, - 2.42329673732703, - 2.3716768784374263, - 2.3210916397271175, - 2.27145893061955, - 2.2227047653121796, - 2.174762346174345, - 2.1275713019362135, - 2.081077056239856, - 2.035230307485395, - 1.989986605172162, - 1.9453060113903355, - 1.9011528389754468, - 1.8574954602585954, - 1.8143061824558016, - 1.771561187641259, - 1.7292405370237751, - 1.6873282409623003, - 1.645812397874107, - 1.6046854069585408, - 1.5639442615227488, - 1.5235909316860712, - 1.4836328473750857, - 1.4440834947979213, - 1.404963141965411, - 1.3662997112136175, - 1.328129818896716, - 1.290500004149728, - 1.2534681693612082, - 1.217105253959835, - 1.1814971591270687, - 1.1467469323991808, - 1.1129772054630998, - 1.0803328527014935, - 1.0489837984789316, - 1.0191278438442404, - 0.9909933051714405, - 0.9648411581401758, - 0.940966266644202, - 0.9196971651868777, - 0.9013937887536595, - 0.8864425581232498, - 0.8752483955365222, - 0.8682236217924374, - 0.8657742819111844, - 0.8682851845065453, - 0.8761056325571236, - 0.8895382116486046, - 0.908832864913981, - 0.9341877737474382, - 0.9657574748590988, - 1.003667550626374, - 1.048034509280952, - 1.0989893399618618, - 1.1567036837752214, - 1.2214184624931008, - 1.2934760035698298, - 1.373358165966895, - 1.461734889018212, - 1.5595304532373315, - 1.668019593274862, - 1.788974585828628, - 1.924902288642278, - 2.079448206334187, - 2.2581331010790757, - 2.4698161444763214, - 2.7299592071955807, - 3.0692472721786714, - 3.563539407481163, - 4.5194672235592614, - 7.038816516758468, - 5.766328361368968, - 5.213897451350211, - 4.852778126926378, - 4.5822431572324795, - 4.364714480004488, - 4.182000553095088, - 4.023897661829109, - 3.8841045561367986, - 3.758455174596811, - 3.6440507815457717, - 3.5387926387455293, - 3.4411120150822865, - 3.34980528117598, - 3.263928533831187, - 3.182727690723489, - 3.105590627982213, - 3.032013513276715, - 2.9615765647583485, - 2.8939262373443144, - 2.8287618950736277, - 2.765825679871245, - 2.7048947001334422, - 2.645774931050334, - 2.58829639706446, - 2.532309327927709, - 2.477681063452545, - 2.424293540803919, - 2.3720412400883997, - 2.3208294943236667, - 2.270573092111847, - 2.221195117859434, - 2.1726259868092415, - 2.1248026416078085, - 2.077667884424852, - 2.0311698243425402, - 1.9852614242580622, - 1.939900135199911, - 1.895047608976938, - 1.850669482635551, - 1.8067352304324196, - 1.7632180810489435, - 1.7200949996723187, - 1.6773467364267458, - 1.6349579445295153, - 1.5929173735376285, - 1.5512181452049068, - 1.5098581218470293, - 1.4688403797662504, - 1.428173803260093, - 1.3878738180475807, - 1.3479632865684892, - 1.3084735914485144, - 1.2694459372556648, - 1.230932904080926, - 1.1930002887265898, - 1.1557292691690626, - 1.1192189235696888, - 1.0835891235440376, - 1.0489837984789316, - 1.0155745276790924, - 0.9835643528094216, - 0.9531916065271895, - 0.9247334179193698, - 0.8985083810944368, - 0.8748776739803298, - 0.8542437295011287, - 0.8370454668440949, - 0.8237492006230706, - 0.814834789129931, - 0.8107774394200785, - 0.8120267903196032, - 0.8189861517547807, - 0.8319956004314313, - 0.8513225356545416, - 0.8771621199068361, - 0.9096481127690111, - 0.9488726884048391, - 0.9949126353601752, - 1.0478592235533988, - 1.1078498725095574, - 1.175101192063983, - 1.249944652351789, - 1.3328679761922226, - 1.42456756810894, - 1.5260205431225462, - 1.6385904865148773, - 1.7641916029107576, - 1.9055572733670523, - 2.066705608012785, - 2.253805417703131, - 2.476941628122616, - 2.754198896589213, - 3.1230587230346982, - 3.6841607231547715, - 4.9661712165994345, - 8.20035476696892, - 5.980439847864506, - 5.331576925419293, - 4.933302462166995, - 4.643030588877142, - 4.413232047354445, - 4.222131314493728, - 4.057917049628711, - 3.913459299337431, - 3.7841213450283493, - 3.6667172539540642, - 3.5589630432276205, - 3.4591650879764595, - 3.3660324447498318, - 3.2785582881755215, - 3.1959420037687147, - 3.117536276325418, - 3.0428101286559266, - 2.971322468075742, - 2.902702748772866, - 2.8366365707627863, - 2.772854777319033, - 2.711125079192712, - 2.6512455351390303, - 2.5930394173187143, - 2.536351124442149, - 2.4810428978556383, - 2.4269921603439166, - 2.374089343300589, - 2.3222361009899997, - 2.271343834791069, - 2.221332468202999, - 2.1721294268014444, - 2.1236687875092484, - 2.07589056936663, - 2.0287401440790838, - 1.9821677494416645, - 1.936128092620119, - 1.8905800334629521, - 1.8454863407154714, - 1.800813516357729, - 1.7565316854152921, - 1.7126145505984718, - 1.6690394131040611, - 1.6257872629496841, - 1.5828429443889738, - 1.5401954043619157, - 1.497838034658623, - 1.455769121610453, - 1.4139924207657806, - 1.3725178782503877, - 1.3313625254273447, - 1.2905515790868807, - 1.250119785650653, - 1.2101130545354266, - 1.1705904323595657, - 1.1316264750622287, - 1.0933140773976215, - 1.055767815555438, - 1.0191278438442404, - 0.9835643528094216, - 0.9492825328232868, - 0.9165278794832434, - 0.8855915082561343, - 0.856814901470708, - 0.8305931904347228, - 0.8073757123834697, - 0.7876622714619177, - 0.7719934572705744, - 0.7609337938086345, - 0.7550476537808386, - 0.7548698150879176, - 0.7608748458071634, - 0.773451259301198, - 0.7928865100900675, - 0.8193669050217213, - 0.8529930096709294, - 0.8938076626329002, - 0.9418317490658636, - 0.9971029895897643, - 1.0597147120130326, - 1.1298539893002069, - 1.2078409572273814, - 1.2941734074588755, - 1.3895832656834697, - 1.495115209920524, - 1.6122441238976368, - 1.7430606297475504, - 1.890580052293846, - 2.059288501494195, - 2.2561826576753483, - 2.4929554683113437, - 2.791276751371219, - 3.198580840817083, - 3.857367877513096, - 6.088026524923259, - 6.282557188707637, - 5.478667951532753, - 5.029960862854903, - 4.71462413123557, - 4.469803409235904, - 4.268673766769601, - 4.097272910988711, - 3.9473993948917214, - 3.8138226744111097, - 3.6930010974737906, - 3.582424541575345, - 3.48024869349843, - 3.3850782822687138, - 3.2958319176394726, - 3.211654235846116, - 3.1318567768946197, - 3.0558770071637307, - 2.983249189727992, - 2.9135832160443633, - 2.8465489232966004, - 2.781864275928155, - 2.7192863230673883, - 2.658604185349125, - 2.599633549039431, - 2.5422122958844047, - 2.4861970000289473, - 2.4314600949827154, - 2.377887564271905, - 2.3253770457824534, - 2.27383626627023, - 2.223181742033835, - 2.1733376963227578, - 2.124235155075262, - 2.0758111910196524, - 2.028008292721776, - 1.9807738403206214, - 1.9340596738290472, - 1.8878217432618047, - 1.84201983269702, - 1.7966173528442853, - 1.751581198916248, - 1.7068816726951754, - 1.6624924697544752, - 1.6183907349362991, - 1.5745571915007168, - 1.5309763519570274, - 1.4876368215832008, - 1.4445317091709162, - 1.4016591637562166, - 1.3590230611841947, - 1.3166338705003393, - 1.2745097375520853, - 1.2326778319816, - 1.1911760140597927, - 1.1500548894036013, - 1.1093803319615418, - 1.0692365673897204, - 1.0297299173376713, - 0.9909933051714405, - 0.9531916065271895, - 0.9165278794832434, - 0.8812504070709689, - 0.8476602983916017, - 0.8161190860850985, - 0.7870552938399812, - 0.7609683271131471, - 0.7384273491596204, - 0.7200622919112507, - 0.7065442842512142, - 0.6985541671941176, - 0.6967408051870908, - 0.7016751694205633, - 0.7138099726512315, - 0.7334555432979171, - 0.7607791799330635, - 0.7958285659842436, - 0.838573315212826, - 0.8889555273654534, - 0.9469411769674058, - 1.0125677656205818, - 1.0859878489117725, - 1.1675115342390443, - 1.2576537427586505, - 1.3571947009645802, - 1.4672661261424869, - 1.5894830842637337, - 1.7261567632037083, - 1.8806560913181443, - 2.058061216979082, - 2.2664420157368608, - 2.5196449678284867, - 2.8443923255383003, - 3.3034466914849254, - 4.118537324745116, - 6.764873749851185, - 5.667818607654, - 5.147245366951928, - 4.799273062637423, - 4.535774812187965, - 4.322526524182139, - 4.1426108064858855, - 3.9864137930016597, - 3.8479445746368204, - 3.7232157536569863, - 3.609438547423308, - 3.5045854356810895, - 3.4071357007166343, - 3.315919123777224, - 3.2300156384168757, - 3.148688499535862, - 3.07133837219269, - 2.9974709430822246, - 2.926673540079361, - 2.8585979114711546, - 2.792947314997047, - 2.729466684319224, - 2.6679350331866174, - 2.608159513462965, - 2.5499707137098255, - 2.4932189009291625, - 2.437770988303482, - 2.383508068233659, - 2.330323390317783, - 2.278120693150499, - 2.2268128202926287, - 2.176320566729297, - 2.1265717141593674, - 2.077500222627434, - 2.029045553092678, - 1.981152101080421, - 1.9337687259866831, - 1.8868483642043474, - 1.8403477172401461, - 1.7942270085737841, - 1.748449805319377, - 1.702982902909493, - 1.6577962731462001, - 1.6128630781614204, - 1.5681597552146784, - 1.5236661799560955, - 1.4793659189420103, - 1.4352465859841006, - 1.3913003215519164, - 1.3475244201921477, - 1.303922138089972, - 1.260503721852694, - 1.217287710771519, - 1.1743025786660826, - 1.1315887983395845, - 1.0892014318555963, - 1.047213372931615, - 1.0057193922039902, - 0.9648411581401758, - 0.9247334179193698, - 0.8855915082561343, - 0.8476602983916017, - 0.8112445006554005, - 0.776719949027108, - 0.7445448529538045, - 0.7152690976229894, - 0.689538382342647, - 0.6680886103143608, - 0.6517251788894923, - 0.6412829508967228, - 0.6375671116050715, - 0.6412829522508537, - 0.6529710015532859, - 0.6729672454087618, - 0.7014021301992301, - 0.7382386458244367, - 0.7833369874346034, - 0.8365282955335024, - 0.8976835728061345, - 0.9667716489822766, - 1.0439073028139174, - 1.1293953718686005, - 1.223779421336305, - 1.3279059856783062, - 1.4430196294155242, - 1.570912974166197, - 1.7141748750774026, - 1.8766219845289307, - 2.064098561814314, - 2.2860915788675924, - 2.559407657616018, - 2.9181732474819446, - 3.4504282898642056, - 4.559975869401111, - 7.8690713581886955, - 5.922807968707051, - 5.292065178272656, - 4.900131924493578, - 4.612935717048876, - 4.384842636179306, - 4.1947385419431304, - 4.031102881683937, - 3.886953338578264, - 3.757735913496845, - 3.6403144438443573, - 3.5324365251928693, - 3.4324293851997774, - 3.3390162634943144, - 3.2512001823859595, - 3.1681874471597538, - 3.089335616904741, - 3.014117114787397, - 2.9420931549082474, - 2.872894663534212, - 2.8062080573997057, - 2.7417644670368815, - 2.6793314500739935, - 2.6187065348683185, - 2.559712130262352, - 2.502191469218697, - 2.4460053448863173, - 2.3910294611952514, - 2.337152265248946, - 2.2842731613624307, - 2.2323010304108784, - 2.1811529957879783, - 2.1307533904940863, - 2.081032889908149, - 2.031927782510586, - 1.9833793568357814, - 1.9353333876924588, - 1.8877397085306145, - 1.8405518600061586, - 1.7937268074943424, - 1.747224722688066, - 1.701008826621113, - 1.6550452936004094, - 1.6093032177334086, - 1.5637546461205794, - 1.5183746854877704, - 1.4731416922241243, - 1.4280375596718118, - 1.383048121342077, - 1.33816369483911, - 1.2933797990873144, - 1.2486980875310054, - 1.2041275530143973, - 1.1596860769366915, - 1.1154024170744536, - 1.071318756357734, - 1.0274939700035792, - 0.9840078113570565, - 0.940966266644202, - 0.8985083810944368, - 0.856814901470708, - 0.8161190860850985, - 0.776719949027108, - 0.7389979317299079, - 0.7034323682196887, - 0.6706188981271951, - 0.6412829496841996, - 0.6162825702976316, - 0.5965910087537188, - 0.5832488188199249, - 0.577280590018689, - 0.5795853704996925, - 0.590828598863063, - 0.6113739571275175, - 0.6412829554962909, - 0.6803812911291459, - 0.7283644472564315, - 0.7849080811027309, - 0.8497602535478918, - 0.9228093620246152, - 1.004133642608607, - 1.0940434509608383, - 1.193129115003229, - 1.3023285689870512, - 1.4230333041357388, - 1.557262030940127, - 1.7079559404788218, - 1.8795052491218538, - 2.0787534496353497, - 2.3171021625308748, - 2.6155624109974775, - 3.0196775625163825, - 3.6634395840781506, - 5.623489024166781, - 6.297161590100261, - 5.475838751840824, - 5.021809558894872, - 4.703730186428496, - 4.457130982525939, - 4.254682241222577, - 4.082212736198607, - 3.9314186483827314, - 3.7970131623429255, - 3.6754209494657895, - 3.564110337376319, - 3.4612224352458054, - 3.365351623568062, - 3.275408838838161, - 3.1905327927506666, - 3.110030272369029, - 3.033334789377541, - 2.959977200541037, - 2.8895643668412294, - 2.8217633480235795, - 2.756289494087367, - 2.692897334625645, - 2.631373512472631, - 2.5715312348474635, - 2.51320586717613, - 2.4562513986561205, - 2.4005375808896283, - 2.345947591991822, - 2.292376115228488, - 2.239727747895133, - 2.18791567579379, - 2.1368605633202367, - 2.08648962024339, - 2.0367358147220043, - 1.9875372086600982, - 1.9388363966562214, - 1.8905800339234209, - 1.842718441924316, - 1.795205283293005, - 1.7479973000730835, - 1.7010541115318463, - 1.654338069942274, - 1.6078141748797, - 1.5614500488875855, - 1.5152159799717666, - 1.4690850394591544, - 1.423033287524689, - 1.3770400834349648, - 1.3310885236577534, - 1.285166038954855, - 1.2392651921047506, - 1.1933847319349913, - 1.147530978162226, - 1.1017196368617033, - 1.0559781804901645, - 1.0103489721621457, - 0.9648933747800992, - 0.9196971651868777, - 0.8748776739803298, - 0.8305931904347228, - 0.7870552938399812, - 0.7445448529538045, - 0.7034323682196887, - 0.6642028940299971, - 0.6274845540609124, - 0.5940769948100408, - 0.5649712904104458, - 0.5413458830807959, - 0.5245170201490057, - 0.5158249518117682, - 0.5164598716325194, - 0.5272738166498214, - 0.5486575852646066, - 0.5805440356952958, - 0.6225322750992353, - 0.6740684148300826, - 0.7346133108577575, - 0.8037623216431702, - 0.8813176878908939, - 0.9673315285384254, - 1.062140144858481, - 1.1664079468304542, - 1.281198525097037, - 1.4080949272913723, - 1.549405162997226, - 1.708521667654583, - 1.8905800588064392, - 2.1037575301344917, - 2.3621177020207464, - 2.6928973812675787, - 3.1604846957828627, - 3.996150868213606, - 6.962354440136341, - 5.719498365579107, - 5.1714123724218695, - 4.811612750371892, - 4.541414528477204, - 4.3237694213269675, - 4.140683962008091, - 3.9820447511565233, - 3.841597155583427, - 3.7152012185663903, - 3.5999736084299503, - 3.4938249360546543, - 3.3951921595196106, - 3.3028749978750134, - 3.215931321409711, - 3.1336077098848065, - 3.0552918799860014, - 2.980479204042152, - 2.90874858957159, - 2.8397447441366754, - 2.773164898161957, - 2.7087487047144436, - 2.6462704451656376, - 2.5855329362073154, - 2.526362710936189, - 2.468606166975714, - 2.412126457692512, - 2.3568009609383247, - 2.3025192013887352, - 2.249181132676081, - 2.1966957075990043, - 2.144979681084659, - 2.0939566028958523, - 2.0435559664398193, - 1.993712487243827, - 1.9443654902866496, - 1.8954583898307227, - 1.8469382489968627, - 1.7987554092973408, - 1.7508631828786891, - 1.7032176024748125, - 1.6557772261663617, - 1.6085029961086592, - 1.5613581525559075, - 1.5143082069169584, - 1.4673209803995315, - 1.4203667182537556, - 1.3734182940012003, - 1.3264515237251144, - 1.2794456180462583, - 1.232383809582507, - 1.185254207576495, - 1.1380509505276033, - 1.0907757543105947, - 1.0434399905988172, - 0.9960674829940075, - 0.9486982825120571, - 0.9013937887536595, - 0.8542437295011287, - 0.8073757123834697, - 0.7609683271131471, - 0.7152690976229894, - 0.6706188981271951, - 0.6274845540609124, - 0.5865007288168587, - 0.5485197072392705, - 0.5146612517587283, - 0.48634179396321875, - 0.46524337506292046, - 0.453170804633632, - 0.45177319280785944, - 0.4621992397689351, - 0.4848586453390835, - 0.5194391180609947, - 0.5651573411091257, - 0.621082138563497, - 0.6863872945730258, - 0.7604931046665032, - 0.8431255193479291, - 0.9343371640412786, - 1.0345246721978294, - 1.1444656348670792, - 1.2653947097850469, - 1.3991442766130175, - 1.548394331446799, - 1.717121771048606, - 1.9114483828118514, - 2.1413773906500464, - 2.424809091626326, - 2.7987113453139885, - 3.361698252380982, - 4.620190292986258, - 6.068226357685836, - 5.360734895500924, - 4.9416860521821295, - 4.6404884606497845, - 4.4037562692453465, - 4.207723236716991, - 4.0397146019197585, - 3.8921648190216005, - 3.7601932258948434, - 3.6404662893195474, - 3.5306051664173044, - 3.428852200563305, - 3.3338713960730244, - 3.2446230587638025, - 3.160281796321883, - 3.080181039037263, - 3.0037744095749006, - 2.930608150406724, - 2.8603010145776886, - 2.7925293187508045, - 2.727015644844873, - 2.6635201703421667, - 2.6018339252064053, - 2.5417734828178404, - 2.4831767332959145, - 2.4258994842608947, - 2.369812701548758, - 2.31480025021685, - 2.2607570305746356, - 2.2075874290490995, - 2.155204022206416, - 2.10352648608331, - 2.052480673437586, - 2.001997829524657, - 1.9520139231989748, - 1.902469074999193, - 1.8533070677515286, - 1.80447492837858, - 1.7559225722324892, - 1.707602503543577, - 1.6594695676252427, - 1.6114807524272983, - 1.5635950390060975, - 1.5157733026144984, - 1.4679782685658558, - 1.4201745299937054, - 1.3723286383785407, - 1.3244092826119787, - 1.276387578935725, - 1.2282375030765802, - 1.1799365083951332, - 1.1314663914992813, - 1.0828144919794758, - 1.0339753493857224, - 0.9849529939068625, - 0.9357641260454602, - 0.8864425581232498, - 0.8370454668440949, - 0.7876622714619177, - 0.7384273491596204, - 0.689538382342647, - 0.6412829496841996, - 0.5940769948100408, - 0.5485197072392705, - 0.5054689176383356, - 0.4661359355842781, - 0.4321813124863285, - 0.40575275845164643, - 0.3893481680968438, - 0.38538089328374253, - 0.39551077469590945, - 0.42013631557387887, - 0.4584584917862964, - 0.5090333003992461, - 0.5703688651138622, - 0.6412829623719347, - 0.7210274346656347, - 0.8092930119050475, - 0.9061840777460329, - 1.0122096145762585, - 1.1283128143581675, - 1.2559573834331583, - 1.397298969890664, - 1.5554986996939344, - 1.7353014310410577, - 1.944163376174937, - 2.194669132982784, - 2.510508644385928, - 2.9450014497690367, - 3.6686798057662946, - 6.654214881233596, - 5.6115500759959, - 5.101939019170382, - 4.758364776517085, - 4.497030649892664, - 4.284911458359975, - 4.105553994661657, - 3.9495614916289155, - 3.811057797822603, - 3.6861215710657613, - 3.5720044630708516, - 3.466704836678244, - 3.3687190731814067, - 3.2768884757202685, - 3.190300802233695, - 3.1082245845807295, - 3.030063946425828, - 2.955326690483959, - 2.883601235789375, - 2.8145396128074727, - 2.7478447007549494, - 2.683260496211663, - 2.620564587062053, - 2.5595622569536953, - 2.5000818129577658, - 2.441970843059543, - 2.3850931890239955, - 2.32932647574119, - 2.274560077862961, - 2.2206934333145947, - 2.1676346343841337, - 2.1152992427812514, - 2.0636092868481777, - 2.012492408065608, - 1.9618811308833124, - 1.9117122352615334, - 1.861926215530941, - 1.8124668125594332, - 1.763280608975872, - 1.7143166795176883, - 1.665526290582936, - 1.6168626449005885, - 1.5682806690010107, - 1.5197368429905371, - 1.4711890741451223, - 1.4225966182050265, - 1.3739200551956636, - 1.3251213304237623, - 1.276163876438658, - 1.2270128388454882, - 1.177635438867747, - 1.1280015199396365, - 1.078084346621855, - 1.027861755328379, - 0.9773178033954827, - 0.9264451351079408, - 0.8752483955365222, - 0.8237492006230706, - 0.7719934572705744, - 0.7200622919112507, - 0.6680886103143608, - 0.6162825702976316, - 0.5649712904104458, - 0.5146612517587283, - 0.4661359355842781, - 0.42060375839366615, - 0.37990132430283186, - 0.3467017504608782, - 0.32452283162426965, - 0.31712871770623635, - 0.3271582145857348, - 0.3549019126746422, - 0.3985332140782683, - 0.4554495840254666, - 0.5233761896820281, - 0.6007630376637526, - 0.6867694784603742, - 0.7811424586665883, - 0.8841197180730583, - 0.9963922678813693, - 1.1191336139829895, - 1.2541075080569648, - 1.4038869486938363, - 1.5722608066966468, - 1.765002415273423, - 1.9914263188918895, - 2.267917785116575, - 2.627443872338584, - 3.1537497932894576, - 4.213805618333612, - 8.50979350051634, - 5.971428124077289, - 5.305924972370346, - 4.901092490965601, - 4.606952212663521, - 4.374373500212309, - 4.181027587314003, - 4.014860363458866, - 3.8686179857837812, - 3.7375933828394916, - 3.6185572552636276, - 3.509197029426811, - 3.4077991024009666, - 3.3130578188403295, - 3.223954979445279, - 3.1396807661115003, - 3.0595800920890133, - 2.9831151555918103, - 2.909838655798437, - 2.839374222046086, - 2.7714018423383022, - 2.7056468314857613, - 2.641871353333175, - 2.5798678174214746, - 2.5194536724083743, - 2.4604672547284516, - 2.40276444450311, - 2.34621594606289, - 2.2907050568252694, - 2.2361258216614415, - 2.182381494243163, - 2.1293832448480696, - 2.0770490675384163, - 2.0253028497753003, - 1.9740735752747334, - 1.923294636885129, - 1.872903240923876, - 1.8228398880879264, - 1.7730479189987678, - 1.723473114845493, - 1.6740633456001166, - 1.6247682600192015, - 1.5755390132226623, - 1.5263280291566974, - 1.4770887968111865, - 1.4277757007987824, - 1.3783438889738062, - 1.3287491823926953, - 1.2789480364064303, - 1.2288975664909612, - 1.178555659265829, - 1.1278811991132747, - 1.076834455617173, - 1.025377699485751, - 0.9734761493137585, - 0.9210994062519724, - 0.8682236217924374, - 0.814834789129931, - 0.7609337938086345, - 0.7065442842512142, - 0.6517251788894923, - 0.5965910087537188, - 0.5413458830807959, - 0.48634179396321875, - 0.4321813124863285, - 0.37990132430283186, - 0.3312968672382852, - 0.2894360674577498, - 0.2591978458679894, - 0.24686051926343497, - 0.25722364792788155, - 0.29014340136146843, - 0.34144058679002975, - 0.4065267948091701, - 0.48222612648529134, - 0.566791621107922, - 0.6594868691975289, - 0.760265235453561, - 0.8696034930091934, - 0.9884542034393529, - 1.118293354940349, - 1.261268585750747, - 1.4204910425518147, - 1.600580254343756, - 1.808722712868845, - 2.056918457933045, - 2.3674507614706126, - 2.78941007746237, - 3.4727377532249935, - 6.0295943304843584, - 6.583226208212855, - 5.579516698984992, - 5.0784130118941055, - 4.73845818928575, - 4.479057090895967, - 4.268087927840682, - 4.089450895745099, - 3.933915749672399, - 3.7956949582182924, - 3.6709185710221433, - 3.5568699945499467, - 3.4515681792720616, - 3.35352335379041, - 3.2615863969287466, - 3.174851821700458, - 3.0925929850696012, - 3.0142174726434803, - 2.939235557733437, - 2.8672373887729905, - 2.7978761562464736, - 2.7308554499524464, - 2.6659196123057614, - 2.6028462724164028, - 2.541440493168145, - 2.481530128689, - 2.4229621020334386, - 2.3655993908035478, - 2.309318563306985, - 2.254007747073846, - 2.1995649399790467, - 2.14589659507551, - 2.0929164257293564, - 2.0405443892706154, - 1.9887058161847928, - 1.9373306586166277, - 1.886352837170568, - 1.8357096690595531, - 1.7853413638585427, - 1.7351905756738393, - 1.6852020026047254, - 1.6353220260762191, - 1.585498384063197, - 1.5356798734951322, - 1.4858160783100953, - 1.4358571208027735, - 1.3857534351842604, - 1.3354555637698893, - 1.2849139781133938, - 1.2340789299718267, - 1.1829003406128002, - 1.131327742286828, - 1.0793102936865728, - 1.0267969035579803, - 0.9737365161159528, - 0.920078643406665, - 0.8657742819111844, - 0.8107774394200785, - 0.7550476537808386, - 0.6985541671941176, - 0.6412829508967228, - 0.5832488188199249, - 0.5245170201490057, - 0.46524337506292046, - 0.40575275845164643, - 0.3467017504608782, - 0.2894360674577498, - 0.23680264606774556, - 0.19483661492804347, - 0.17445445919658353, - 0.1862317164372266, - 0.22829525247270832, - 0.29058371415874645, - 0.3656401740774885, - 0.4498714615122107, - 0.5418566472250196, - 0.641282969219283, - 0.7484844087006952, - 0.864276965214153, - 0.9899462956608238, - 1.127342866149986, - 1.2790963199215795, - 1.4490162533664366, - 1.6428462277187523, - 1.8697824919416346, - 2.1458966372973696, - 2.5032851859072034, - 3.022519002112411, - 4.04503062246926, - 8.777234383643412, - 5.982604020650537, - 5.307538518877556, - 4.899230747909597, - 4.603217506428023, - 4.369416936154959, - 4.175174991766085, - 4.008295940827521, - 3.861454263118389, - 3.729902610441378, - 3.610387213110866, - 3.5005796855159135, - 3.3987556733110504, - 3.303601882194256, - 3.214094467472156, - 3.1294192843952735, - 3.0489178140970252, - 2.9720494407170865, - 2.8983644812940264, - 2.827484485908081, - 2.7590875741292855, - 2.6928973356182255, - 2.628674301353894, - 2.56620930059604, - 2.5053182223722397, - 2.445837837527916, - 2.3876224316139054, - 2.3305410647028135, - 2.274475320912605, - 2.2193174440073515, - 2.1649687799308146, - 2.111338465191876, - 2.0583423134936885, - 2.0059018631498633, - 1.953943555551427, - 1.902398020870342, - 1.8511994517638934, - 1.8002850494095415, - 1.749594528994812, - 1.6990696739918452, - 1.648653930297089, - 1.5982920327172734, - 1.5479296574145536, - 1.4975130948527409, - 1.4469889385699444, - 1.3963037857943446, - 1.3454039465762693, - 1.2942351587995315, - 1.2427423072503012, - 1.1908691459977567, - 1.1385580248877942, - 1.0857496233105972, - 1.032382698147396, - 0.9783938589184746, - 0.9237173933952026, - 0.8682851845065453, - 0.8120267903196032, - 0.7548698150879176, - 0.6967408051870908, - 0.6375671116050715, - 0.577280590018689, - 0.5158249518117682, - 0.453170804633632, - 0.3893481680968438, - 0.32452283162426965, - 0.2591978458679894, - 0.19483661492804347, - 0.1361921813478195, - 0.10004491144423706, - 0.1166579719402836, - 0.17568000038033396, - 0.2521887291591297, - 0.33769795674939224, - 0.43002508857861665, - 0.5288220526911069, - 0.6344633204918219, - 0.747757266161874, - 0.8699032182608463, - 1.0025621975003138, - 1.1480262047480874, - 1.3095274489081281, - 1.491799802599516, - 1.7021593621494777, - 1.9527939037270388, - 2.266349226629239, - 2.6928974053671495, - 3.3868894614483986, - 6.20112372525376, - 6.72021104144955, - 5.6234883372654485, - 5.102195717266981, - 4.753322317894022, - 4.488838488072339, - 4.274545607452033, - 4.093535026795857, - 3.9361959609249224, - 3.7965381793368382, - 3.6705737586396863, - 3.5555126952376006, - 3.4493257910044024, - 3.350490312130589, - 3.257833746019559, - 3.1704334844210917, - 3.0875500048337323, - 3.0085809610219156, - 2.9330287891413565, - 2.860477316834002, - 2.7905745279832286, - 2.7230196338016857, - 2.6575532181125325, - 2.593949617121179, - 2.532010949736352, - 2.471562384906732, - 2.412448348255762, - 2.3545294504386054, - 2.297679976013606, - 2.2417858118627225, - 2.186742723318466, - 2.1324549074954358, - 2.078833769141704, - 2.025796876171359, - 1.9732670609958018, - 1.9211716406004222, - 1.86944173355934, - 1.8180116562361117, - 1.7668183835683688, - 1.7158010622887738, - 1.6649005663482486, - 1.614059085795168, - 1.5632197415115878, - 1.5123262190781162, - 1.4613224156795193, - 1.410152094407322, - 1.3587585405870268, - 1.3070842148712865, - 1.2550703978045172, - 1.2026568203814505, - 1.1497812747895326, - 1.096379199037396, - 1.0423832285229973, - 0.9877227067849095, - 0.9323231467256584, - 0.8761056325571236, - 0.8189861517547807, - 0.7608748458071634, - 0.7016751694205633, - 0.6412829522508537, - 0.5795853704996925, - 0.5164598716325194, - 0.45177319280785944, - 0.38538089328374253, - 0.31712871770623635, - 0.24686051926343497, - 0.17445445919658353, - 0.10004491144423706, - 0.02828614308833815, - 0.06454524901198351, - 0.14745279540022233, - 0.23561438655171701, - 0.32850487757787644, - 0.4265735032397384, - 0.5305261421069636, - 0.641282973768549, - 0.7600249161689218, - 0.8882872971792213, - 1.0281133212101323, - 1.1823069616587443, - 1.3548691422541206, - 1.5518014075518805, - 1.7827235499010021, - 2.06455034715124, - 2.431483134815993, - 2.9715503876485387, - 4.087757792599908, - 6.117355073748488, - 5.371729279530932, - 4.939906373673798, - 4.6320719005463555, - 4.391115999060119, - 4.192046572420501, - 4.021666762498951, - 3.872150658352298, - 3.738472892853246, - 3.617212795956087, - 3.5059356590519384, - 3.4028461215096697, - 3.306581601196387, - 3.216082914787047, - 3.130509866664512, - 3.0491842610740045, - 2.9715502931993036, - 2.897146320869698, - 2.825584302902584, - 2.7565345312609253, - 2.6897140989004344, - 2.62487805506322, - 2.5618125274275934, - 2.500329306090422, - 2.440261529208644, - 2.3814602093302653, - 2.3237914085696714, - 2.267133919709976, - 2.2113773454473313, - 2.1564204935513174, - 2.102170024534655, - 2.0485393024347296, - 1.9954474098428394, - 1.9428182963088243, - 1.8905800353611066, - 1.8386641700897728, - 1.7870051308871169, - 1.7355397117773994, - 1.684206593980999, - 1.6329459070856522, - 1.5816988195426391, - 1.5304071512471278, - 1.4790130017599201, - 1.4274583883303802, - 1.375684888327427, - 1.3236332810137927, - 1.2712431838472804, - 1.2184526787105712, - 1.1651979237294336, - 1.1114127467528616, - 1.057028217333443, - 1.0019721955097012, - 0.9461688584887289, - 0.8895382116486046, - 0.8319956004314313, - 0.773451259301198, - 0.7138099726512315, - 0.6529710015532859, - 0.590828598863063, - 0.5272738166498214, - 0.4621992397689351, - 0.39551077469590945, - 0.3271582145857348, - 0.25722364792788155, - 0.1862317164372266, - 0.1166579719402836, - 0.06454524901198351, - 0.08844597428728296, - 0.1623567776003425, - 0.2489074663159523, - 0.3424907815914169, - 0.4424519189069293, - 0.5492049964299672, - 0.6636423168222698, - 0.7870553209149047, - 0.9212098199550401, - 1.0685309501924203, - 1.2324398359581894, - 1.4179671502664533, - 1.6329459431615336, - 1.8905800781059532, - 2.215867105939186, - 2.6659196906635754, - 3.4305516194249375, - 7.220038199340893, - 5.76309131951927, - 5.181901431985948, - 4.808232422114469, - 4.530144314914483, - 4.307225886818495, - 4.120234983930064, - 3.9584873542887387, - 3.8154298919843233, - 3.6867509979159023, - 3.569461269111585, - 3.4614019075320352, - 3.3609622448906387, - 3.266907954763082, - 3.1782716636389905, - 3.0942805922795977, - 3.014307131348379, - 2.9378341434253614, - 2.8644300183017575, - 2.793730363577417, - 2.7254243166613197, - 2.6592441429568363, - 2.5949572142451935, - 2.5323597396907163, - 2.471271806596492, - 2.411533413089139, - 2.353001261140273, - 2.295546138790363, - 2.2390507634783794, - 2.1834079894460445, - 2.128519304896661, - 2.0742935613879006, - 2.0206458904995244, - 1.9674967723043262, - 1.914771227403153, - 1.862398109847339, - 1.81030948258668, - 1.7584400604574761, - 1.7067267083932964, - 1.6551079846756054, - 1.603523720778992, - 1.5519146308185954, - 1.5002219448742804, - 1.4483870616437033, - 1.3963512170711718, - 1.3440551669440355, - 1.291438883126405, - 1.2384412653831283, - 1.1849998740587941, - 1.1310506939024765, - 1.076527947210467, - 1.0213639871495646, - 0.9654893230576004, - 0.908832864913981, - 0.8513225356545416, - 0.7928865100900675, - 0.7334555432979171, - 0.6729672454087618, - 0.6113739571275175, - 0.5486575852646066, - 0.4848586453390835, - 0.42013631557387887, - 0.3549019126746422, - 0.29014340136146843, - 0.22829525247270832, - 0.17568000038033396, - 0.14745279540022233, - 0.1623567776003425, - 0.21604283090483814, - 0.2917222152717622, - 0.3803346751843547, - 0.47868844138395983, - 0.5860587390374513, - 0.7028817260347233, - 0.8303577063836529, - 0.9704208770221832, - 1.1259326101894267, - 1.3011298943721736, - 1.5025220190627493, - 1.740767456284306, - 2.035092915853061, - 2.425899553512671, - 3.0251192839534835, - 4.500980534653828, - 6.456467199013312, - 5.518899313791547, - 5.033192499727722, - 4.699891905946864, - 4.444064870678682, - 4.23522416125794, - 4.057917054601675, - 3.9032204932943135, - 3.765511274138059, - 3.6410151098305183, - 3.5270746958230257, - 3.421747519213856, - 3.3235697880993413, - 3.231410387902337, - 3.1443765668521553, - 3.0617508078622824, - 2.982947273426901, - 2.907480961856902, - 2.8349453650992804, - 2.764995959984521, - 2.69733779309947, - 2.6317159960776606, - 2.5679084361206526, - 2.505719947230259, - 2.4449777484729927, - 2.385527765217626, - 2.3272316453346313, - 2.2699643159635996, - 2.2136119648210464, - 2.158070357850653, - 2.103243425461069, - 2.049042064791893, - 1.995383116870888, - 1.9421884862064795, - 1.8893843770310383, - 1.8369006256001368, - 1.7846701120480406, - 1.732628238591056, - 1.6807124635840303, - 1.6288618832559099, - 1.5770168550404673, - 1.5251186584363, - 1.4731091914490926, - 1.4209307031007912, - 1.3685255655191235, - 1.3158360931549236, - 1.26280442232781, - 1.2093724725275248, - 1.1554820232243739, - 1.1010749588647246, - 1.0460937644292783, - 0.9904824015900415, - 0.9341877737474382, - 0.8771621199068361, - 0.8193669050217213, - 0.7607791799330635, - 0.7014021301992301, - 0.6412829554962909, - 0.5805440356952958, - 0.5194391180609947, - 0.4584584917862964, - 0.3985332140782683, - 0.34144058679002975, - 0.29058371415874645, - 0.2521887291591297, - 0.23561438655171701, - 0.2489074663159523, - 0.2917222152717622, - 0.3573068880499223, - 0.43940211602364054, - 0.5345067652936224, - 0.6412829794376346, - 0.759812118031507, - 0.8912384643560021, - 1.0377413542294338, - 1.202799478142244, - 1.391848443646326, - 1.613689827634481, - 1.8836962800772943, - 2.232301094200175, - 2.734399241870679, - 3.6894176153259988, - 6.059583033382146, - 5.338517527771677, - 4.914455250830186, - 4.610339316332738, - 4.371505762978774, - 4.173763630082917, - 4.00425587038544, - 3.8553252235696784, - 3.7220394332474873, - 3.6010333544608573, - 3.4899073733528185, - 3.3868893344485436, - 3.2906325541676162, - 3.200089052462633, - 3.1144267046290857, - 3.0329732281089017, - 2.9551772029285717, - 2.880580262172244, - 2.8087968163362724, - 2.7394989853877805, - 2.6724052092551194, - 2.6072715068703016, - 2.543884675167747, - 2.4820569310438563, - 2.421621641607601, - 2.3624298856206307, - 2.3043476570778108, - 2.247253570101413, - 2.191036958995131, - 2.135596292576053, - 2.0808378405615957, - 2.0266745437380718, - 1.973025050199367, - 1.91981288804978, - 1.8669657512833862, - 1.814414880574194, - 1.762094524807875, - 1.7099414726497735, - 1.6578946465215578, - 1.6058947542764619, - 1.5538839968523965, - 1.5018058335089475, - 1.4496048102549286, - 1.3972264622066017, - 1.34461730754308, - 1.291724960429504, - 1.2384984042698384, - 1.1848884872951984, - 1.1308487335718749, - 1.0763366101859226, - 1.0213154658565144, - 0.9657574748590988, - 0.9096481127690111, - 0.8529930096709294, - 0.7958285659842436, - 0.7382386458244367, - 0.6803812911291459, - 0.6225322750992353, - 0.5651573411091257, - 0.5090333003992461, - 0.4554495840254666, - 0.4065267948091701, - 0.3656401740774885, - 0.33769795674939224, - 0.32850487757787644, - 0.3424907815914169, - 0.3803346751843547, - 0.43940211602364054, - 0.5162440125943286, - 0.6083417578652869, - 0.7145465852139835, - 0.8349933009847244, - 0.9710222754088547, - 1.1253086162380825, - 1.302328591479972, - 1.5094334290698566, - 1.7592717669645555, - 2.075890629837329, - 2.513852960470415, - 3.250143149205018, - 7.428489281547969, - 5.802889058612421, - 5.200999156335891, - 4.819157802013657, - 4.536637603832513, - 4.3108987166403665, - 4.1219263185381845, - 3.9586879870939895, - 3.814450563242604, - 3.68479991675699, - 3.566683922945192, - 3.457903220843029, - 3.3568197124373875, - 3.262179827571866, - 3.173002266911841, - 3.0885039018941614, - 3.0080492512730643, - 2.931115066297456, - 2.857264905197879, - 2.786130493499911, - 2.717397804534891, - 2.650796492701435, - 2.5860917528987475, - 2.5230779651153603, - 2.461573672381627, - 2.4014175682775463, - 2.342465258372954, - 2.2845866217806603, - 2.227663643001104, - 2.1715886160211806, - 2.116262645913855, - 2.061594390478162, - 2.0074989974860595, - 1.9538972030697017, - 1.900714564550449, - 1.8478808072084905, - 1.7953292695944334, - 1.7429964363686723, - 1.6908215516411276, - 1.638746309672164, - 1.5867146238963599, - 1.5346724799051281, - 1.4825678837298173, - 1.4303509241247903, - 1.3779739774413284, - 1.3253920973992879, - 1.2725636515388716, - 1.2194512943210276, - 1.1660234083119703, - 1.1122562068060757, - 1.0581367849954268, - 1.003667550626374, - 0.9488726884048391, - 0.8938076626329002, - 0.838573315212826, - 0.7833369874346034, - 0.7283644472564315, - 0.6740684148300826, - 0.621082138563497, - 0.5703688651138622, - 0.5233761896820281, - 0.48222612648529134, - 0.4498714615122107, - 0.43002508857861665, - 0.4265735032397384, - 0.4424519189069293, - 0.47868844138395983, - 0.5345067652936224, - 0.6083417578652869, - 0.6988730473042107, - 0.8056112566768285, - 0.9291593837564074, - 1.0714232974724254, - 1.2360076367709263, - 1.4290755679688238, - 1.6612567954344015, - 1.9522798691241998, - 2.344479587674949, - 2.958435050204831, - 4.597700328930893, - 6.75321167641038, - 5.623488349154121, - 5.0953205462235385, - 4.743289886466618, - 4.476880053838106, - 4.261214148340948, - 4.079122398386757, - 3.920871911561494, - 3.780407573939584, - 3.653703672234386, - 3.537946594435798, - 3.4310915404937936, - 3.3316049703845714, - 3.2383065774827724, - 3.150267926517517, - 3.066744994850806, - 2.987131856275706, - 2.91092802069939, - 2.837714864275, - 2.7671382716054644, - 2.698895621830098, - 2.6327258747090347, - 2.5684019095500683, - 2.5057245282618887, - 2.444517705954231, - 2.384624789483752, - 2.325905425306209, - 2.268233054981772, - 2.211492857427286, - 2.1555800465864086, - 2.1003984549792167, - 2.045859349896743, - 1.991880441414945, - 1.938385051041906, - 1.8853014174972889, - 1.8325621224661437, - 1.7801036246523314, - 1.7278658954878374, - 1.6757921548110435, - 1.6238287100994984, - 1.5719249088771678, - 1.5200332212696643, - 1.4681094790938243, - 1.4161133103669885, - 1.3640088251706097, - 1.3117656325298956, - 1.259360301507421, - 1.2067784277024238, - 1.154017535731681, - 1.1010911493822024, - 1.048034509280952, - 0.9949126353601752, - 0.9418317490658636, - 0.8889555273654534, - 0.8365282955335024, - 0.7849080811027309, - 0.7346133108577575, - 0.6863872945730258, - 0.6412829623719347, - 0.6007630376637526, - 0.566791621107922, - 0.5418566472250196, - 0.5288220526911069, - 0.5305261421069636, - 0.5492049964299672, - 0.5860587390374513, - 0.6412829794376346, - 0.7145465852139835, - 0.8056112566768285, - 0.9148561195615141, - 1.0436993730246076, - 1.1950690970646398, - 1.374185620829441, - 1.5901576714815242, - 1.8596919144888673, - 2.2173225214831636, - 2.7533120342286446, - 3.8928906314219507, - 6.410314655319692, - 5.495373344935002, - 5.015232671840046, - 4.6843773291736674, - 4.429876635222506, - 4.22183319126722, - 4.0450304045340655, - 3.890658198324002, - 3.7531542199154324, - 3.628779861499823, - 3.5149001293369095, - 3.4095871891036467, - 3.3113873172041686, - 3.219176554811126, - 3.132067399028439, - 3.0493462979630803, - 2.970430497407468, - 2.89483746570213, - 2.822162737566683, - 2.7520635388569388, - 2.6842464710506264, - 2.618458104162298, - 2.5544776908103692, - 2.492111452393747, - 2.431188047688978, - 2.3715549429013754, - 2.3130754777417817, - 2.2556264754787563, - 2.1990962832477816, - 2.1433831568665096, - 2.088393925148634, - 2.0340428843760483, - 1.980250885679133, - 1.9269445876622666, - 1.8740558544910417, - 1.82152128644645, - 1.7692818761610096, - 1.7172827898457035, - 1.6654732792588525, - 1.6138067374737644, - 1.5622409202939396, - 1.5107383662436147, - 1.4592670625016628, - 1.407801423425233, - 1.3563236744862373, - 1.3048257704100479, - 1.253312026114015, - 1.2018027083190077, - 1.1503389320886186, - 1.0989893399618618, - 1.0478592235533988, - 0.9971029895897643, - 0.9469411769674058, - 0.8976835728061345, - 0.8497602535478918, - 0.8037623216431702, - 0.7604931046665032, - 0.7210274346656347, - 0.6867694784603742, - 0.6594868691975289, - 0.641282969219283, - 0.6344633204918219, - 0.641282973768549, - 0.6636423168222698, - 0.7028817260347233, - 0.759812118031507, - 0.8349933009847244, - 0.9291593837564074, - 1.0436993730246076, - 1.1812086230191035, - 1.3462769813879765, - 1.5469243432204958, - 1.7977429533595504, - 2.128145246732024, - 2.610689145424577, - 3.5306054026755365, - 6.206195884339111, - 5.405884949544825, - 4.95715904403924, - 4.640983908121976, - 4.394981967092226, - 4.192476590590048, - 4.019565608883827, - 3.8680757361033873, - 3.7327906504244384, - 3.6101760040870756, - 3.4977251892607453, - 3.3935951561144417, - 3.296390461367453, - 3.205028565283471, - 3.1186522473250133, - 3.036570648119719, - 2.958218395326811, - 2.8831265400322974, - 2.8109014313316023, - 2.7412090618604874, - 2.67376326815079, - 2.608316701064109, - 2.544653822315289, - 2.482585406910177, - 2.421944181531714, - 2.3625813317250186, - 2.3043636824035496, - 2.2471714070282305, - 2.1908961574722725, - 2.1354395334854988, - 2.080711830784763, - 2.0266310221671415, - 1.9731219381125327, - 1.9201156231616738, - 1.8675488527209243, - 1.8153638024981276, - 1.763507870073745, - 1.7119336556944704, - 1.660599117809707, - 1.609467928808035, - 1.558510068653432, - 1.5077027096968163, - 1.4570314661926342, - 1.4064921087583018, - 1.356092879509149, - 1.3058575908897077, - 1.2558297540262795, - 1.2060780649969054, - 1.1567036837752214, - 1.1078498725095574, - 1.0597147120130326, - 1.0125677656205818, - 0.9667716489822766, - 0.9228093620246152, - 0.8813176878908939, - 0.8431255193479291, - 0.8092930119050475, - 0.7811424586665883, - 0.760265235453561, - 0.7484844087006952, - 0.747757266161874, - 0.7600249161689218, - 0.7870553209149047, - 0.8303577063836529, - 0.8912384643560021, - 0.9710222754088547, - 1.0714232974724254, - 1.1950690970646398, - 1.3462769813879765, - 1.5324021686758893, - 1.76664223421134, - 2.075088666613048, - 2.519645034064772, - 3.3189683939041066, - 6.086047681435815, - 5.348639145853166, - 4.919244294458352, - 4.6124590961027625, - 4.372008600459687, - 4.173172851705276, - 4.002870185557033, - 3.8533318665674985, - 3.719564177902768, - 3.5981654464580415, - 3.4867131200277495, - 3.3834200488790858, - 3.286929473445913, - 3.1961865369328684, - 3.1103544142650814, - 3.0287576679006776, - 2.950842868607538, - 2.8761505288155544, - 2.8042946613345547, - 2.7349476069753704, - 2.667828583432599, - 2.6026949142883455, - 2.5393352226940875, - 2.477564088753949, - 2.4172178139240144, - 2.358151034756585, - 2.300233997531346, - 2.243350354566875, - 2.187395378686886, - 2.1322745186628245, - 2.0779022383369994, - 2.0242010975364, - 1.9711010452337128, - 1.9185389057466766, - 1.8664580479049158, - 1.8148082357331312, - 1.7635456679154704, - 1.712633222727546, - 1.6620409359082284, - 1.6117467518515562, - 1.5617376044415676, - 1.5120109039455765, - 1.4625765319869408, - 1.413459479356694, - 1.3647033031054587, - 1.3163746317440892, - 1.2685690115890025, - 1.2214184624931008, - 1.175101192063983, - 1.1298539893002069, - 1.0859878489117725, - 1.0439073028139174, - 1.004133642608607, - 0.9673315285384254, - 0.9343371640412786, - 0.9061840777460329, - 0.8841197180730583, - 0.8696034930091934, - 0.864276965214153, - 0.8699032182608463, - 0.8882872971792213, - 0.9212098199550401, - 0.9704208770221832, - 1.0377413542294338, - 1.1253086162380825, - 1.2360076367709263, - 1.374185620829441, - 1.5469243432204958, - 1.76664223421134, - 2.057457847571682, - 2.475123996705055, - 3.204605517079157, - 6.029592918543186, - 5.320921009657543, - 4.900929279904846, - 4.598830924777271, - 4.361200563590279, - 4.164258337394922, - 3.995323260073205, - 3.8468263320890967, - 3.713884672528133, - 3.593163153469926, - 3.4822816877098277, - 3.379481592187054, - 3.283425996259944, - 3.193074449906872, - 3.1076009110456906, - 3.026338265397929, - 2.948739704054829, - 2.8743511657265954, - 2.802791248754369, - 2.7337362918912387, - 2.666909110694387, - 2.602070370520403, - 2.5390118953465506, - 2.477551421496617, - 2.417528446755988, - 2.358800922565691, - 2.301242605084464, - 2.244740929515414, - 2.1891953074656807, - 2.1345157734030513, - 2.0806219263199313, - 2.0274421284837842, - 1.974912936062584, - 1.9229787475274627, - 1.8715916658952292, - 1.8207115807964516, - 1.7703064866989064, - 1.7203530650364436, - 1.6708375711842198, - 1.6217570829483596, - 1.5731211863534793, - 1.5249541979387726, - 1.4772980514345726, - 1.4302160113229263, - 1.383797416551705, - 1.3381637034198746, - 1.2934760035698298, - 1.249944652351789, - 1.2078409572273814, - 1.1675115342390443, - 1.1293953718686005, - 1.0940434509608383, - 1.062140144858481, - 1.0345246721978294, - 1.0122096145762585, - 0.9963922678813693, - 0.9884542034393529, - 0.9899462956608238, - 1.0025621975003138, - 1.0281133212101323, - 1.0685309501924203, - 1.1259326101894267, - 1.202799478142244, - 1.302328591479972, - 1.4290755679688238, - 1.5901576714815242, - 1.7977429533595504, - 2.075088666613048, - 2.475123996705055, - 3.1681876269966986, - 6.031406240055281, - 5.322758026107083, - 4.902828693998585, - 4.600806063065874, - 4.363259990827639, - 4.166409310940894, - 3.9975727436488326, - 3.8491814034686005, - 3.71635273272527, - 3.5957520600452573, - 3.4849998572556458, - 3.3823380912831245, - 3.2864306303739745, - 3.1962378556013435, - 3.1109346550398014, - 3.029854953245898, - 2.952453100919287, - 2.8782763317217785, - 2.8069446915064287, - 2.73813613926784, - 2.6715753070772306, - 2.607024900532783, - 2.5442790396147803, - 2.4831580498382473, - 2.4235043551762954, - 2.3651792216418506, - 2.3080601687684608, - 2.2520389151468487, - 2.19701975992213, - 2.1429183289116254, - 2.089660634610428, - 2.0371824158041427, - 1.985428736247878, - 1.9343538339877973, - 1.8839212242652634, - 1.8341040702923588, - 1.7848858481910226, - 1.7362613456874205, - 1.6882380493805555, - 1.6408379931753978, - 1.5941001613372696, - 1.5480835639585675, - 1.5028711304004838, - 1.4585745966458694, - 1.4153405931616456, - 1.373358165966895, - 1.3328679761922226, - 1.2941734074588755, - 1.2576537427586505, - 1.223779421336305, - 1.193129115003229, - 1.1664079468304542, - 1.1444656348670792, - 1.1283128143581675, - 1.1191336139829895, - 1.118293354940349, - 1.127342866149986, - 1.1480262047480874, - 1.1823069616587443, - 1.2324398359581894, - 1.3011298943721736, - 1.391848443646326, - 1.5094334290698566, - 1.6612567954344015, - 1.8596919144888673, - 2.128145246732024, - 2.519645034064772, - 3.204605517079157, - 6.096967397703666, - 5.356920152012689, - 4.926853594896205, - 4.619877107202403, - 4.379434009469763, - 4.180713223106094, - 4.0105953122353055, - 3.861293606758119, - 3.727805283245738, - 3.606724037696713, - 3.4956252088393605, - 3.3927210996979884, - 3.296655463226945, - 3.2063747427535247, - 3.1210440530622687, - 3.0399904604024095, - 2.9626635723660715, - 2.8886074706723552, - 2.8174402917640746, - 2.7488390946499446, - 2.682528466525674, - 2.618271824699205, - 2.5558647001220063, - 2.4951295031719813, - 2.435911417427961, - 2.3780751670026925, - 2.321502473098908, - 2.2660900657144145, - 2.2117481532889567, - 2.1583992808477404, - 2.1059775287808726, - 2.054428021856677, - 2.0037067328873044, - 1.9537805787692806, - 1.9046278192965018, - 1.8562387819247004, - 1.8086169491892221, - 1.7617804602963025, - 1.715764094983672, - 1.670621826395195, - 1.626430050494515, - 1.5832916220572406, - 1.5413408503631778, - 1.5007496289584794, - 1.461734889018212, - 1.42456756810894, - 1.3895832656834697, - 1.3571947009645802, - 1.3279059856783062, - 1.3023285689870512, - 1.281198525097037, - 1.2653947097850469, - 1.2559573834331583, - 1.2541075080569648, - 1.261268585750747, - 1.2790963199215795, - 1.3095274489081281, - 1.3548691422541206, - 1.4179671502664533, - 1.5025220190627493, - 1.613689827634481, - 1.7592717669645555, - 1.9522798691241998, - 2.2173225214831636, - 2.610689145424577, - 3.3189683939041066, - 6.246608029189181, - 5.429846621819233, - 4.976636435297189, - 4.658574985098023, - 4.411686930340371, - 4.208796855124599, - 4.035797654473965, - 3.884417311699578, - 3.7493869495001233, - 3.627142494047628, - 3.515160056417649, - 3.4115866568916235, - 3.3150215854851526, - 3.2243802018149825, - 3.1388054858679224, - 3.0576085717454227, - 2.9802275781548992, - 2.9061983838252714, - 2.835133431326116, - 2.766706066768927, - 2.7006387849291995, - 2.636694287387473, - 2.5746686063894746, - 2.5143857739892406, - 2.455693668605703, - 2.398460775963773, - 2.3425736749871127, - 2.2879351120307287, - 2.234462565691192, - 2.1820872338346238, - 2.1307533975197916, - 2.0804181353228284, - 2.0310513777482013, - 1.9826363061014398, - 1.9351701143041318, - 1.888665166369013, - 1.8431505971977342, - 1.7986744204532032, - 1.7553062247607008, - 1.7131405584358617, - 1.6723011229944869, - 1.6329459160218793, - 1.59527348302026, - 1.5595304532373315, - 1.5260205431225462, - 1.495115209920524, - 1.4672661261424869, - 1.4430196294155242, - 1.4230333041357388, - 1.4080949272913723, - 1.3991442766130175, - 1.397298969890664, - 1.4038869486938363, - 1.4204910425518147, - 1.4490162533664366, - 1.491799802599516, - 1.5518014075518805, - 1.6329459431615336, - 1.740767456284306, - 1.8836962800772943, - 2.075890629837329, - 2.344479587674949, - 2.7533120342286446, - 3.5306054026755365, - 6.535190558494213, - 5.554252049920849, - 5.058482602643172, - 4.720967228111253, - 4.463014039694257, - 4.253047303514035, - 4.075184203955206, - 3.9202990735366576, - 3.7826621045537, - 3.658438836368354, - 3.5449366473632167, - 3.440192147995519, - 3.342729676185068, - 3.251412249423085, - 3.165345519612172, - 3.08381362430931, - 3.006235029599558, - 2.932131345025521, - 2.861104812200958, - 2.792821748158656, - 2.727000174505855, - 2.6634004531137094, - 2.6018181254279273, - 2.5420783988743176, - 2.4840318889618103, - 2.42755133886491, - 2.372529117594311, - 2.3188753547877248, - 2.2665166120871123, - 2.215395022927959, - 2.165467857689523, - 2.116707491870797, - 2.0691017729393075, - 2.02265479799119, - 1.977388130313483, - 1.9333424991014672, - 1.8905800435475968, - 1.8491871807423186, - 1.8092781966405547, - 1.7709996809588247, - 1.7345359504065099, - 1.7001156303236007, - 1.668019593274862, - 1.6385904865148773, - 1.6122441238976368, - 1.5894830842637337, - 1.570912974166197, - 1.557262030940127, - 1.549405162997226, - 1.548394331446799, - 1.5554986996939344, - 1.5722608066966468, - 1.600580254343756, - 1.6428462277187523, - 1.7021593621494777, - 1.7827235499010021, - 1.8905800781059532, - 2.035092915853061, - 2.232301094200175, - 2.513852960470415, - 2.958435050204831, - 3.8928906314219507, - 7.156372494484362, - 5.756199921724373, - 5.183472620402086, - 4.813643610418048, - 4.538019842140418, - 4.316999456402277, - 4.131640624884649, - 3.971398377829185, - 3.8297949533340874, - 3.7025647973184093, - 3.5867497985586367, - 3.4802145803316136, - 3.3813676056048916, - 3.2889914098970086, - 3.202134443961383, - 3.1200395272278487, - 3.0420950059576004, - 2.967800512239162, - 2.8967424113432694, - 2.8285758572958914, - 2.7630114683734233, - 2.6998053063731047, - 2.6387512694724697, - 2.579675285629472, - 2.5224308782447875, - 2.466895801921226, - 2.4129695342912223, - 2.360571473049052, - 2.3096397339021535, - 2.2601304806813225, - 2.212017747075982, - 2.1652937330103823, - 2.1199695794495326, - 2.076076644860853, - 2.0336683258184514, - 1.9928224843287672, - 1.9536445663473219, - 1.91627152070257, - 1.880876656577251, - 1.8476756127519487, - 1.8169336561097107, - 1.788974585828628, - 1.7641916029107576, - 1.7430606297475504, - 1.7261567632037083, - 1.7141748750774026, - 1.7079559404788218, - 1.708521667654583, - 1.717121771048606, - 1.7353014310410577, - 1.765002415273423, - 1.808722712868845, - 1.8697824919416346, - 1.9527939037270388, - 2.06455034715124, - 2.215867105939186, - 2.425899553512671, - 2.734399241870679, - 3.250143149205018, - 4.597700328930893, - 6.098643598055328, - 5.372610764179548, - 4.947809972856328, - 4.644046139999664, - 4.406049687270354, - 4.2094347162303265, - 4.04126564083572, - 3.8938504807268597, - 3.7622421250310434, - 3.6430709680149365, - 3.5339391032792453, - 3.4330802123281416, - 3.3391565557822704, - 3.2511317008614693, - 3.1681874571506943, - 3.0896678228291874, - 3.0150400828837953, - 2.943867166759643, - 2.8757876156868103, - 2.8105008289436193, - 2.747756061108499, - 2.687344146064856, - 2.6290912484280473, - 2.572854158094905, - 2.5185167895201714, - 2.4659876488729213, - 2.415198104886279, - 2.366101352899233, - 2.3186720028351124, - 2.272906255119315, - 2.2288226569759795, - 2.1864634575545363, - 2.1458966059016276, - 2.1072184627568147, - 2.0705573274955875, - 2.0360779177259363, - 2.00398698447653, - 1.974540305743546, - 1.9480513835965223, - 1.924902288642278, - 1.9055572733670523, - 1.890580052293846, - 1.8806560913181443, - 1.8766219845289307, - 1.8795052491218538, - 1.8905800588064392, - 1.9114483828118514, - 1.944163376174937, - 1.9914263188918895, - 2.056918457933045, - 2.1458966372973696, - 2.266349226629239, - 2.431483134815993, - 2.6659196906635754, - 3.0251192839534835, - 3.6894176153259988, - 6.808136867645919, - 5.672216707984819, - 5.14433800212413, - 4.793591753672193, - 4.528876056074127, - 4.315162289868751, - 4.1352289637408575, - 3.979325331055525, - 3.8413930060702803, - 3.7174105865557867, - 3.604573449270973, - 3.5008491671970763, - 3.40471938623057, - 3.315021589776926, - 3.2308477322120526, - 3.1514769063753314, - 3.0763292497532766, - 3.004933587772055, - 2.936904244620217, - 2.87192414577177, - 2.8097323513439068, - 2.7501147877125725, - 2.6928973453608394, - 2.637940773439802, - 2.5851369782783533, - 2.5344064555207346, - 2.4856966731550574, - 2.4389812878411656, - 2.3942601278753286, - 2.3515599185649823, - 2.310935764018835, - 2.2724734369778483, - 2.236292568803166, - 2.2025508790580073, - 2.1714496434397685, - 2.14324067758289, - 2.1182352239085165, - 2.096815287603023, - 2.079448206334187, - 2.066705608012785, - 2.059288501494195, - 2.058061216979082, - 2.064098561814314, - 2.0787534496353497, - 2.1037575301344917, - 2.1413773906500464, - 2.194669132982784, - 2.267917785116575, - 2.3674507614706126, - 2.5032851859072034, - 2.6928974053671495, - 2.9715503876485387, - 3.4305516194249375, - 4.500980534653828, - 6.220869831973494, - 5.448713326980394, - 5.010300290137571, - 4.700597719957144, - 4.459706999009891, - 4.261746568576513, - 4.0931543519713385, - 3.945932684326162, - 3.814970210784235, - 3.696803729240977, - 3.5889805644839887, - 3.4897027302480055, - 3.397615578788448, - 3.3116758706793945, - 3.2310660229888217, - 3.1551364882543087, - 3.0833659610430266, - 3.015333277100054, - 2.9506972197663672, - 2.889181826975578, - 2.830565630125303, - 2.774673782098095, - 2.721372372033535, - 2.6705644515029827, - 2.622187453391956, - 2.576211797351313, - 2.532640560931783, - 2.4915101648018476, - 2.452892082092168, - 2.4168956428627406, - 2.3836720718213944, - 2.3534199788141494, - 2.326392628193958, - 2.3029074612148164, - 2.2833585607711018, - 2.2682330723680533, - 2.2581331010790757, - 2.253805417703131, - 2.2561826576753483, - 2.2664420157368608, - 2.2860915788675924, - 2.3171021625308748, - 2.3621177020207464, - 2.424809091626326, - 2.510508644385928, - 2.627443872338584, - 2.78941007746237, - 3.022519002112411, - 3.3868894614483986, - 4.087757792599908, - 8.224207524238604, - 5.995146909050779, - 5.347532225009916, - 4.951062442262007, - 4.662872142014258, - 4.435382984381878, - 4.246813970427829, - 4.085362603666774, - 3.9439146144233947, - 3.81785342652533, - 3.704016928019697, - 3.6001484778682333, - 3.5045854525413667, - 3.4160718818009586, - 3.333640325558111, - 3.2565345206744567, - 3.184157138950927, - 3.116033622386252, - 3.0517866716472972, - 2.991118021139413, - 2.9337953540024952, - 2.8796429602638702, - 2.8285352186887005, - 2.7803922980365754, - 2.7351776907576926, - 2.692897350782654, - 2.6536003322777306, - 2.6173809360098987, - 2.5843824790363974, - 2.5548029264876355, - 2.5289027790389795, - 2.5070158213028537, - 2.4895636436243698, - 2.477075316583118, - 2.47021433406927, - 2.4698161444763214, - 2.476941628122616, - 2.4929554683113437, - 2.5196449678284867, - 2.559407657616018, - 2.6155624109974775, - 2.6928973812675787, - 2.7987113453139885, - 2.9450014497690367, - 3.1537497932894576, - 3.4727377532249935, - 4.04503062246926, - 6.20112372525376, - 7.868141311983077, - 5.9762931939585755, - 5.353273528081131, - 4.966743165684532, - 4.684502524729995, - 4.461362044426651, - 4.2763823991352, - 4.118138284235504, - 3.9797138828288916, - 3.856610830164817, - 3.7457453878383444, - 3.6449182533093447, - 3.552512779323524, - 3.467313042547234, - 3.388389045652484, - 3.3150215964365732, - 3.246651727459808, - 3.182845913471478, - 3.1232718411362583, - 3.0676814884000057, - 3.015899467306066, - 2.967815329647298, - 2.923379022167644, - 2.882599016946464, - 2.8455428999536063, - 2.812340421605206, - 2.7831892333246144, - 2.7583637894281274, - 2.73822822905932, - 2.7232545350776776, - 2.7140480054265876, - 2.711383260066908, - 2.716255998475923, - 2.7299592071955807, - 2.754198896589213, - 2.791276751371219, - 2.8443923255383003, - 2.9181732474819446, - 3.0196775625163825, - 3.1604846957828627, - 3.361698252380982, - 3.6686798057662946, - 4.213805618333612, - 6.0295943304843584, - 6.1936978792928965, - 5.490320328885252, - 5.077018178110507, - 4.782310076037392, - 4.55266447428184, - 4.364296628793854, - 4.204553156210649, - 4.065908493475244, - 3.9435340271288273, - 3.8341583121372977, - 3.735474354783285, - 3.6458066806713805, - 3.563912915399824, - 3.488859963196577, - 3.4199439713872435, - 3.356637289662054, - 3.2985528433081166, - 3.2454202624852573, - 3.1970703589809912, - 3.153425904966298, - 3.11449755342783, - 3.0803843749390785, - 3.0512790123498656, - 3.027477981285854, - 3.009398277503596, - 2.9976023341845854, - 2.992834730865513, - 2.9960762991657295, - 3.00862518605569, - 3.0322216369382535, - 3.0692472721786714, - 3.1230587230346982, - 3.198580840817083, - 3.3034466914849254, - 3.4504282898642056, - 3.6634395840781506, - 3.996150868213606, - 4.620190292986258, - 7.009020280393058, - 5.865554679029046, - 5.343218581507919, - 5.0003245723232075, - 4.744674899049346, - 4.5409929362003725, - 4.372008633724038, - 4.227995125671944, - 4.1029543314646695, - 3.992949566435206, - 3.895281553102766, - 3.8080435750081767, - 3.7298650107182123, - 3.65975613903156, - 3.597011102290065, - 3.5411463413050006, - 3.4918620449248245, - 3.4490196584468373, - 3.4126317036518445, - 3.382862263938615, - 3.3600381344023114, - 3.344672282542259, - 3.3375033643959813, - 3.339558246808717, - 3.3522499839657454, - 3.3775339209900275, - 3.4181650181582164, - 3.4781434784635215, - 3.563539407481163, - 3.6841607231547715, - 3.857367877513096, - 4.118537324745116, - 4.559975869401111, - 5.623489024166781, - 7.208236848276105, - 6.005694216281124, - 5.4776818113923165, - 5.136536121077971, - 4.885479266431382, - 4.68807434928592, - 4.526669690364711, - 4.391423900116758, - 4.276345854951455, - 4.17757732582311, - 4.092551596692821, - 4.0195452204424775, - 3.9574260660637957, - 3.9055088912458804, - 3.863475785842746, - 3.831340855760335, - 3.8094506579334397, - 3.7985203849547577, - 3.7997142853674757, - 3.814790945436884, - 3.846356080071987, - 3.8983115888746473, - 3.976697709768482, - 4.091411104486969, - 4.260165515718678, - 4.5194672235592614, - 4.9661712165994345, - 6.088026524923259, - 7.492849170517863, - 6.255205614714892, - 5.734550842149859, - 5.407493402837601, - 5.1741769246435485, - 4.997644480740304, - 4.86036237806261, - 4.752904839812274, - 4.669930850395864, - 4.608492096170232, - 4.567272802360266, - 4.546288402752528, - 4.546885927011245, - 4.572046103309871, - 4.627144286486655, - 4.721643269237591, - 4.873117168871319, - 5.118567449347718, - 5.557899819980899, - 6.714561007231444 - ], - "colorbar": { - "title": "Poincare Distance" - }, - "colorscale": "Viridis", - "showscale": true, - "size": "9" - }, - "mode": "markers", - "name": "", - "text": [ - "Distance from (0.50, 0.50): 8.82", - "Distance from (0.50, 0.50): 7.61", - "Distance from (0.50, 0.50): 7.11", - "Distance from (0.50, 0.50): 6.82", - "Distance from (0.50, 0.50): 6.61", - "Distance from (0.50, 0.50): 6.46", - "Distance from (0.50, 0.50): 6.36", - "Distance from (0.50, 0.50): 6.28", - "Distance from (0.50, 0.50): 6.23", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 6.24", - "Distance from (0.50, 0.50): 6.30", - "Distance from (0.50, 0.50): 6.39", - "Distance from (0.50, 0.50): 6.52", - "Distance from (0.50, 0.50): 6.71", - "Distance from (0.50, 0.50): 6.99", - "Distance from (0.50, 0.50): 7.47", - "Distance from (0.50, 0.50): 8.66", - "Distance from (0.50, 0.50): 8.42", - "Distance from (0.50, 0.50): 7.25", - "Distance from (0.50, 0.50): 6.74", - "Distance from (0.50, 0.50): 6.43", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.90", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 5.71", - "Distance from (0.50, 0.50): 5.64", - "Distance from (0.50, 0.50): 5.59", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.52", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.53", - "Distance from (0.50, 0.50): 5.57", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.69", - "Distance from (0.50, 0.50): 5.78", - "Distance from (0.50, 0.50): 5.89", - "Distance from (0.50, 0.50): 6.05", - "Distance from (0.50, 0.50): 6.25", - "Distance from (0.50, 0.50): 6.55", - "Distance from (0.50, 0.50): 7.04", - "Distance from (0.50, 0.50): 8.20", - "Distance from (0.50, 0.50): 8.14", - "Distance from (0.50, 0.50): 7.02", - "Distance from (0.50, 0.50): 6.53", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 5.66", - "Distance from (0.50, 0.50): 5.54", - "Distance from (0.50, 0.50): 5.44", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.24", - "Distance from (0.50, 0.50): 5.19", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 5.09", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 5.23", - "Distance from (0.50, 0.50): 5.30", - "Distance from (0.50, 0.50): 5.38", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.60", - "Distance from (0.50, 0.50): 5.77", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 6.28", - "Distance from (0.50, 0.50): 6.76", - "Distance from (0.50, 0.50): 7.87", - "Distance from (0.50, 0.50): 7.28", - "Distance from (0.50, 0.50): 6.59", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 5.93", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 5.56", - "Distance from (0.50, 0.50): 5.43", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 5.22", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 5.01", - "Distance from (0.50, 0.50): 4.96", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 4.84", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.80", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.84", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.92", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 5.21", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 5.92", - "Distance from (0.50, 0.50): 6.30", - "Distance from (0.50, 0.50): 6.96", - "Distance from (0.50, 0.50): 8.88", - "Distance from (0.50, 0.50): 7.01", - "Distance from (0.50, 0.50): 6.40", - "Distance from (0.50, 0.50): 6.04", - "Distance from (0.50, 0.50): 5.78", - "Distance from (0.50, 0.50): 5.58", - "Distance from (0.50, 0.50): 5.42", - "Distance from (0.50, 0.50): 5.28", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 4.99", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.85", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.73", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.85", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 5.03", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.72", - "Distance from (0.50, 0.50): 6.07", - "Distance from (0.50, 0.50): 6.65", - "Distance from (0.50, 0.50): 8.51", - "Distance from (0.50, 0.50): 9.18", - "Distance from (0.50, 0.50): 6.97", - "Distance from (0.50, 0.50): 6.35", - "Distance from (0.50, 0.50): 5.97", - "Distance from (0.50, 0.50): 5.70", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 5.19", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 4.89", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.45", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.71", - "Distance from (0.50, 0.50): 4.80", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 5.61", - "Distance from (0.50, 0.50): 5.97", - "Distance from (0.50, 0.50): 6.58", - "Distance from (0.50, 0.50): 8.78", - "Distance from (0.50, 0.50): 7.15", - "Distance from (0.50, 0.50): 6.40", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.69", - "Distance from (0.50, 0.50): 5.47", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.73", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.59", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.94", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.58", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 6.72", - "Distance from (0.50, 0.50): 7.69", - "Distance from (0.50, 0.50): 6.57", - "Distance from (0.50, 0.50): 6.06", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.13", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.38", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.76", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 6.12", - "Distance from (0.50, 0.50): 7.22", - "Distance from (0.50, 0.50): 6.95", - "Distance from (0.50, 0.50): 6.24", - "Distance from (0.50, 0.50): 5.83", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.51", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.40", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 5.37", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 6.46", - "Distance from (0.50, 0.50): 7.96", - "Distance from (0.50, 0.50): 6.58", - "Distance from (0.50, 0.50): 6.02", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 5.21", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.94", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 5.52", - "Distance from (0.50, 0.50): 6.06", - "Distance from (0.50, 0.50): 7.43", - "Distance from (0.50, 0.50): 7.31", - "Distance from (0.50, 0.50): 6.35", - "Distance from (0.50, 0.50): 5.87", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 5.03", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 6.75", - "Distance from (0.50, 0.50): 6.99", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 5.45", - "Distance from (0.50, 0.50): 5.22", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 5.20", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 6.41", - "Distance from (0.50, 0.50): 6.82", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 5.68", - "Distance from (0.50, 0.50): 5.39", - "Distance from (0.50, 0.50): 5.16", - "Distance from (0.50, 0.50): 4.98", - "Distance from (0.50, 0.50): 4.83", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.30", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.31", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 6.72", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.65", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 6.69", - "Distance from (0.50, 0.50): 6.00", - "Distance from (0.50, 0.50): 5.59", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.40", - "Distance from (0.50, 0.50): 4.30", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.31", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.96", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 6.72", - "Distance from (0.50, 0.50): 6.00", - "Distance from (0.50, 0.50): 5.58", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.06", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 4.59", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.92", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 6.82", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.59", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.06", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 4.71", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.45", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.77", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.77", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 6.10", - "Distance from (0.50, 0.50): 6.99", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.06", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 4.71", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.33", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 6.25", - "Distance from (0.50, 0.50): 7.31", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 5.68", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.71", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.33", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 5.43", - "Distance from (0.50, 0.50): 6.54", - "Distance from (0.50, 0.50): 7.96", - "Distance from (0.50, 0.50): 6.35", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 5.39", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.33", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.98", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 7.16", - "Distance from (0.50, 0.50): 6.58", - "Distance from (0.50, 0.50): 5.87", - "Distance from (0.50, 0.50): 5.45", - "Distance from (0.50, 0.50): 5.16", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.59", - "Distance from (0.50, 0.50): 4.45", - "Distance from (0.50, 0.50): 4.33", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.38", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 5.06", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 6.95", - "Distance from (0.50, 0.50): 6.02", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.22", - "Distance from (0.50, 0.50): 4.98", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 6.10", - "Distance from (0.50, 0.50): 7.69", - "Distance from (0.50, 0.50): 6.24", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 4.83", - "Distance from (0.50, 0.50): 4.65", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 5.37", - "Distance from (0.50, 0.50): 6.81", - "Distance from (0.50, 0.50): 6.57", - "Distance from (0.50, 0.50): 5.83", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.40", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 7.15", - "Distance from (0.50, 0.50): 6.06", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.21", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.30", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 6.22", - "Distance from (0.50, 0.50): 9.18", - "Distance from (0.50, 0.50): 6.40", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 5.45", - "Distance from (0.50, 0.50): 8.22", - "Distance from (0.50, 0.50): 6.97", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 5.01", - "Distance from (0.50, 0.50): 6.00", - "Distance from (0.50, 0.50): 8.88", - "Distance from (0.50, 0.50): 6.35", - "Distance from (0.50, 0.50): 5.69", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.30", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 7.87", - "Distance from (0.50, 0.50): 7.01", - "Distance from (0.50, 0.50): 5.97", - "Distance from (0.50, 0.50): 5.47", - "Distance from (0.50, 0.50): 5.13", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 6.40", - "Distance from (0.50, 0.50): 5.70", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.77", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 7.28", - "Distance from (0.50, 0.50): 6.04", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 6.59", - "Distance from (0.50, 0.50): 5.78", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 8.14", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 5.58", - "Distance from (0.50, 0.50): 5.19", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 4.51", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 7.01", - "Distance from (0.50, 0.50): 7.02", - "Distance from (0.50, 0.50): 5.93", - "Distance from (0.50, 0.50): 5.42", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 5.87", - "Distance from (0.50, 0.50): 6.53", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 5.28", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 4.73", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 8.42", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 5.56", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 4.89", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 7.21", - "Distance from (0.50, 0.50): 7.25", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.43", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.59", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 6.01", - "Distance from (0.50, 0.50): 6.74", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 4.99", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 6.43", - "Distance from (0.50, 0.50): 5.66", - "Distance from (0.50, 0.50): 5.22", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 8.82", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 5.54", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 4.85", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.89", - "Distance from (0.50, 0.50): 7.49", - "Distance from (0.50, 0.50): 7.61", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.44", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 6.26", - "Distance from (0.50, 0.50): 7.11", - "Distance from (0.50, 0.50): 5.90", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 5.01", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 6.82", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 4.96", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 6.61", - "Distance from (0.50, 0.50): 5.71", - "Distance from (0.50, 0.50): 5.24", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 6.46", - "Distance from (0.50, 0.50): 5.64", - "Distance from (0.50, 0.50): 5.19", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 6.36", - "Distance from (0.50, 0.50): 5.59", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 4.84", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.86", - "Distance from (0.50, 0.50): 6.28", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 6.23", - "Distance from (0.50, 0.50): 5.52", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 4.80", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 5.07", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 6.24", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.77", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 6.30", - "Distance from (0.50, 0.50): 5.53", - "Distance from (0.50, 0.50): 5.09", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.34", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 6.39", - "Distance from (0.50, 0.50): 5.57", - "Distance from (0.50, 0.50): 5.11", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.35", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 6.52", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 6.71", - "Distance from (0.50, 0.50): 5.69", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 4.84", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 6.99", - "Distance from (0.50, 0.50): 5.78", - "Distance from (0.50, 0.50): 5.23", - "Distance from (0.50, 0.50): 4.88", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.79", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 7.47", - "Distance from (0.50, 0.50): 5.89", - "Distance from (0.50, 0.50): 5.30", - "Distance from (0.50, 0.50): 4.92", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.42", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 5.56", - "Distance from (0.50, 0.50): 8.66", - "Distance from (0.50, 0.50): 6.05", - "Distance from (0.50, 0.50): 5.38", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.45", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 6.71", - "Distance from (0.50, 0.50): 6.25", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.04", - "Distance from (0.50, 0.50): 4.73", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.29", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.96", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 6.55", - "Distance from (0.50, 0.50): 5.60", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.15", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.10", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.96", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 4.52", - "Distance from (0.50, 0.50): 7.04", - "Distance from (0.50, 0.50): 5.77", - "Distance from (0.50, 0.50): 5.21", - "Distance from (0.50, 0.50): 4.85", - "Distance from (0.50, 0.50): 4.58", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 8.20", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.33", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.86", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.77", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.77", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 6.28", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.03", - "Distance from (0.50, 0.50): 4.71", - "Distance from (0.50, 0.50): 4.47", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.58", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.80", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 6.76", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 5.15", - "Distance from (0.50, 0.50): 4.80", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 0.96", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.65", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.65", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 7.87", - "Distance from (0.50, 0.50): 5.92", - "Distance from (0.50, 0.50): 5.29", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.38", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.03", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.86", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.60", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.61", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.68", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 6.30", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 0.96", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.66", - "Distance from (0.50, 0.50): 0.63", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.56", - "Distance from (0.50, 0.50): 0.54", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.80", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 6.96", - "Distance from (0.50, 0.50): 5.72", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.63", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.51", - "Distance from (0.50, 0.50): 0.49", - "Distance from (0.50, 0.50): 0.47", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 6.07", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 4.94", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.40", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.51", - "Distance from (0.50, 0.50): 0.47", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.41", - "Distance from (0.50, 0.50): 0.39", - "Distance from (0.50, 0.50): 0.39", - "Distance from (0.50, 0.50): 0.40", - "Distance from (0.50, 0.50): 0.42", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.51", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 6.65", - "Distance from (0.50, 0.50): 5.61", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 4.76", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.11", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.37", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.96", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.77", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.56", - "Distance from (0.50, 0.50): 0.51", - "Distance from (0.50, 0.50): 0.47", - "Distance from (0.50, 0.50): 0.42", - "Distance from (0.50, 0.50): 0.38", - "Distance from (0.50, 0.50): 0.35", - "Distance from (0.50, 0.50): 0.32", - "Distance from (0.50, 0.50): 0.32", - "Distance from (0.50, 0.50): 0.33", - "Distance from (0.50, 0.50): 0.35", - "Distance from (0.50, 0.50): 0.40", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.60", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 8.51", - "Distance from (0.50, 0.50): 5.97", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.65", - "Distance from (0.50, 0.50): 0.60", - "Distance from (0.50, 0.50): 0.54", - "Distance from (0.50, 0.50): 0.49", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.38", - "Distance from (0.50, 0.50): 0.33", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.26", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.26", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.41", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.66", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 6.58", - "Distance from (0.50, 0.50): 5.58", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.93", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.47", - "Distance from (0.50, 0.50): 0.41", - "Distance from (0.50, 0.50): 0.35", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.24", - "Distance from (0.50, 0.50): 0.19", - "Distance from (0.50, 0.50): 0.17", - "Distance from (0.50, 0.50): 0.19", - "Distance from (0.50, 0.50): 0.23", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.37", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.54", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.86", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 8.78", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.31", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.75", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.65", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 0.98", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.39", - "Distance from (0.50, 0.50): 0.32", - "Distance from (0.50, 0.50): 0.26", - "Distance from (0.50, 0.50): 0.19", - "Distance from (0.50, 0.50): 0.14", - "Distance from (0.50, 0.50): 0.10", - "Distance from (0.50, 0.50): 0.12", - "Distance from (0.50, 0.50): 0.18", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.63", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 6.72", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.49", - "Distance from (0.50, 0.50): 4.27", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.39", - "Distance from (0.50, 0.50): 0.32", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.17", - "Distance from (0.50, 0.50): 0.10", - "Distance from (0.50, 0.50): 0.03", - "Distance from (0.50, 0.50): 0.06", - "Distance from (0.50, 0.50): 0.15", - "Distance from (0.50, 0.50): 0.24", - "Distance from (0.50, 0.50): 0.33", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 6.12", - "Distance from (0.50, 0.50): 5.37", - "Distance from (0.50, 0.50): 4.94", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.62", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.77", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.65", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.40", - "Distance from (0.50, 0.50): 0.33", - "Distance from (0.50, 0.50): 0.26", - "Distance from (0.50, 0.50): 0.19", - "Distance from (0.50, 0.50): 0.12", - "Distance from (0.50, 0.50): 0.06", - "Distance from (0.50, 0.50): 0.09", - "Distance from (0.50, 0.50): 0.16", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.44", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.66", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 7.22", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.31", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.27", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.61", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.42", - "Distance from (0.50, 0.50): 0.35", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.23", - "Distance from (0.50, 0.50): 0.18", - "Distance from (0.50, 0.50): 0.15", - "Distance from (0.50, 0.50): 0.16", - "Distance from (0.50, 0.50): 0.22", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.38", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 6.46", - "Distance from (0.50, 0.50): 5.52", - "Distance from (0.50, 0.50): 5.03", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.24", - "Distance from (0.50, 0.50): 4.06", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.77", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.82", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.58", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.40", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.24", - "Distance from (0.50, 0.50): 0.25", - "Distance from (0.50, 0.50): 0.29", - "Distance from (0.50, 0.50): 0.36", - "Distance from (0.50, 0.50): 0.44", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 6.06", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 4.91", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.08", - "Distance from (0.50, 0.50): 1.02", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.80", - "Distance from (0.50, 0.50): 0.74", - "Distance from (0.50, 0.50): 0.68", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.51", - "Distance from (0.50, 0.50): 0.46", - "Distance from (0.50, 0.50): 0.41", - "Distance from (0.50, 0.50): 0.37", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.33", - "Distance from (0.50, 0.50): 0.34", - "Distance from (0.50, 0.50): 0.38", - "Distance from (0.50, 0.50): 0.44", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.61", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 7.43", - "Distance from (0.50, 0.50): 5.80", - "Distance from (0.50, 0.50): 5.20", - "Distance from (0.50, 0.50): 4.82", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.31", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.57", - "Distance from (0.50, 0.50): 3.46", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.01", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.67", - "Distance from (0.50, 0.50): 0.62", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.52", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.45", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.43", - "Distance from (0.50, 0.50): 0.44", - "Distance from (0.50, 0.50): 0.48", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.61", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 6.75", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 5.10", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.48", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.24", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.68", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.94", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.73", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.60", - "Distance from (0.50, 0.50): 0.57", - "Distance from (0.50, 0.50): 0.54", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.53", - "Distance from (0.50, 0.50): 0.55", - "Distance from (0.50, 0.50): 0.59", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.71", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 6.41", - "Distance from (0.50, 0.50): 5.50", - "Distance from (0.50, 0.50): 5.02", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.43", - "Distance from (0.50, 0.50): 4.22", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.51", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.13", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.10", - "Distance from (0.50, 0.50): 1.05", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.95", - "Distance from (0.50, 0.50): 0.90", - "Distance from (0.50, 0.50): 0.85", - "Distance from (0.50, 0.50): 0.80", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.72", - "Distance from (0.50, 0.50): 0.69", - "Distance from (0.50, 0.50): 0.66", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.63", - "Distance from (0.50, 0.50): 0.64", - "Distance from (0.50, 0.50): 0.66", - "Distance from (0.50, 0.50): 0.70", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 6.21", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 4.96", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.19", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 3.87", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.16", - "Distance from (0.50, 0.50): 1.11", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.84", - "Distance from (0.50, 0.50): 0.81", - "Distance from (0.50, 0.50): 0.78", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.75", - "Distance from (0.50, 0.50): 0.76", - "Distance from (0.50, 0.50): 0.79", - "Distance from (0.50, 0.50): 0.83", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 4.92", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.32", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 0.93", - "Distance from (0.50, 0.50): 0.91", - "Distance from (0.50, 0.50): 0.88", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.86", - "Distance from (0.50, 0.50): 0.87", - "Distance from (0.50, 0.50): 0.89", - "Distance from (0.50, 0.50): 0.92", - "Distance from (0.50, 0.50): 0.97", - "Distance from (0.50, 0.50): 1.04", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.24", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.16", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.71", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.28", - "Distance from (0.50, 0.50): 3.19", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.62", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.52", - "Distance from (0.50, 0.50): 1.48", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.38", - "Distance from (0.50, 0.50): 1.34", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.21", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.09", - "Distance from (0.50, 0.50): 1.06", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.01", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 0.99", - "Distance from (0.50, 0.50): 1.00", - "Distance from (0.50, 0.50): 1.03", - "Distance from (0.50, 0.50): 1.07", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.20", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.43", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 5.32", - "Distance from (0.50, 0.50): 4.90", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.17", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.09", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.83", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.69", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.37", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.29", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.22", - "Distance from (0.50, 0.50): 1.19", - "Distance from (0.50, 0.50): 1.17", - "Distance from (0.50, 0.50): 1.14", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.12", - "Distance from (0.50, 0.50): 1.13", - "Distance from (0.50, 0.50): 1.15", - "Distance from (0.50, 0.50): 1.18", - "Distance from (0.50, 0.50): 1.23", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.51", - "Distance from (0.50, 0.50): 1.66", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 6.10", - "Distance from (0.50, 0.50): 5.36", - "Distance from (0.50, 0.50): 4.93", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 4.38", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.01", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.61", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.21", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.82", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.68", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.16", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.05", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.90", - "Distance from (0.50, 0.50): 1.86", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.58", - "Distance from (0.50, 0.50): 1.54", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.46", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.39", - "Distance from (0.50, 0.50): 1.36", - "Distance from (0.50, 0.50): 1.33", - "Distance from (0.50, 0.50): 1.30", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.27", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.25", - "Distance from (0.50, 0.50): 1.26", - "Distance from (0.50, 0.50): 1.28", - "Distance from (0.50, 0.50): 1.31", - "Distance from (0.50, 0.50): 1.35", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.61", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 6.25", - "Distance from (0.50, 0.50): 5.43", - "Distance from (0.50, 0.50): 4.98", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.88", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.63", - "Distance from (0.50, 0.50): 3.52", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.22", - "Distance from (0.50, 0.50): 3.14", - "Distance from (0.50, 0.50): 3.06", - "Distance from (0.50, 0.50): 2.98", - "Distance from (0.50, 0.50): 2.91", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.46", - "Distance from (0.50, 0.50): 2.40", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.18", - "Distance from (0.50, 0.50): 2.13", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.84", - "Distance from (0.50, 0.50): 1.80", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.53", - "Distance from (0.50, 0.50): 1.50", - "Distance from (0.50, 0.50): 1.47", - "Distance from (0.50, 0.50): 1.44", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.41", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.40", - "Distance from (0.50, 0.50): 1.42", - "Distance from (0.50, 0.50): 1.45", - "Distance from (0.50, 0.50): 1.49", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.63", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.34", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 6.54", - "Distance from (0.50, 0.50): 5.55", - "Distance from (0.50, 0.50): 5.06", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.08", - "Distance from (0.50, 0.50): 3.92", - "Distance from (0.50, 0.50): 3.78", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.44", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.86", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.66", - "Distance from (0.50, 0.50): 2.60", - "Distance from (0.50, 0.50): 2.54", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.02", - "Distance from (0.50, 0.50): 1.98", - "Distance from (0.50, 0.50): 1.93", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.67", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.61", - "Distance from (0.50, 0.50): 1.59", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.55", - "Distance from (0.50, 0.50): 1.56", - "Distance from (0.50, 0.50): 1.57", - "Distance from (0.50, 0.50): 1.60", - "Distance from (0.50, 0.50): 1.64", - "Distance from (0.50, 0.50): 1.70", - "Distance from (0.50, 0.50): 1.78", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.96", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 7.16", - "Distance from (0.50, 0.50): 5.76", - "Distance from (0.50, 0.50): 5.18", - "Distance from (0.50, 0.50): 4.81", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.13", - "Distance from (0.50, 0.50): 3.97", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.29", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.04", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.90", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.70", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.41", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.21", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.03", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.85", - "Distance from (0.50, 0.50): 1.82", - "Distance from (0.50, 0.50): 1.79", - "Distance from (0.50, 0.50): 1.76", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.73", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.71", - "Distance from (0.50, 0.50): 1.72", - "Distance from (0.50, 0.50): 1.74", - "Distance from (0.50, 0.50): 1.77", - "Distance from (0.50, 0.50): 1.81", - "Distance from (0.50, 0.50): 1.87", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.22", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 4.60", - "Distance from (0.50, 0.50): 6.10", - "Distance from (0.50, 0.50): 5.37", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 4.64", - "Distance from (0.50, 0.50): 4.41", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 4.04", - "Distance from (0.50, 0.50): 3.89", - "Distance from (0.50, 0.50): 3.76", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.53", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.17", - "Distance from (0.50, 0.50): 3.09", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.57", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.23", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.11", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.04", - "Distance from (0.50, 0.50): 2.00", - "Distance from (0.50, 0.50): 1.97", - "Distance from (0.50, 0.50): 1.95", - "Distance from (0.50, 0.50): 1.92", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.88", - "Distance from (0.50, 0.50): 1.89", - "Distance from (0.50, 0.50): 1.91", - "Distance from (0.50, 0.50): 1.94", - "Distance from (0.50, 0.50): 1.99", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.15", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.43", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.69", - "Distance from (0.50, 0.50): 6.81", - "Distance from (0.50, 0.50): 5.67", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 4.79", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.32", - "Distance from (0.50, 0.50): 4.14", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.84", - "Distance from (0.50, 0.50): 3.72", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.94", - "Distance from (0.50, 0.50): 2.87", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.64", - "Distance from (0.50, 0.50): 2.59", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.44", - "Distance from (0.50, 0.50): 2.39", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.31", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.24", - "Distance from (0.50, 0.50): 2.20", - "Distance from (0.50, 0.50): 2.17", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.12", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.07", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.06", - "Distance from (0.50, 0.50): 2.08", - "Distance from (0.50, 0.50): 2.10", - "Distance from (0.50, 0.50): 2.14", - "Distance from (0.50, 0.50): 2.19", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.37", - "Distance from (0.50, 0.50): 2.50", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 3.43", - "Distance from (0.50, 0.50): 4.50", - "Distance from (0.50, 0.50): 6.22", - "Distance from (0.50, 0.50): 5.45", - "Distance from (0.50, 0.50): 5.01", - "Distance from (0.50, 0.50): 4.70", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.95", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.59", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.40", - "Distance from (0.50, 0.50): 3.31", - "Distance from (0.50, 0.50): 3.23", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 2.89", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.77", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.67", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.45", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.38", - "Distance from (0.50, 0.50): 2.35", - "Distance from (0.50, 0.50): 2.33", - "Distance from (0.50, 0.50): 2.30", - "Distance from (0.50, 0.50): 2.28", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.25", - "Distance from (0.50, 0.50): 2.26", - "Distance from (0.50, 0.50): 2.27", - "Distance from (0.50, 0.50): 2.29", - "Distance from (0.50, 0.50): 2.32", - "Distance from (0.50, 0.50): 2.36", - "Distance from (0.50, 0.50): 2.42", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.63", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 8.22", - "Distance from (0.50, 0.50): 6.00", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 4.95", - "Distance from (0.50, 0.50): 4.66", - "Distance from (0.50, 0.50): 4.44", - "Distance from (0.50, 0.50): 4.25", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.82", - "Distance from (0.50, 0.50): 3.70", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.50", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.33", - "Distance from (0.50, 0.50): 3.26", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 2.93", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.83", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.65", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.58", - "Distance from (0.50, 0.50): 2.55", - "Distance from (0.50, 0.50): 2.53", - "Distance from (0.50, 0.50): 2.51", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.47", - "Distance from (0.50, 0.50): 2.48", - "Distance from (0.50, 0.50): 2.49", - "Distance from (0.50, 0.50): 2.52", - "Distance from (0.50, 0.50): 2.56", - "Distance from (0.50, 0.50): 2.62", - "Distance from (0.50, 0.50): 2.69", - "Distance from (0.50, 0.50): 2.80", - "Distance from (0.50, 0.50): 2.95", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 4.05", - "Distance from (0.50, 0.50): 6.20", - "Distance from (0.50, 0.50): 7.87", - "Distance from (0.50, 0.50): 5.98", - "Distance from (0.50, 0.50): 5.35", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 4.68", - "Distance from (0.50, 0.50): 4.46", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.75", - "Distance from (0.50, 0.50): 3.64", - "Distance from (0.50, 0.50): 3.55", - "Distance from (0.50, 0.50): 3.47", - "Distance from (0.50, 0.50): 3.39", - "Distance from (0.50, 0.50): 3.32", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.18", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 2.97", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 2.88", - "Distance from (0.50, 0.50): 2.85", - "Distance from (0.50, 0.50): 2.81", - "Distance from (0.50, 0.50): 2.78", - "Distance from (0.50, 0.50): 2.76", - "Distance from (0.50, 0.50): 2.74", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.71", - "Distance from (0.50, 0.50): 2.72", - "Distance from (0.50, 0.50): 2.73", - "Distance from (0.50, 0.50): 2.75", - "Distance from (0.50, 0.50): 2.79", - "Distance from (0.50, 0.50): 2.84", - "Distance from (0.50, 0.50): 2.92", - "Distance from (0.50, 0.50): 3.02", - "Distance from (0.50, 0.50): 3.16", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.67", - "Distance from (0.50, 0.50): 4.21", - "Distance from (0.50, 0.50): 6.03", - "Distance from (0.50, 0.50): 6.19", - "Distance from (0.50, 0.50): 5.49", - "Distance from (0.50, 0.50): 5.08", - "Distance from (0.50, 0.50): 4.78", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.36", - "Distance from (0.50, 0.50): 4.20", - "Distance from (0.50, 0.50): 4.07", - "Distance from (0.50, 0.50): 3.94", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.74", - "Distance from (0.50, 0.50): 3.65", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.25", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.15", - "Distance from (0.50, 0.50): 3.11", - "Distance from (0.50, 0.50): 3.08", - "Distance from (0.50, 0.50): 3.05", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 2.99", - "Distance from (0.50, 0.50): 3.00", - "Distance from (0.50, 0.50): 3.01", - "Distance from (0.50, 0.50): 3.03", - "Distance from (0.50, 0.50): 3.07", - "Distance from (0.50, 0.50): 3.12", - "Distance from (0.50, 0.50): 3.20", - "Distance from (0.50, 0.50): 3.30", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 4.00", - "Distance from (0.50, 0.50): 4.62", - "Distance from (0.50, 0.50): 7.01", - "Distance from (0.50, 0.50): 5.87", - "Distance from (0.50, 0.50): 5.34", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.74", - "Distance from (0.50, 0.50): 4.54", - "Distance from (0.50, 0.50): 4.37", - "Distance from (0.50, 0.50): 4.23", - "Distance from (0.50, 0.50): 4.10", - "Distance from (0.50, 0.50): 3.99", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.73", - "Distance from (0.50, 0.50): 3.66", - "Distance from (0.50, 0.50): 3.60", - "Distance from (0.50, 0.50): 3.54", - "Distance from (0.50, 0.50): 3.49", - "Distance from (0.50, 0.50): 3.45", - "Distance from (0.50, 0.50): 3.41", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.36", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.34", - "Distance from (0.50, 0.50): 3.35", - "Distance from (0.50, 0.50): 3.38", - "Distance from (0.50, 0.50): 3.42", - "Distance from (0.50, 0.50): 3.48", - "Distance from (0.50, 0.50): 3.56", - "Distance from (0.50, 0.50): 3.68", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 4.12", - "Distance from (0.50, 0.50): 4.56", - "Distance from (0.50, 0.50): 5.62", - "Distance from (0.50, 0.50): 7.21", - "Distance from (0.50, 0.50): 6.01", - "Distance from (0.50, 0.50): 5.48", - "Distance from (0.50, 0.50): 5.14", - "Distance from (0.50, 0.50): 4.89", - "Distance from (0.50, 0.50): 4.69", - "Distance from (0.50, 0.50): 4.53", - "Distance from (0.50, 0.50): 4.39", - "Distance from (0.50, 0.50): 4.28", - "Distance from (0.50, 0.50): 4.18", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.02", - "Distance from (0.50, 0.50): 3.96", - "Distance from (0.50, 0.50): 3.91", - "Distance from (0.50, 0.50): 3.86", - "Distance from (0.50, 0.50): 3.83", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.80", - "Distance from (0.50, 0.50): 3.81", - "Distance from (0.50, 0.50): 3.85", - "Distance from (0.50, 0.50): 3.90", - "Distance from (0.50, 0.50): 3.98", - "Distance from (0.50, 0.50): 4.09", - "Distance from (0.50, 0.50): 4.26", - "Distance from (0.50, 0.50): 4.52", - "Distance from (0.50, 0.50): 4.97", - "Distance from (0.50, 0.50): 6.09", - "Distance from (0.50, 0.50): 7.49", - "Distance from (0.50, 0.50): 6.26", - "Distance from (0.50, 0.50): 5.73", - "Distance from (0.50, 0.50): 5.41", - "Distance from (0.50, 0.50): 5.17", - "Distance from (0.50, 0.50): 5.00", - "Distance from (0.50, 0.50): 4.86", - "Distance from (0.50, 0.50): 4.75", - "Distance from (0.50, 0.50): 4.67", - "Distance from (0.50, 0.50): 4.61", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.55", - "Distance from (0.50, 0.50): 4.57", - "Distance from (0.50, 0.50): 4.63", - "Distance from (0.50, 0.50): 4.72", - "Distance from (0.50, 0.50): 4.87", - "Distance from (0.50, 0.50): 5.12", - "Distance from (0.50, 0.50): 5.56", - "Distance from (0.50, 0.50): 6.71" - ], - "type": "scatter", - "x": [ - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595 - ], - "y": [ - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899 - ] - }, - { - "marker": { - "color": "rgb(200, 50, 50)", - "size": "10" - }, - "mode": "markers+text", - "name": "Distance from (0.50, 0.50)", - "type": "scatter", - "x": [ - 0.5 - ], - "y": [ - 0.5 - ] - } - ], - "layout": { - "height": 800, - "hovermode": "closest", - "showlegend": false, - "title": "Poincare Distances from (0.50, 0.50)", - "width": 900 - } - }, - "text/html": [ - "
" - ], - "text/vnd.plotly.v1+html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "iplot(poincare_distance_heatmap([0.5, 0.5]))" - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "data": [ - { - "marker": { - "color": [ - 12.340283345775061, - 11.129668371334065, - 10.63665563337554, - 10.337863363592813, - 10.13344075354689, - 9.986434802943256, - 9.87931404660717, - 9.802653014072776, - 9.75110880200818, - 9.72172870857521, - 9.71318973332849, - 9.725496880465725, - 9.759983151674621, - 9.819611228620559, - 9.909733958949468, - 10.039786708259124, - 10.227310775253667, - 10.509268924450511, - 10.985521679370713, - 12.179461008628294, - 11.946874118367282, - 10.769208001639795, - 10.266673774077319, - 9.951620998259468, - 9.727282541781781, - 9.5572314488619, - 9.42382514099217, - 9.317230341090278, - 9.231462865617507, - 9.16267004053137, - 9.108289078869458, - 9.066598566000891, - 9.03646620444331, - 9.017204050530546, - 9.008488586944479, - 9.010324999823572, - 9.023047171243757, - 9.047353387083641, - 9.084386249503876, - 9.135877425356455, - 9.204399886546872, - 9.293816410119158, - 9.410121186270388, - 9.56315738851153, - 9.770577368967455, - 10.068817726260072, - 10.554655123215385, - 11.715749886577, - 11.668628131180109, - 10.548457214023939, - 10.050000443848349, - 9.731585047373871, - 9.501026524351156, - 9.323061148853096, - 9.18043140176092, - 9.06342248273116, - 8.96604778619637, - 8.884381364275177, - 8.815733767601717, - 8.758207003875233, - 8.710437849135682, - 8.671442399918583, - 8.640518750174667, - 8.617185103426323, - 8.601140860272723, - 8.592243722843552, - 8.590499066940794, - 8.59605993419807, - 8.6092376442678, - 8.630524674727784, - 8.660633557989248, - 8.700558753629489, - 8.75167395606249, - 8.815887527105179, - 8.89589916959179, - 8.995644953940085, - 9.121121462768524, - 9.282053314010504, - 9.495707672268892, - 9.797357728634104, - 10.279197284203601, - 11.382908644719173, - 10.799635984660894, - 10.118530647838346, - 9.728074916892567, - 9.45680221849301, - 9.251195590528193, - 9.087484820940942, - 8.953030962812276, - 8.840322719801458, - 8.74454548282054, - 8.662441439045596, - 8.59171672642945, - 8.530708352538841, - 8.478185602579348, - 8.433226018859473, - 8.395135136200576, - 8.363393178618582, - 8.33761913257087, - 8.317546534819712, - 8.303007562286771, - 8.29392337450279, - 8.29029954480639, - 8.29222605217641, - 8.299881833707575, - 8.313544425864713, - 8.333605858381787, - 8.360596850222661, - 8.395222720251242, - 8.438416674583625, - 8.49142005535523, - 8.555906345607138, - 8.634179745821582, - 8.729508239904538, - 8.846716425830934, - 8.993325392287538, - 9.181983668560562, - 9.43647082798906, - 9.810312971099066, - 10.474985657313878, - 12.400955091203484, - 10.529800177357233, - 9.928012933385174, - 9.563273361688426, - 9.303397286723449, - 9.103210618489491, - 8.941789640711969, - 8.807724769968424, - 8.694115973126966, - 8.59648066878846, - 8.511750825311521, - 8.437742679690517, - 8.37285484990348, - 8.315886277644712, - 8.265921282899345, - 8.222254270781676, - 8.184338950561003, - 8.151753320175986, - 8.124175166370177, - 8.101364833017143, - 8.083153206334211, - 8.069433611010565, - 8.060156798512214, - 8.0553285478928, - 8.055009657290285, - 8.05931832611874, - 8.06843514979387, - 8.082611206682339, - 8.102180056032426, - 8.127574952881366, - 8.159353331262892, - 8.198231803171122, - 8.245136923174792, - 8.301280465410521, - 8.368274353065111, - 8.448312699964976, - 8.544473682867038, - 8.66124980761298, - 8.805550796672108, - 8.98879567414619, - 9.231917336767399, - 9.580098790233523, - 10.165532902409554, - 12.020549997920222, - 12.706985717442723, - 10.49759367261454, - 9.870165320611221, - 9.494420906439151, - 9.227510770001533, - 9.021872510201826, - 8.855741340598799, - 8.717331243072083, - 8.59954466458989, - 8.497781945610306, - 8.408898042638974, - 8.33065347599019, - 8.261402805128116, - 8.199907178934895, - 8.145216110489436, - 8.096590002547934, - 8.053447761883225, - 8.015330465026802, - 7.981875647322399, - 7.952798844111149, - 7.9278802322397155, - 7.906954969407665, - 7.889906305611904, - 7.876660855600643, - 7.867185638176723, - 7.861486646617256, - 7.859608839825797, - 7.861637554225624, - 7.867701446795272, - 7.877977204997297, - 7.892696417779248, - 7.9121552187545525, - 7.936727627327196, - 7.966883990267603, - 8.003216675574242, - 8.046476389829401, - 8.097624547171694, - 8.157910727376398, - 8.228990884926107, - 8.31311478292709, - 8.413437502346257, - 8.534568479307454, - 8.683614768225066, - 8.872371600099047, - 9.122612674653444, - 9.481909003357032, - 10.093118603171485, - 12.286532422396668, - 10.673730158579882, - 9.920717727287835, - 9.50196587149224, - 9.212457477332364, - 8.99230999455564, - 8.815658292913344, - 8.66895709868777, - 8.544225914933762, - 8.436370901041347, - 8.341946689547145, - 8.258518726649454, - 8.184307391861369, - 8.11797659495075, - 8.058501781103278, - 8.005084100365682, - 7.957092691334003, - 7.9140247730003015, - 7.875477406421717, - 7.841127137019367, - 7.810715106340524, - 7.7840360594331575, - 7.76093019922363, - 7.741277178821432, - 7.724991748895254, - 7.712020733087685, - 7.7023411162171245, - 7.695959114635063, - 7.69291016702532, - 7.693259845653011, - 7.6971057497923985, - 7.704580511981859, - 7.715856132374868, - 7.731149968238602, - 7.750732861476661, - 7.774940113274944, - 7.804186354505358, - 7.838985885766426, - 7.879980898258654, - 7.927981364721618, - 7.984022738807068, - 8.049451769016946, - 8.126058477289149, - 8.216287546229651, - 8.323594184125144, - 8.453081769690895, - 8.612740021312925, - 8.81612310481711, - 9.089104703533923, - 9.491575583749523, - 10.228560839486317, - 11.212961776034506, - 10.095156017172862, - 9.585884741334345, - 9.25425509917947, - 9.009181124545336, - 8.815650537639382, - 8.656458631061124, - 8.52187189260837, - 8.405849618168782, - 8.30438852538956, - 8.214702534871035, - 8.134778167178203, - 8.063116392374551, - 7.998574359250706, - 7.940263983679311, - 7.887484559431545, - 7.8396765939493065, - 7.796389364934967, - 7.757257625167497, - 7.7219845761715415, - 7.690329245714738, - 7.662097031688134, - 7.6371325746655465, - 7.615314383025149, - 7.59655081025016, - 7.580777105348376, - 7.56795334372186, - 7.558063109741642, - 7.551112852036434, - 7.54713187393128, - 7.546172959042868, - 7.548313669609331, - 7.553658396560006, - 7.562341290085978, - 7.574530263397553, - 7.5904323487483625, - 7.610300806131339, - 7.634444560788108, - 7.663240807264011, - 7.697152017485352, - 7.736749217918567, - 7.782744415223581, - 7.836036743035222, - 7.897779834057838, - 7.969483215030838, - 8.0531705612879, - 8.151637831546493, - 8.26889785584289, - 8.411000540043952, - 8.587688238917139, - 8.816174131786285, - 9.131478593154661, - 9.624695324346934, - 10.726724932141277, - 10.474143534092502, - 9.765682398696569, - 9.358937264480891, - 9.073728730045591, - 8.854803240036825, - 8.67779139676323, - 8.529774617026044, - 8.403078434392036, - 8.29277376669609, - 8.195509551644658, - 8.108906937132367, - 8.031219161526648, - 7.96112853135068, - 7.897619128936834, - 7.8398937207855734, - 7.787317667276274, - 7.7393799734183615, - 7.695665585910459, - 7.655835284142213, - 7.619610831299797, - 7.586763853941404, - 7.557107421430677, - 7.530489620709562, - 7.506788635976582, - 7.485908987642875, - 7.467778685227409, - 7.452347120085493, - 7.439583575960965, - 7.429476274871644, - 7.422031907286303, - 7.4172756221960565, - 7.41525147708565, - 7.41602337221293, - 7.419676520250346, - 7.426319533792384, - 7.4360872527540325, - 7.449144485784052, - 7.465690911052481, - 7.485967482064137, - 7.510264828959879, - 7.538934359855812, - 7.572403090868224, - 7.611193736497976, - 7.655952394257636, - 7.707487475955356, - 7.7668257804209615, - 7.835295568043658, - 7.914653836538343, - 8.007289327276515, - 8.11656262969433, - 8.247411976462171, - 8.407520594356868, - 8.609815424683246, - 8.878673811894302, - 9.269356848080161, - 9.96205114212942, - 11.486099365432294, - 10.102487613937239, - 9.546778257778326, - 9.194440421636541, - 8.936796620280022, - 8.734261018543464, - 8.567908336233652, - 8.427210697070729, - 8.305707991285761, - 8.199152885711582, - 8.104606066511554, - 8.019951535926019, - 7.943617719503885, - 7.874407697276347, - 7.811391040189838, - 7.7538322517105795, - 7.7011419073206575, - 7.65284238654328, - 7.608543283221087, - 7.567923411747877, - 7.5307174183608385, - 7.49670567822349, - 7.4657065843597925, - 7.437570610883104, - 7.412175716832792, - 7.389423781973565, - 7.369237852780703, - 7.3515600385093185, - 7.3363499420855955, - 7.323583544081219, - 7.31325248398838, - 7.3053637040455435, - 7.299939438936186, - 7.297017551364441, - 7.296652230193501, - 7.298915085905777, - 7.3038966991781535, - 7.3117087043242, - 7.3224865228812455, - 7.3363929074634155, - 7.353622517680499, - 7.374407836794849, - 7.399026862835261, - 7.4278131917606816, - 7.4611693866546664, - 7.499584952266713, - 7.543660905844596, - 7.594144026613354, - 7.651975698237858, - 7.718363449696761, - 7.794889101918518, - 7.883678520344143, - 7.987680492186898, - 8.111151415040482, - 8.260560040531079, - 8.446442451961362, - 8.687731691741153, - 9.02402090868155, - 9.56399448252114, - 10.93219050063055, - 10.836413461045058, - 9.871483853642847, - 9.39216945407995, - 9.0715705088703, - 8.83101055570175, - 8.638929795301099, - 8.479461901624296, - 8.343498273872427, - 8.22532676561299, - 8.121131187673623, - 8.028237814274608, - 7.94470278870893, - 7.869070629449896, - 7.800225190574842, - 7.737293621882403, - 7.679582221594904, - 7.626532275920293, - 7.57768886473821, - 7.53267833362781, - 7.491191711573201, - 7.4529723033370345, - 7.417806274698291, - 7.385515424567111, - 7.355951583715458, - 7.32899224418966, - 7.3045371356787605, - 7.282505543264623, - 7.262834216486461, - 7.245475759885531, - 7.230397425023902, - 7.21758024668726, - 7.207018483874483, - 7.19871934089559, - 7.192702956694009, - 7.189002662395186, - 7.18766551896993, - 7.188753159696438, - 7.1923429768256915, - 7.19852970975031, - 7.2074275146962306, - 7.219172625788709, - 7.2339267575815125, - 7.251881454649895, - 7.273263672005069, - 7.298342982301346, - 7.327440970139991, - 7.360943619505491, - 7.399317876192385, - 7.443134156291788, - 7.4930975214666855, - 7.5500918208683085, - 7.6152438205036335, - 7.690019225859095, - 7.7763717049739105, - 7.876984366678815, - 7.995682340221072, - 8.138186255545214, - 8.31361272818786, - 8.53783562000021, - 8.84242178155426, - 9.306054255622689, - 10.25563914353868, - 10.519529501960998, - 9.718219517246549, - 9.280894500982011, - 8.979166831020548, - 8.749076389784465, - 8.563463521569311, - 8.408237456631307, - 8.275143112513085, - 8.158929166181652, - 8.056049738173742, - 7.9639997934558995, - 7.880945884457535, - 7.8055075293924325, - 7.7366210286331, - 7.6734510302502414, - 7.6153310762266395, - 7.561722442418219, - 7.5121849195797035, - 7.466355617877277, - 7.423933301068676, - 7.384666618295976, - 7.348345139133193, - 7.314792442187488, - 7.283860733869207, - 7.255426625839733, - 7.229387803659479, - 7.205660391737773, - 7.184176871258881, - 7.164884445076987, - 7.14774377110176, - 7.132728006448412, - 7.11982212068104, - 7.1090224493099745, - 7.100336469394705, - 7.093782788487758, - 7.089391346919236, - 7.08720384218651, - 7.087274393598674, - 7.08967047601843, - 7.094474164378942, - 7.1017837467119636, - 7.1117157841801575, - 7.124407724140531, - 7.1400212095900875, - 7.1587462799232675, - 7.180806730516655, - 7.206467002676215, - 7.236041127382774, - 7.269904472594402, - 7.308509388527407, - 7.352406383040553, - 7.402273321017588, - 7.458956565406314, - 7.523530412682215, - 7.597385509753587, - 7.682365020893552, - 7.780983233687855, - 7.8967948013482285, - 8.035059328421786, - 8.204039674676508, - 8.417833873009053, - 8.703608322068659, - 9.125329369907373, - 9.911390484877888, - 10.341826416464535, - 9.616669051153123, - 9.201912899281718, - 8.91068187682784, - 8.68643426320935, - 8.504374489204716, - 8.35139921480944, - 8.2197384780474, - 8.104406799727244, - 8.002015879729218, - 7.910159743829661, - 7.8270700887765665, - 7.751410791283745, - 7.682149171464901, - 7.618471996244475, - 7.559728780647726, - 7.505392397439408, - 7.4550310275476575, - 7.408287755433538, - 7.364865447910468, - 7.324515365792932, - 7.2870284654664195, - 7.2522286739008965, - 7.219967635543779, - 7.1901205740883976, - 7.162583011276201, - 7.137268154161124, - 7.114104811495368, - 7.093035735478784, - 7.074016311276948, - 7.057013536306798, - 7.042005246272735, - 7.028979556687333, - 7.017934498121589, - 7.008877831440318, - 7.001827036368014, - 6.9968094733821165, - 6.993862725582896, - 6.993035134280292, - 6.99438655005128, - 6.997989330535582, - 7.003929627993051, - 7.012309024635344, - 7.023246593344013, - 7.036881487556653, - 7.0533761996925755, - 7.072920676727722, - 7.095737550806258, - 7.122088841946253, - 7.152284634464469, - 7.186694443666372, - 7.2257623157848645, - 7.2700272118703095, - 7.320151037215509, - 7.376958012248303, - 7.441491352552731, - 7.515097247650958, - 7.599553580748895, - 7.69727540401943, - 7.811659579023129, - 7.947699616746732, - 8.113172969772416, - 8.321189918062622, - 8.596552414362298, - 8.995808012031125, - 9.705838168113717, - 10.248475267584357, - 9.554153113084144, - 9.148956513083252, - 8.862087476293857, - 8.640130496539577, - 8.45931959894726, - 8.306989285975936, - 8.175587072326902, - 8.060247444442835, - 7.957653445097173, - 7.865443956856094, - 7.781880081062333, - 7.705645571610944, - 7.635721474369236, - 7.571304149452678, - 7.511749828768776, - 7.45653603340763, - 7.405234057476009, - 7.357488923141785, - 7.313004505584079, - 7.271532314333929, - 7.232862911553588, - 7.196819265906449, - 7.163251550353123, - 7.1320330333883515, - 7.103056810143572, - 7.076233187498269, - 7.051487585459474, - 7.028758851808199, - 7.007997912492418, - 6.989166699242966, - 6.972237310304066, - 6.957191371333203, - 6.94401957238411, - 6.932721364135378, - 6.923304802690518, - 6.915786537768897, - 6.910191944281282, - 6.906555402458624, - 6.904920737198053, - 6.905341833456234, - 6.907883451772953, - 6.912622276871799, - 6.919648243453745, - 6.929066197721523, - 6.94099797217685, - 6.955584976721544, - 6.972991443841371, - 6.9934085137765765, - 7.01705941331019, - 7.044206078724234, - 7.075157714661728, - 7.110281990324095, - 7.150019892545156, - 7.194905749353035, - 7.245594725426813, - 7.302901384788321, - 7.3678551142435165, - 7.441782083109259, - 7.526430586930832, - 7.624170598099661, - 7.738327372648625, - 7.873774154107899, - 8.03807057799639, - 8.243888703634536, - 8.5150004742418, - 8.904826776603791, - 9.584170473813224, - 10.219175329554295, - 9.52426510460889, - 9.118427380814207, - 8.830889167966669, - 8.608239348259218, - 8.426712878525834, - 8.273644177289967, - 8.141480266827077, - 8.025354932614617, - 7.921950385564968, - 7.828904578422153, - 7.744477598787557, - 7.667352107932335, - 7.596507980444436, - 7.53114032383555, - 7.470604031428261, - 7.4143751935296445, - 7.362023573666573, - 7.313192554686812, - 7.267584253369658, - 7.224948289915386, - 7.185073192693387, - 7.1477797366832565, - 7.112915723675461, - 7.080351853420779, - 7.049978431762953, - 7.021702729430696, - 6.995446853189897, - 6.971146025685492, - 6.948747195648327, - 6.9282079189734045, - 6.909495465386645, - 6.892586116326221, - 6.8774646282061145, - 6.864123842079263, - 6.8525644263763095, - 6.842794744247147, - 6.8348308413833, - 6.828696554311068, - 6.8244237432578325, - 6.822052658046845, - 6.821632450330213, - 6.823221851133023, - 6.826890039536915, - 6.832717736879819, - 6.840798571765209, - 6.851240775393557, - 6.864169285568982, - 6.879728363089757, - 6.898084858870105, - 6.919432318175672, - 6.943996176007123, - 6.972040394521462, - 7.003876034512967, - 7.0398724626167795, - 7.080472213960823, - 7.126211024009264, - 7.177745331072255, - 7.235890844800934, - 7.301677974018809, - 7.3764337890118865, - 7.461907365087294, - 7.5604693284074855, - 7.675445449190894, - 7.8117093132815025, - 7.976820649851166, - 8.183451164324245, - 8.455371392593136, - 8.845997321139969, - 9.526106265379523, - 10.248475267584357, - 9.52426510460889, - 9.108446206894346, - 8.815627956393403, - 8.58954924914338, - 8.405504520547137, - 8.250427079306487, - 8.116563773766861, - 7.998937109981655, - 7.894162305762161, - 7.79983439783582, - 7.714184554614002, - 7.635875096355908, - 7.563871041551146, - 7.49735627096485, - 7.435676919848148, - 7.378302036375039, - 7.324795553844149, - 7.274795889321608, - 7.228000812095709, - 7.184156034067085, - 7.143046480611386, - 7.10448952603683, - 7.068329692080636, - 7.034434451993937, - 7.002690881540224, - 6.9730029671381555, - 6.945289430235229, - 6.919481962169202, - 6.895523789461767, - 6.873368508517661, - 6.85297914300091, - 6.834327388066513, - 6.81739301408481, - 6.802163409184079, - 6.788633245350446, - 6.776804257334329, - 6.766685127507556, - 6.758291473327395, - 6.751645937392953, - 6.746778383409202, - 6.743726204888415, - 6.7425347573173315, - 6.743257929033804, - 6.74595887147662, - 6.750710916168322, - 6.757598714258597, - 6.766719645372282, - 6.778185556815182, - 6.792124913230803, - 6.808685462500486, - 6.828037558861635, - 6.85037833308636, - 6.875936968480219, - 6.904981440247435, - 6.937827219884962, - 6.974848660598921, - 7.016494105330694, - 7.0633062654001595, - 7.115950226532126, - 7.17525276973027, - 7.242258959602806, - 7.318315962222357, - 7.405201482160386, - 7.505328727395929, - 7.6220900834243075, - 7.760469994947559, - 7.928227902884764, - 8.138436120075314, - 8.415805162983592, - 8.816600427814995, - 9.526216260016223, - 10.341826416464535, - 9.554153113084144, - 9.118427380814207, - 8.815627956393403, - 8.583390659640425, - 8.395052786389666, - 8.236726663337652, - 8.100254100802738, - 7.9804345015976725, - 7.873749900477218, - 7.7777107606323215, - 7.690491823780005, - 7.610716192233378, - 7.537320660993046, - 7.469468170140076, - 7.406488885233682, - 7.34783936334142, - 7.293073531354733, - 7.241821604252644, - 7.193774476051642, - 7.1486719672594425, - 7.106293843979039, - 7.066452864504867, - 7.02898933298206, - 6.993766789799825, - 6.960668571062896, - 6.929595040968465, - 6.900461351499753, - 6.873195620186333, - 6.847737443160804, - 6.824036680301518, - 6.802052463895382, - 6.781752393369661, - 6.763111887201548, - 6.746113669813945, - 6.730747376609861, - 6.717009264658983, - 6.704902020211109, - 6.694434657393096, - 6.685622505329277, - 6.678487283665505, - 6.673057269218018, - 6.669367559354236, - 6.667460440898832, - 6.667385877025429, - 6.669202128962868, - 6.672976534697823, - 6.678786473565303, - 6.686720554189711, - 6.696880074366231, - 6.709380816129564, - 6.7243552588306015, - 6.741955319534814, - 6.7623557664088825, - 6.785758501359317, - 6.8123979796833085, - 6.842548137177136, - 6.87653134525873, - 6.914730138399959, - 6.957602798867916, - 7.005704415109827, - 7.059715881200337, - 7.120484709847924, - 7.189083932467553, - 7.266899628850659, - 7.3557655788855785, - 7.458179166202735, - 7.577665515860463, - 7.71943168786439, - 7.891641630226296, - 8.108188065638446, - 8.395738039118388, - 8.816659377822647, - 9.58997642579378, - 10.519529501960998, - 9.616669051153123, - 9.148956513083252, - 8.830889167966669, - 8.58954924914338, - 8.395052786389666, - 8.232197170375585, - 8.092186892663488, - 7.9694747823286765, - 7.860338056346834, - 7.762158219468204, - 7.673024641777866, - 7.591501543847458, - 7.516483686358615, - 7.4471030986882285, - 7.382666613339323, - 7.322612754012821, - 7.266481203980311, - 7.2138906956310835, - 7.164522683228028, - 7.118109077738486, - 7.074422892485019, - 7.033271012355651, - 6.994488537508778, - 6.957934311807792, - 6.923487354869576, - 6.8910439920499975, - 6.860515529933841, - 6.831826363048986, - 6.80491242525189, - 6.779719919654081, - 6.756204276197551, - 6.734329297504025, - 6.714066462443162, - 6.695394363715704, - 6.678298261153923, - 6.662769736788132, - 6.648806441301397, - 6.63641192451487, - 6.6255955451862425, - 6.616372457806542, - 6.608763676369274, - 6.602796217375746, - 6.598503326746, - 6.595924797949795, - 6.5951073916990035, - 6.596105371124669, - 6.598981170718427, - 6.60380622273592, - 6.610661971623646, - 6.619641115864744, - 6.630849128171094, - 6.644406120202811, - 6.660449138434632, - 6.67913500553183, - 6.700643859766315, - 6.725183598263011, - 6.752995505319753, - 6.784361455706248, - 6.81961324215905, - 6.85914481449496, - 6.903428581767895, - 6.953037498778547, - 7.008675575081078, - 7.071220965793134, - 7.141788417726881, - 7.22182252321991, - 7.313242014951033, - 7.418672767415024, - 7.541844208341242, - 7.688309410337447, - 7.866869034837413, - 8.092730093267546, - 8.39578021054458, - 8.848940082485129, - 9.737714833064212, - 10.836413461045058, - 9.718219517246549, - 9.201912899281718, - 8.862087476293857, - 8.608239348259218, - 8.405504520547137, - 8.236726663337652, - 8.092186892663488, - 7.9658446982044415, - 7.853689594541311, - 7.752923852161997, - 7.6615192400402075, - 7.577959507283231, - 7.50108239190232, - 7.429978296106239, - 7.363922866979959, - 7.302330721872994, - 7.244722831994123, - 7.190702998912644, - 7.139940545729321, - 7.092157354870048, - 7.047118008759418, - 7.004622186357296, - 6.964498726972433, - 6.926600944888331, - 6.890802895290045, - 6.856996372904708, - 6.825088481699421, - 6.794999654647934, - 6.766662032042924, - 6.740018128465665, - 6.7150197346134055, - 6.691627012297368, - 6.669807750156817, - 6.649536754762482, - 6.630795357361848, - 6.613571020954492, - 6.597857035976826, - 6.583652295848141, - 6.570961146157427, - 6.5597933034915785, - 6.5501638419347055, - 6.542093247205458, - 6.535607540337548, - 6.530738474841134, - 6.527523813509348, - 6.526007693569476, - 6.526241091860388, - 6.5282824053205495, - 6.532198166519706, - 6.538063919561279, - 6.545965288826289, - 6.5559992822791235, - 6.568275883185829, - 6.582920000202285, - 6.600073867442909, - 6.619900015624055, - 6.642584976061527, - 6.668343936249114, - 6.697426646684496, - 6.730124995575972, - 6.766782840196413, - 6.807808942091173, - 6.853694250079536, - 6.905035399297516, - 6.962567304720955, - 7.027209414669056, - 7.10013311098727, - 7.182863016773593, - 7.277434972966177, - 7.38665354456379, - 7.51453526859715, - 7.667125916551412, - 7.854148839730987, - 8.092764042054165, - 8.417838406602817, - 8.91987796987287, - 10.02429063892537, - 11.486099365432294, - 9.871483853642847, - 9.280894500982011, - 8.91068187682784, - 8.640130496539577, - 8.426712878525834, - 8.250427079306487, - 8.100254100802738, - 7.9694747823286765, - 7.853689594541311, - 7.749861645815555, - 7.655807471620723, - 7.5699055666112525, - 7.490919684225566, - 7.4178866163049, - 7.350042131794664, - 7.286770494284277, - 7.227569090573964, - 7.172023051110578, - 7.1197866589839425, - 7.0705694820409555, - 7.024125860868878, - 6.980246826278126, - 6.938753805487974, - 6.89949366545202, - 6.862334769749539, - 6.8271638136559, - 6.793883263803953, - 6.762409272831938, - 6.732669971169646, - 6.704604061351365, - 6.678159657462834, - 6.653293325244027, - 6.629969288171279, - 6.608158772370599, - 6.587839469068467, - 6.568995097901116, - 6.551615058096639, - 6.535694157553882, - 6.521232412348251, - 6.508234911337459, - 6.496711742432217, - 6.48667797883136, - 6.478153725180046, - 6.471164225270157, - 6.46574003464028, - 6.461917263330824, - 6.459737896201391, - 6.459250200734589, - 6.460509235273072, - 6.4635774743449765, - 6.468525572364249, - 6.475433292865081, - 6.484390637977365, - 6.495499222672093, - 6.508873951241102, - 6.524645070715345, - 6.542960699183533, - 6.56398995874952, - 6.587926886869753, - 6.614995361628717, - 6.645455364713522, - 6.67961103385185, - 6.717821145722293, - 6.760512955927613, - 6.808200763505543, - 6.861511265647825, - 6.9212189061622205, - 6.988296337056539, - 7.063988461268742, - 7.14992463698853, - 7.248295364696345, - 7.36214374458526, - 7.4958746797475495, - 7.656211865621902, - 7.854177995488431, - 8.10977787256985, - 8.465541015931592, - 9.042184180481218, - 10.64335848195951, - 10.102487613937239, - 9.39216945407995, - 8.979166831020548, - 8.68643426320935, - 8.45931959894726, - 8.273644177289967, - 8.116563773766861, - 7.9804345015976725, - 7.860338056346834, - 7.752923852161997, - 7.655807471620723, - 7.5672326248226796, - 7.4858691964976405, - 7.410686513163407, - 7.340870532520161, - 7.275767870053247, - 7.214846861645908, - 7.157669798776024, - 7.10387270033167, - 7.053150295072674, - 7.005244685688432, - 6.9599366648137195, - 6.917038974669249, - 6.876391013615927, - 6.837854635260651, - 6.8013107833437365, - 6.766656773714519, - 6.733804082947324, - 6.702676537844013, - 6.6732088253582225, - 6.645345261144913, - 6.619038768886743, - 6.5942500330910345, - 6.570946796110622, - 6.549103276374936, - 6.528699689696866, - 6.50972185939131, - 6.492160904057829, - 6.476012994434307, - 6.461279172867405, - 6.447965230783681, - 6.436081641175067, - 6.425643544611333, - 6.416670788728717, - 6.409188022581803, - 6.403224848748989, - 6.398816037718724, - 6.396001810931529, - 6.394828201004062, - 6.395347500230689, - 6.397618811591539, - 6.401708720385363, - 6.407692109505424, - 6.41565314763186, - 6.425686487696685, - 6.4378987235438005, - 6.4524101666785345, - 6.469357023693778, - 6.488894080272266, - 6.511198032380958, - 6.536471653540081, - 6.564949055144707, - 6.5969023944254515, - 6.632650526997266, - 6.672570312577756, - 6.717111603768056, - 6.766817447203479, - 6.822351823302847, - 6.88453856083221, - 6.954417289949882, - 7.0333262351587615, - 7.123028933405214, - 7.225916175331479, - 7.3453440378261785, - 7.4862354292801285, - 7.656237952135114, - 7.868198661151409, - 8.14629817070538, - 8.545189730402559, - 9.24191916504611, - 10.474143534092502, - 9.546778257778326, - 9.0715705088703, - 8.749076389784465, - 8.504374489204716, - 8.306989285975936, - 8.141480266827077, - 7.998937109981655, - 7.873749900477218, - 7.762158219468204, - 7.6615192400402075, - 7.5699055666112525, - 7.4858691964976405, - 7.408295510302196, - 7.3363089934380366, - 7.269210146180716, - 7.206431969027417, - 7.147509161855057, - 7.092055827308053, - 7.039749010464943, - 6.990316335205783, - 6.943526574318993, - 6.899182358432644, - 6.8571144695491215, - 6.817177325834118, - 6.779245373964524, - 6.743210181425005, - 6.708978074801631, - 6.676468208532177, - 6.645610976451041, - 6.616346698961869, - 6.588624533921296, - 6.562401570795939, - 6.537642076391383, - 6.514316867175043, - 6.492402788446904, - 6.471882284732373, - 6.45274304905864, - 6.434977741437594, - 6.418583769071566, - 6.4035631226438845, - 6.389922264649625, - 6.377672067140352, - 6.366827797565016, - 6.35740915264524, - 6.349440341480874, - 6.34295022039489, - 6.337972483453035, - 6.334545914198061, - 6.332714705997975, - 6.3325288606176615, - 6.334044677304114, - 6.3373253479841845, - 6.342441678317574, - 6.349472959605065, - 6.358508023301728, - 6.369646518648767, - 6.383000465444294, - 6.398696149251347, - 6.416876446863823, - 6.437703697755356, - 6.461363275671866, - 6.488068068209147, - 6.518064148321635, - 6.551638031378121, - 6.589126072264712, - 6.630926797737466, - 6.677517337277336, - 6.729475692315749, - 6.7875115120662075, - 6.8525095858050085, - 6.925592913367839, - 7.008216967322767, - 7.10231568964351, - 7.210537520763363, - 7.336647554527113, - 7.486259440640751, - 7.668286297794943, - 7.898170505536063, - 8.206388534884265, - 8.66786186512231, - 9.582033809493971, - 11.212961776034506, - 9.765682398696569, - 9.194440421636541, - 8.83101055570175, - 8.563463521569311, - 8.35139921480944, - 8.175587072326902, - 8.025354932614617, - 7.894162305762161, - 7.7777107606323215, - 7.673024641777866, - 7.577959507283231, - 7.490919684225566, - 7.410686513163407, - 7.3363089934380366, - 7.267031460789567, - 7.202244201402638, - 7.141448794653019, - 7.084233211627138, - 7.0302535516294355, - 6.979220402989426, - 6.930888493183708, - 6.885048722544479, - 6.8415219542641985, - 6.800154118142586, - 6.760812310607922, - 6.723381659813907, - 6.687762785117289, - 6.65386972333099, - 6.621628225271724, - 6.590974348898742, - 6.561853292215012, - 6.534218421748659, - 6.508030462015381, - 6.483256818702307, - 6.459871013995787, - 6.4378522169226144, - 6.4171848550953055, - 6.397858297075985, - 6.379866596871548, - 6.363208293975677, - 6.347886263982076, - 6.333907616187924, - 6.321283635852538, - 6.310029769928748, - 6.300165656192654, - 6.291715196807437, - 6.284706678514822, - 6.279172942902638, - 6.275151611604001, - 6.272685372908081, - 6.271822338184086, - 6.272616478840024, - 6.27512815738603, - 6.279424769719887, - 6.285581520228061, - 6.293682357007843, - 6.303821101887204, - 6.316102819533842, - 6.330645482623332, - 6.347582006942318, - 6.367062753110631, - 6.3892586227588035, - 6.4143649201130435, - 6.442606210466509, - 6.474242493304341, - 6.5095771329506125, - 6.5489671743523, - 6.592836950058515, - 6.641696313709353, - 6.696165514046069, - 6.757009827539704, - 6.8251889228609555, - 6.901929165192484, - 6.988832956514501, - 7.088050480577709, - 7.202562140965336, - 7.33667012100202, - 7.496917668992095, - 7.693978717903972, - 7.947084627816515, - 8.296635347660061, - 8.85455910866037, - 10.289080121787993, - 10.095156017172862, - 9.358937264480891, - 8.936796620280022, - 8.638929795301099, - 8.408237456631307, - 8.2197384780474, - 8.060247444442835, - 7.921950385564968, - 7.79983439783582, - 7.690491823780005, - 7.591501543847458, - 7.50108239190232, - 7.4178866163049, - 7.340870532520161, - 7.269210146180716, - 7.202244201402638, - 7.139434610166573, - 7.080338264631078, - 7.024586518556064, - 6.971869965205448, - 6.9219269538132435, - 6.874534796601109, - 6.829502946013352, - 6.786667637430478, - 6.7458876375049925, - 6.707040837503836, - 6.670021500208613, - 6.6347380179010775, - 6.601111074149134, - 6.569072127731615, - 6.538562155932762, - 6.509530608531316, - 6.481934534440412, - 6.455737851059336, - 6.430910732641586, - 6.407429098843124, - 6.385274188437704, - 6.364432206228175, - 6.344894033634033, - 6.326654995439638, - 6.30971467685438, - 6.294076786451207, - 6.279749061781437, - 6.266743215567658, - 6.255074921400187, - 6.244763838848422, - 6.235833678886285, - 6.228312311560706, - 6.22223191894591, - 6.217629197671744, - 6.2145456167469355, - 6.213027738086244, - 6.2131276091790895, - 6.214903239816102, - 6.2184191778623195, - 6.223747202921255, - 6.2309671616279605, - 6.240167974588287, - 6.251448853123013, - 6.264920774643475, - 6.280708279615578, - 6.2989516719966865, - 6.319809730686047, - 6.343463074747599, - 6.370118374167322, - 6.400013667096977, - 6.4334251437948895, - 6.4706759023697815, - 6.51214739703565, - 6.558294627264169, - 6.609666626119053, - 6.666934620759242, - 6.730931579269921, - 6.8027091422659005, - 6.883621983735373, - 6.97545714657072, - 7.0806405740655824, - 7.202583691616601, - 7.346302116853768, - 7.519611487109653, - 7.735697849842119, - 8.019541947954313, - 8.428241749001177, - 9.151599318801969, - 10.673730158579882, - 9.585884741334345, - 9.073728730045591, - 8.734261018543464, - 8.479461901624296, - 8.275143112513085, - 8.104406799727244, - 7.957653445097173, - 7.828904578422153, - 7.714184554614002, - 7.610716192233378, - 7.516483686358615, - 7.429978296106239, - 7.350042131794664, - 7.275767870053247, - 7.206431969027417, - 7.141448794653019, - 7.080338264631078, - 7.022702497614082, - 6.968208620458209, - 6.916575884393495, - 6.867565858170217, - 6.820974858696517, - 6.776628035467196, - 6.734374695517333, - 6.694084571480899, - 6.655644815510203, - 6.618957558219829, - 6.5839379121059896, - 6.5505123280672946, - 6.518617235053367, - 6.488197908754084, - 6.4592075271682905, - 6.43160637993987, - 6.405361205285844, - 6.3804446337125595, - 6.3568347219174886, - 6.3345145635950315, - 6.313471966519165, - 6.293699187424117, - 6.275192717968063, - 6.257953116537763, - 6.241984881907273, - 6.227296365860164, - 6.213899722870287, - 6.201810895852314, - 6.191049637877048, - 6.181639570632381, - 6.173608281333818, - 6.166987460785197, - 6.161813086402099, - 6.158125655285344, - 6.155970473928643, - 6.155398012935805, - 6.1564643373022365, - 6.159231625504061, - 6.163768793995933, - 6.170152247959137, - 6.178466784553741, - 6.188806681907161, - 6.201277016162647, - 6.2159952608790965, - 6.233093239000429, - 6.252719519051745, - 6.275042376430118, - 6.30025348097706, - 6.328572528454625, - 6.360253113744783, - 6.395590259453766, - 6.434930184045948, - 6.478683149418357, - 6.527340620277947, - 6.58149858487641, - 6.641889884633698, - 6.709430065496044, - 6.7852841447186565, - 6.870966882379988, - 6.968498985711166, - 7.080661418126198, - 7.2114324881083105, - 7.36679221776461, - 7.556340578312335, - 7.796974794210053, - 8.122881452824817, - 8.622077582044184, - 9.697560994538424, - 12.706985717442723, - 9.920717727287835, - 9.25425509917947, - 8.854803240036825, - 8.567908336233652, - 8.343498273872427, - 8.158929166181652, - 8.002015879729218, - 7.865443956856094, - 7.744477598787557, - 7.635875096355908, - 7.537320660993046, - 7.4471030986882285, - 7.363922866979959, - 7.286770494284277, - 7.214846861645908, - 7.147509161855057, - 7.084233211627138, - 7.024586518556064, - 6.968208620458209, - 6.914796463310442, - 6.864093345791053, - 6.815880437074783, - 6.769970183183162, - 6.726201120893457, - 6.684433755479356, - 6.64454725281763, - 6.606436762239693, - 6.57001123322613, - 6.5351916226700215, - 6.501909413962102, - 6.470105387261269, - 6.43972859384079, - 6.410735497613458, - 6.383089254729591, - 6.3567591081439465, - 6.331719878717293, - 6.3079515380874325, - 6.285438851456873, - 6.264171080781948, - 6.24414174074748, - 6.225348401476483, - 6.2077925332363435, - 6.191479389524967, - 6.176417925903413, - 6.162620752827916, - 6.150104121559942, - 6.138887943030611, - 6.128995840335988, - 6.120455236373027, - 6.11329747902473, - 6.107558007303465, - 6.103276563005389, - 6.100497453767485, - 6.099269875014891, - 6.0996483002204105, - 6.101692951274089, - 6.105470363714913, - 6.111054065289956, - 6.118525391022444, - 6.127974464020098, - 6.139501379094108, - 6.153217636520117, - 6.169247886846318, - 6.18773206580905, - 6.208828022985142, - 6.232714781475497, - 6.259596612665958, - 6.2897081759824065, - 6.323321067837548, - 6.360752261248207, - 6.402375121307398, - 6.448633990339916, - 6.500063815198098, - 6.557317050936346, - 6.621201323657019, - 6.692733451186322, - 6.773219146204438, - 6.8643745871549715, - 6.968519357058157, - 7.088897771080588, - 7.230247052904034, - 7.399881917309936, - 7.609986606591964, - 7.883202994968608, - 8.269600102425274, - 8.923627672181164, - 11.698081755531529, - 10.49759367261454, - 9.50196587149224, - 9.009181124545336, - 8.67779139676323, - 8.427210697070729, - 8.22532676561299, - 8.056049738173742, - 7.910159743829661, - 7.781880081062333, - 7.667352107932335, - 7.563871041551146, - 7.469468170140076, - 7.382666613339323, - 7.302330721872994, - 7.227569090573964, - 7.157669798776024, - 7.092055827308053, - 7.0302535516294355, - 6.971869965205448, - 6.916575884393495, - 6.864093345791053, - 6.814186001885821, - 6.766651699893784, - 6.7213166761680805, - 6.678030963743982, - 6.636664723028358, - 6.597105283565748, - 6.559254739702266, - 6.523027982213112, - 6.488351076406313, - 6.455159918098508, - 6.423399114371196, - 6.393021047667016, - 6.363985090628188, - 6.33625694585737, - 6.309808090027158, - 6.284615305863426, - 6.260660288761391, - 6.237929317370247, - 6.216412979558074, - 6.196105946861626, - 6.1770067919254785, - 6.159117844612346, - 6.142445083476328, - 6.126998060178388, - 6.11278985522562, - 6.099837064164895, - 6.088159814086082, - 6.077781811017405, - 6.06873041955282, - 6.061036776867411, - 6.0547359441834825, - 6.0498670997845645, - 6.046473778881333, - 6.044604167067952, - 6.044311455839145, - 6.045654270757538, - 6.04869718548468, - 6.053511338173043, - 6.060175170868003, - 6.0687753178692185, - 6.079407675834352, - 6.092178697306029, - 6.107206961048297, - 6.1246250881435405, - 6.144582093732746, - 6.167246292772959, - 6.192808917468861, - 6.221488658956001, - 6.253537423760759, - 6.289247708019957, - 6.328962157630825, - 6.373086129994216, - 6.422104452043933, - 6.476604164118607, - 6.53730599887645, - 6.605108941579262, - 6.681154972576789, - 6.76692604306477, - 6.864394670349682, - 6.9762681787873975, - 7.106406495397008, - 7.260586364553196, - 7.448026478574518, - 7.684814329426074, - 8.003058648223837, - 8.48334080228574, - 9.467103415445111, - 12.400955091203484, - 9.870165320611221, - 9.212457477332364, - 8.815650537639382, - 8.529774617026044, - 8.305707991285761, - 8.121131187673623, - 7.9639997934558995, - 7.8270700887765665, - 7.705645571610944, - 7.596507980444436, - 7.49735627096485, - 7.406488885233682, - 7.322612754012821, - 7.244722831994123, - 7.172023051110578, - 7.10387270033167, - 7.039749010464943, - 6.979220402989426, - 6.9219269538132435, - 6.867565858170217, - 6.815880437074783, - 6.766651699893784, - 6.719691783495449, - 6.6748387904159765, - 6.631952684648293, - 6.590911997193048, - 6.551611158870164, - 6.513958324275791, - 6.477873584165083, - 6.443287487902952, - 6.41013981561465, - 6.378378553104347, - 6.347959032752738, - 6.318843211339033, - 6.290999061687612, - 6.264400059667524, - 6.239024751703259, - 6.214856390829749, - 6.191882631623231, - 6.170095276197703, - 6.149490064976664, - 6.130066507210824, - 6.11182774727596, - 6.094780463700153, - 6.0789347986757605, - 6.064304316542048, - 6.050905990407703, - 6.038760216744498, - 6.027890858448476, - 6.018325317557527, - 6.010094639559979, - 6.00323365205628, - 5.997781141477935, - 5.993780072664343, - 5.991277857397451, - 5.990326679557835, - 5.9909838864723275, - 5.993312458374876, - 5.997381570833578, - 6.003267268686766, - 6.011053274721106, - 6.020831962342887, - 6.032705529291725, - 6.046787419651486, - 6.063204054910034, - 6.082096952866124, - 6.103625337595489, - 6.127969377129394, - 6.155334231923476, - 6.185955162581927, - 6.220104038856453, - 6.258097728111506, - 6.30030904342335, - 6.347181237366222, - 6.39924750164949, - 6.457157686933611, - 6.521715692422899, - 6.5939330666370255, - 6.675108041194781, - 6.76694598948409, - 6.87175042523296, - 6.992740741345573, - 7.134613248369543, - 7.304610174146845, - 7.514773168509331, - 7.78741770831872, - 8.171660340596366, - 8.817464705495551, - 11.337009257271776, - 10.529800177357233, - 9.494420906439151, - 8.99230999455564, - 8.656458631061124, - 8.403078434392036, - 8.199152885711582, - 8.028237814274608, - 7.880945884457535, - 7.751410791283745, - 7.635721474369236, - 7.53114032383555, - 7.435676919848148, - 7.34783936334142, - 7.266481203980311, - 7.190702998912644, - 7.1197866589839425, - 7.053150295072674, - 6.990316335205783, - 6.930888493183708, - 6.874534796601109, - 6.820974858696517, - 6.769970183183162, - 6.7213166761680805, - 6.6748387904159765, - 6.630384894710312, - 6.58782357500502, - 6.547040652973141, - 6.507936763112289, - 6.470425369264639, - 6.434431130169037, - 6.3998885447643845, - 6.366740823629228, - 6.334938944701183, - 6.30444086033729, - 6.275210829605597, - 6.2472188549774215, - 6.220440206708011, - 6.194855021435159, - 6.170447964100959, - 6.14720794436801, - 6.1251278803765015, - 6.104204504062888, - 6.084438203404026, - 6.065832897917437, - 6.048395944582132, - 6.0321380720809, - 6.017073341933608, - 6.003219135717821, - 5.990596168180991, - 5.979228526659912, - 5.969143737859829, - 5.960372863731119, - 5.9529506289411875, - 5.946915583303057, - 5.94231030352519, - 5.939181639832895, - 5.937581014434535, - 5.93756478053501, - 5.939194652724518, - 5.942538222210043, - 5.947669573666601, - 5.9546700246740825, - 5.9636290140572425, - 5.97464517234863, - 5.987827616584307, - 6.003297523471119, - 6.021190050696755, - 6.041656697316637, - 6.064868222965797, - 6.091018285387405, - 6.120328011358612, - 6.15305179503119, - 6.189484731656555, - 6.2299722621581655, - 6.27492285514695, - 6.324824937898928, - 6.380269892487641, - 6.441983909751725, - 6.510873120862986, - 6.588089236246758, - 6.675127979516237, - 6.773982159970736, - 6.8873903502260525, - 7.019263162956376, - 7.175465069149421, - 7.365380216199755, - 7.605448272623405, - 7.928679991734879, - 8.418856803415995, - 9.442979736936502, - 9.928012933385174, - 9.227510770001533, - 8.815658292913344, - 8.52187189260837, - 8.29277376669609, - 8.104606066511554, - 7.94470278870893, - 7.8055075293924325, - 7.682149171464901, - 7.571304149452678, - 7.470604031428261, - 7.378302036375039, - 7.293073531354733, - 7.2138906956310835, - 7.139940545729321, - 7.0705694820409555, - 7.005244685688432, - 6.943526574318993, - 6.885048722544479, - 6.829502946013352, - 6.776628035467196, - 6.726201120893457, - 6.678030963743982, - 6.631952684648293, - 6.58782357500502, - 6.545519737503926, - 6.504933368078554, - 6.465970539593198, - 6.428549381939732, - 6.3925985782632075, - 6.358056115506667, - 6.324868241245565, - 6.292988589172191, - 6.262377443503048, - 6.2330011186655065, - 6.204831435339804, - 6.177845277626934, - 6.1520242190305305, - 6.127354207265693, - 6.103825299778081, - 6.08143144337686, - 6.060170292635613, - 6.040043062757965, - 6.02105441348842, - 6.003212361412873, - 5.9865282186692514, - 5.971016556703828, - 5.956695194286205, - 5.943585209556874, - 5.931710976445966, - 5.921100226390178, - 5.911784136908257, - 5.9037974492970715, - 5.8971786185071045, - 5.891969999179976, - 5.888218072920367, - 5.885973723179054, - 5.885292565704461, - 5.886235344456829, - 5.888868405275839, - 5.893264262586503, - 5.899502278202842, - 5.907669476091356, - 5.917861523123632, - 5.930183913843714, - 5.944753407747524, - 5.961699781429535, - 5.9811679764955725, - 6.003320749248501, - 6.028341962580228, - 6.056440708350443, - 6.087856516010215, - 6.122865999912953, - 6.16179143870921, - 6.205011989664066, - 6.2529785585593745, - 6.306233839551627, - 6.365439826654741, - 6.43141639170433, - 6.505196720611573, - 6.588109279562979, - 6.681903150812657, - 6.78894754422539, - 6.912565297439304, - 7.057625320210755, - 7.231680364473735, - 7.447391380501912, - 7.728509815819228, - 8.12840579251439, - 8.817654107091581, - 10.799635984660894, - 9.563273361688426, - 9.021872510201826, - 8.66895709868777, - 8.405849618168782, - 8.195509551644658, - 8.019951535926019, - 7.869070629449896, - 7.7366210286331, - 7.618471996244475, - 7.511749828768776, - 7.4143751935296445, - 7.324795553844149, - 7.241821604252644, - 7.164522683228028, - 7.092157354870048, - 7.024125860868878, - 6.9599366648137195, - 6.899182358432644, - 6.8415219542641985, - 6.786667637430478, - 6.734374695517333, - 6.684433755479356, - 6.636664723028358, - 6.590911997193048, - 6.547040652973141, - 6.504933368078554, - 6.464487928090699, - 6.4256151859896695, - 6.388237382075574, - 6.35228675234552, - 6.317704369716747, - 6.284439174722072, - 6.25244716156724, - 6.221690692521447, - 6.192137919076111, - 6.163762292560175, - 6.136542150239661, - 6.110460365574022, - 6.0855040534149945, - 6.061664322637849, - 6.038936070083514, - 6.017317810834536, - 5.99681154080415, - 5.977422628429765, - 5.959159732965472, - 5.942034747491536, - 5.926062765326999, - 5.91126206906567, - 5.897654141975446, - 5.885263702024515, - 5.874118759344122, - 5.864250698525519, - 5.8556943878001, - 5.848488317890753, - 5.84267477417847, - 5.8383000468362285, - 5.835414684786245, - 5.834073800792187, - 5.834337436776215, - 5.8362710006444, - 5.839945788635096, - 5.845439610635224, - 5.852837540256965, - 5.862232817027555, - 5.873727935223097, - 5.887435963235709, - 5.903482149690094, - 5.9220058889397125, - 5.943163140682632, - 5.967129428587563, - 5.994103584480244, - 6.0243124630245335, - 6.058016934920704, - 6.0955195868814025, - 6.137174733857503, - 6.1834016154899345, - 6.234702058618383, - 6.291684533937218, - 6.355097582963715, - 6.425877346287467, - 6.505216971456551, - 6.594671199513683, - 6.696319938834681, - 6.813035858883859, - 6.948947081732825, - 7.110295252866274, - 7.307179660317306, - 7.557578575390655, - 7.898524054199124, - 8.428683879139944, - 9.654523983074306, - 10.118530647838346, - 9.303397286723449, - 8.855741340598799, - 8.544225914933762, - 8.30438852538956, - 8.108906937132367, - 7.943617719503885, - 7.800225190574842, - 7.6734510302502414, - 7.559728780647726, - 7.45653603340763, - 7.362023573666573, - 7.274795889321608, - 7.193774476051642, - 7.118109077738486, - 7.047118008759418, - 6.980246826278126, - 6.917038974669249, - 6.8571144695491215, - 6.800154118142586, - 6.7458876375049925, - 6.694084571480899, - 6.64454725281763, - 6.597105283565748, - 6.551611158870164, - 6.507936763112289, - 6.465970539593198, - 6.4256151859896695, - 6.3867857644152615, - 6.34940814151824, - 6.313417693620877, - 6.278758226473241, - 6.24538107015515, - 6.213244317989022, - 6.182312184715801, - 6.152554464131802, - 6.123946070245603, - 6.096466649054337, - 6.070100250452626, - 6.044835051720705, - 6.020663125600722, - 5.99758024724581, - 5.975585735379836, - 5.954682323887237, - 5.934876060802081, - 5.916176232315637, - 5.89859530999895, - 5.882148919963484, - 5.866855833178848, - 5.852737976649546, - 5.839820465639974, - 5.828131657645578, - 5.81770322935617, - 5.808570278464676, - 5.800771452863679, - 5.794349110569572, - 5.789349514652239, - 5.785823068566926, - 5.783824598634526, - 5.783413692061281, - 5.784655100912194, - 5.787619224963306, - 5.792382689501066, - 5.7990290381058305, - 5.807649565512561, - 5.8183443221427, - 5.831223330340545, - 5.846408063414615, - 5.864033253253416, - 5.884249111948967, - 5.907224079540423, - 5.933148246655018, - 5.962237651912833, - 5.99473972621914, - 6.030940259931053, - 6.0711724208402, - 6.115828577586812, - 6.165376028593313, - 6.22037827588098, - 6.281524347814079, - 6.349670103945556, - 6.425897900331874, - 6.511605347536828, - 6.608642015035255, - 6.719528942391538, - 6.847829526605166, - 6.998817376721592, - 7.180781865638972, - 7.407878579291094, - 7.707420445550775, - 8.143859273266981, - 8.948520135082832, - 11.668628131180109, - 9.728074916892567, - 9.103210618489491, - 8.717331243072083, - 8.436370901041347, - 8.214702534871035, - 8.031219161526648, - 7.874407697276347, - 7.737293621882403, - 7.6153310762266395, - 7.505392397439408, - 7.405234057476009, - 7.313192554686812, - 7.228000812095709, - 7.1486719672594425, - 7.074422892485019, - 7.004622186357296, - 6.938753805487974, - 6.876391013615927, - 6.817177325834118, - 6.760812310607922, - 6.707040837503836, - 6.655644815510203, - 6.606436762239693, - 6.559254739702266, - 6.513958324275791, - 6.470425369264639, - 6.428549381939732, - 6.388237382075574, - 6.34940814151824, - 6.3119907280609375, - 6.275923294448977, - 6.241152066447021, - 6.207630493801622, - 6.175318535480797, - 6.144182056381457, - 6.114192317205023, - 6.0853255427318365, - 6.057562556511334, - 6.030888472202476, - 6.005292433578349, - 5.980767396649805, - 5.957309948541182, - 5.9349201587254585, - 5.913601459042589, - 5.89336054961986, - 5.874207328416517, - 5.856154842650971, - 5.839219260858708, - 5.823419864790468, - 5.80877906081044, - 5.795322410908837, - 5.783078683918472, - 5.772079928037531, - 5.762361566329187, - 5.75396251751394, - 5.746925345117233, - 5.741296438912841, - 5.737126233648268, - 5.734469471297965, - 5.733385514622172, - 5.733938721688896, - 5.736198893342779, - 5.740241808507146, - 5.746149865858013, - 5.7540128550447385, - 5.763928886569605, - 5.776005517115461, - 5.790361117135426, - 5.807126540748142, - 5.82644717563586, - 5.8484854744808015, - 5.873424102072634, - 5.901469877401162, - 5.932858753588114, - 5.967862169286516, - 6.006795237099385, - 6.050027429925131, - 6.097996721473879, - 6.151228594062732, - 6.210362051927704, - 6.276185963031843, - 6.349691052827242, - 6.432146381464823, - 6.525215563712687, - 6.63114039282305, - 6.753044983301793, - 6.895469878521174, - 7.065382573164228, - 7.274287484124868, - 7.543281365989031, - 7.917979581110967, - 8.532435006053245, - 10.463339431393358, - 10.548457214023939, - 9.45680221849301, - 8.941789640711969, - 8.59954466458989, - 8.341946689547145, - 8.134778167178203, - 7.96112853135068, - 7.811391040189838, - 7.679582221594904, - 7.561722442418219, - 7.4550310275476575, - 7.357488923141785, - 7.267584253369658, - 7.184156034067085, - 7.106293843979039, - 7.033271012355651, - 6.964498726972433, - 6.89949366545202, - 6.837854635260651, - 6.779245373964524, - 6.723381659813907, - 6.670021500208613, - 6.618957558219829, - 6.57001123322613, - 6.523027982213112, - 6.477873584165083, - 6.434431130169037, - 6.3925985782632075, - 6.35228675234552, - 6.313417693620877, - 6.275923294448977, - 6.239744160317013, - 6.204828657557864, - 6.171132113447098, - 6.138616142205321, - 6.107248075752174, - 6.077000482198687, - 6.047850758313929, - 6.019780784771988, - 5.992776635034748, - 5.966828330373409, - 5.941929634867727, - 5.918077885315785, - 5.895273851892597, - 5.8735216261551635, - 5.852828533638497, - 5.833205068848961, - 5.814664850960692, - 5.797224598977303, - 5.780904125551546, - 5.765726349075881, - 5.751717324081936, - 5.738906290431748, - 5.727325742264347, - 5.7170115181949, - 5.708002914870088, - 5.7003428266856195, - 5.6940779152973935, - 5.689258813540932, - 5.685940369556476, - 5.684181938353479, - 5.684047729806941, - 5.685607224249021, - 5.688935669520356, - 5.694114676733373, - 5.701232936284952, - 5.710387081123628, - 5.721682731318491, - 5.735235763135788, - 5.751173857865213, - 5.769638401630033, - 5.790786828912979, - 5.8147955317900495, - 5.84186349722132, - 5.872216891207874, - 5.9061148888344155, - 5.943857165083192, - 5.98579363175052, - 6.032337261600573, - 6.083981233400198, - 6.141322248820996, - 6.205092870506562, - 6.276207396619768, - 6.35582866946748, - 6.445468414381043, - 6.547143550103151, - 6.663630669802362, - 6.798903428883541, - 6.95893748965198, - 7.153330027928917, - 7.39898037502964, - 7.730093276669034, - 8.234775093965432, - 9.316885428607113, - 10.050000443848349, - 9.251195590528193, - 8.807724769968424, - 8.497781945610306, - 8.258518726649454, - 8.063116392374551, - 7.897619128936834, - 7.7538322517105795, - 7.626532275920293, - 7.5121849195797035, - 7.408287755433538, - 7.313004505584079, - 7.224948289915386, - 7.143046480611386, - 7.066452864504867, - 6.994488537508778, - 6.926600944888331, - 6.862334769749539, - 6.8013107833437365, - 6.743210181425005, - 6.687762785117289, - 6.6347380179010775, - 6.5839379121059896, - 6.5351916226700215, - 6.488351076406313, - 6.443287487902952, - 6.3998885447643845, - 6.358056115506667, - 6.317704369716747, - 6.278758226473241, - 6.241152066447021, - 6.204828657557864, - 6.169738254941491, - 6.135837844247445, - 6.103090503628127, - 6.0714648646844465, - 6.040934656460421, - 6.011478319588484, - 5.983078680072398, - 5.955722674099751, - 5.929401116809677, - 5.904108509186677, - 5.879842878271833, - 5.856605646727881, - 5.834401528503637, - 5.813238447947386, - 5.7931274802433865, - 5.774082811511955, - 5.756121717339698, - 5.739264558908487, - 5.723534796284573, - 5.7089590188269606, - 5.6955669930911945, - 5.683391729056177, - 5.672469566003715, - 5.6628402799522535, - 5.654547215208893, - 5.647637443383821, - 5.642161954139965, - 5.6381758830677775, - 5.635738783430057, - 5.634914950178288, - 5.635773806682503, - 5.638390367148731, - 5.6428457908647385, - 5.649228048406703, - 5.65763272501523, - 5.668163992861741, - 5.680935792363435, - 5.6960732737482695, - 5.713714564683812, - 5.7340129493433984, - 5.757139570788493, - 5.783286804936481, - 5.812672505049158, - 5.845545387288397, - 5.882191930761138, - 5.9229453159076835, - 5.968197149373525, - 6.0184130651537195, - 6.074153824787023, - 6.136104393398165, - 6.205114878796448, - 6.282259631812576, - 6.3689250944073, - 6.466944971320098, - 6.578817023270917, - 6.708068828914342, - 6.8599152037097015, - 7.042540281165506, - 7.269887539018811, - 7.56876168669242, - 8.001995559331103, - 8.791378344701902, - 11.946874118367282, - 9.731585047373871, - 9.087484820940942, - 8.694115973126966, - 8.408898042638974, - 8.184307391861369, - 7.998574359250706, - 7.8398937207855734, - 7.7011419073206575, - 7.57768886473821, - 7.466355617877277, - 7.364865447910468, - 7.271532314333929, - 7.185073192693387, - 7.10448952603683, - 7.02898933298206, - 6.957934311807792, - 6.890802895290045, - 6.8271638136559, - 6.766656773714519, - 6.708978074801631, - 6.65386972333099, - 6.601111074149134, - 6.5505123280672946, - 6.501909413962102, - 6.455159918098508, - 6.41013981561465, - 6.366740823629228, - 6.324868241245565, - 6.284439174722072, - 6.24538107015515, - 6.207630493801622, - 6.171132113447098, - 6.135837844247445, - 6.101706130105897, - 6.068701337519101, - 6.036793243378151, - 6.005956601769992, - 5.976170777628946, - 5.94741943731443, - 5.919690287971682, - 5.892974858967536, - 5.867268319859607, - 5.84256933031347, - 5.818879918174566, - 5.796205382566036, - 5.774554219449409, - 5.753938067576074, - 5.734371673193495, - 5.715872872268284, - 5.698462589363931, - 5.682164852678012, - 5.667006825115923, - 5.653018851669138, - 5.640234523790145, - 5.628690761929344, - 5.618427917939058, - 5.609489899677084, - 5.601924320881625, - 5.595782680270751, - 5.591120574879947, - 5.587997953937034, - 5.586479421144034, - 5.586634595166534, - 5.58853854052196, - 5.592272284040204, - 5.597923435817658, - 5.605586938334815, - 5.615365973478869, - 5.627373065048587, - 5.641731424534688, - 5.658576601432743, - 5.678058517294296, - 5.700343986942811, - 5.725619863392112, - 5.754096988899324, - 5.786015199145972, - 5.821649719824184, - 5.861319429117012, - 5.905397658482071, - 5.954326505180287, - 6.008636096204129, - 6.068970984185978, - 6.136127068177206, - 6.2111044825824155, - 6.295185499870685, - 6.390053107676846, - 6.497978717106567, - 6.622133803652239, - 6.76713880872349, - 6.940105669553077, - 7.152826066716027, - 7.427054327828024, - 7.81029710428024, - 8.44511641702159, - 10.65195303459715, - 10.769208001639795, - 9.501026524351156, - 8.953030962812276, - 8.59648066878846, - 8.33065347599019, - 8.11797659495075, - 7.940263983679311, - 7.787317667276274, - 7.65284238654328, - 7.53267833362781, - 7.423933301068676, - 7.324515365792932, - 7.232862911553588, - 7.1477797366832565, - 7.068329692080636, - 6.993766789799825, - 6.923487354869576, - 6.856996372904708, - 6.793883263803953, - 6.733804082947324, - 6.676468208532177, - 6.621628225271724, - 6.569072127731615, - 6.518617235053367, - 6.470105387261269, - 6.423399114371196, - 6.378378553104347, - 6.334938944701183, - 6.292988589172191, - 6.25244716156724, - 6.213244317989022, - 6.175318535480797, - 6.138616142205321, - 6.103090503628127, - 6.068701337519101, - 6.03541413605833, - 6.00319967758448, - 5.972033613854598, - 5.9418961213128, - 5.912771606954928, - 5.8846484610497285, - 5.857518850326954, - 5.831378546340356, - 5.806226784613448, - 5.782066150921291, - 5.758902491686179, - 5.736744845996413, - 5.715605397217694, - 5.695499442574778, - 5.676445379453242, - 5.658464707521912, - 5.6415820461191934, - 5.62582516669441, - 5.611225040461253, - 5.5978159018187945, - 5.5856353285412, - 5.574724340247579, - 5.565127517258215, - 5.556893142646245, - 5.550073371133329, - 5.544724429488945, - 5.5409068543194255, - 5.538685774630246, - 5.538131248384249, - 5.53931866455185, - 5.542329224977991, - 5.5472505239356495, - 5.554177247713691, - 5.563212022291666, - 5.5744664444897305, - 5.588062341509202, - 5.60413331628638, - 5.622826652689641, - 5.644305676910836, - 5.66875270179151, - 5.696372722769945, - 5.727398092884968, - 5.762094487862688, - 5.800768593284295, - 5.843778124173495, - 5.8915450556506554, - 5.94457335613318, - 6.003473165876802, - 6.068994420566188, - 6.14207469043563, - 6.223909082762904, - 6.316055635133315, - 6.420600258748686, - 6.540426786146044, - 6.679684375404075, - 6.844655466038149, - 7.045523163606421, - 7.300456725573346, - 7.647010391802963, - 8.185886200813792, - 9.445803811307702, - 10.266673774077319, - 9.323061148853096, - 8.840322719801458, - 8.511750825311521, - 8.261402805128116, - 8.058501781103278, - 7.887484559431545, - 7.7393799734183615, - 7.608543283221087, - 7.491191711573201, - 7.384666618295976, - 7.2870284654664195, - 7.196819265906449, - 7.112915723675461, - 7.034434451993937, - 6.960668571062896, - 6.8910439920499975, - 6.825088481699421, - 6.762409272831938, - 6.702676537844013, - 6.645610976451041, - 6.590974348898742, - 6.538562155932762, - 6.488197908754084, - 6.43972859384079, - 6.393021047667016, - 6.347959032752738, - 6.30444086033729, - 6.262377443503048, - 6.221690692521447, - 6.182312184715801, - 6.144182056381457, - 6.107248075752174, - 6.0714648646844465, - 6.036793243378151, - 6.00319967758448, - 5.9706558117478625, - 5.9391380746634885, - 5.908627346709602, - 5.879108679685813, - 5.85057106186926, - 5.823007222176349, - 5.7964134683552, - 5.770789554984517, - 5.746138577758338, - 5.722466891125222, - 5.699784046850441, - 5.678102751501953, - 5.657438841243098, - 5.637811272662552, - 5.619242128698979, - 5.601756639037035, - 5.58538321467544, - 5.57015349670971, - 5.5561024197452475, - 5.54326829077578, - 5.5316928848442375, - 5.521421559367437, - 5.512503389675211, - 5.504991329116381, - 5.49894239805171, - 5.494417907229461, - 5.491483722474774, - 5.490210579386758, - 5.4906744589132055, - 5.492957037375407, - 5.49714622789403, - 5.5033368344219324, - 5.511631344992321, - 5.522140897712616, - 5.534986461990648, - 5.550300289192013, - 5.568227702418764, - 5.588929315839577, - 5.612583802127597, - 5.6393913652299466, - 5.669578129631806, - 5.703401733699073, - 5.741158524785736, - 5.783192915327668, - 5.8299097008953105, - 5.881790510990234, - 5.939416143034826, - 6.003497463773222, - 6.074919113734661, - 6.154802920781549, - 6.244602716498184, - 6.3462512525311485, - 6.462397830596672, - 6.596813436220909, - 6.755128681967156, - 6.9462984064991975, - 7.185867425037162, - 7.504592352116489, - 7.978393891327557, - 8.913956453108614, - 9.951620998259468, - 9.18043140176092, - 8.74454548282054, - 8.437742679690517, - 8.199907178934895, - 8.005084100365682, - 7.8396765939493065, - 7.695665585910459, - 7.567923411747877, - 7.4529723033370345, - 7.348345139133193, - 7.2522286739008965, - 7.163251550353123, - 7.080351853420779, - 7.002690881540224, - 6.929595040968465, - 6.860515529933841, - 6.794999654647934, - 6.732669971169646, - 6.6732088253582225, - 6.616346698961869, - 6.561853292215012, - 6.509530608531316, - 6.4592075271682905, - 6.410735497613458, - 6.363985090628188, - 6.318843211339033, - 6.275210829605597, - 6.2330011186655065, - 6.192137919076111, - 6.152554464131802, - 6.114192317205023, - 6.077000482198687, - 6.040934656460421, - 6.005956601769992, - 5.972033613854598, - 5.9391380746634885, - 5.907247074600737, - 5.87634209426304, - 5.8464087371002, - 5.81743650591645, - 5.789418617342312, - 5.762351849391737, - 5.736236418026285, - 5.711075879314995, - 5.686877054335689, - 5.663649974434917, - 5.641407844869971, - 5.620167025214081, - 5.599947025229994, - 5.5807705152210145, - 5.5626633501645975, - 5.545654607234276, - 5.529776636633394, - 5.515065126012237, - 5.501559179133238, - 5.489301409903409, - 5.4783380534280095, - 5.468719096377034, - 5.460498429723073, - 5.453734027838083, - 5.448488159067519, - 5.444827634283536, - 5.442824101617759, - 5.442554397670499, - 5.44410096809309, - 5.447552373683557, - 5.453003902209617, - 5.460558311329417, - 5.4703267345638755, - 5.482429790761119, - 5.4969989485491855, - 5.514178211839674, - 5.53412621187164, - 5.557018817529805, - 5.583052411615159, - 5.612448030694016, - 5.645456636641302, - 5.682365889136439, - 5.723508936117115, - 5.769275959273386, - 5.820129546585512, - 5.876625485866965, - 5.939441408650769, - 6.009417091517807, - 6.0876125734101185, - 6.175394422150956, - 6.274568243653936, - 6.387590758409261, - 6.517926683028831, - 6.670688112567043, - 6.8538761850111, - 7.081067616747409, - 7.378195140651342, - 7.805350614830336, - 8.568729150190505, - 12.340283345775061, - 9.727282541781781, - 9.06342248273116, - 8.662441439045596, - 8.37285484990348, - 8.145216110489436, - 7.957092691334003, - 7.796389364934967, - 7.655835284142213, - 7.5307174183608385, - 7.417806274698291, - 7.314792442187488, - 7.219967635543779, - 7.1320330333883515, - 7.049978431762953, - 6.9730029671381555, - 6.900461351499753, - 6.831826363048986, - 6.766662032042924, - 6.704604061351365, - 6.645345261144913, - 6.588624533921296, - 6.534218421748659, - 6.481934534440412, - 6.43160637993987, - 6.383089254729591, - 6.33625694585737, - 6.290999061687612, - 6.2472188549774215, - 6.204831435339804, - 6.163762292560175, - 6.123946070245603, - 6.0853255427318365, - 6.047850758313929, - 6.011478319588484, - 5.976170777628946, - 5.9418961213128, - 5.908627346709602, - 5.87634209426304, - 5.845022343737357, - 5.814654158682319, - 5.7852274736022835, - 5.756735918170811, - 5.729176673771574, - 5.702550358415095, - 5.676860936714919, - 5.6521156521350315, - 5.628324979165756, - 5.605502593467219, - 5.583665358353989, - 5.562833326295838, - 5.543029754390728, - 5.524281133039111, - 5.506617227325632, - 5.490071130907523, - 5.474679332531593, - 5.4604817956681675, - 5.447522052176975, - 5.4358473114254995, - 5.425508586886991, - 5.416560842979291, - 5.409063165798873, - 5.40307896249593, - 5.398676195374534, - 5.395927658447794, - 5.394911306209418, - 5.395710646900956, - 5.3984152156901954, - 5.403121147106257, - 5.409931871036839, - 5.418958962904442, - 5.430323186744496, - 5.444155780427898, - 5.460600046076927, - 5.479813327065751, - 5.501969477682935, - 5.527261965218021, - 5.555907790871819, - 5.58815248146742, - 5.624276497681171, - 5.6646035409133155, - 5.709511443242558, - 5.759446631405397, - 5.814943630980794, - 5.876651833240688, - 5.945372986388262, - 6.0221149723343235, - 6.108171125508663, - 6.205241150511397, - 6.315622883174386, - 6.442531372413668, - 6.590662485659455, - 6.767267358763792, - 6.984419149498678, - 7.2645261654106426, - 7.65700886245473, - 8.313324016455482, - 10.919709353340108, - 11.129668371334065, - 9.5572314488619, - 8.96604778619637, - 8.59171672642945, - 8.315886277644712, - 8.096590002547934, - 7.9140247730003015, - 7.757257625167497, - 7.619610831299797, - 7.49670567822349, - 7.385515424567111, - 7.283860733869207, - 7.1901205740883976, - 7.103056810143572, - 7.021702729430696, - 6.945289430235229, - 6.873195620186333, - 6.80491242525189, - 6.740018128465665, - 6.678159657462834, - 6.619038768886743, - 6.562401570795939, - 6.508030462015381, - 6.455737851059336, - 6.405361205285844, - 6.3567591081439465, - 6.309808090027158, - 6.264400059667524, - 6.220440206708011, - 6.177845277626934, - 6.136542150239661, - 6.096466649054337, - 6.057562556511334, - 6.019780784771988, - 5.983078680072398, - 5.94741943731443, - 5.912771606954928, - 5.879108679685813, - 5.8464087371002, - 5.814654158682319, - 5.783831377168462, - 5.753930675698346, - 5.724946021284055, - 5.696874930023419, - 5.669718360219799, - 5.643480630175255, - 5.61816935792621, - 5.593795420612119, - 5.570372931526786, - 5.547919233214172, - 5.526454905249742, - 5.506003785606878, - 5.48659300475756, - 5.468253031909254, - 5.451017733047727, - 5.434924440751624, - 5.420014036083276, - 5.406331043257923, - 5.393923738268951, - 5.382844273222081, - 5.373148818832945, - 5.364897728401585, - 5.358155727632719, - 5.352992135969474, - 5.34948112670989, - 5.347702035155033, - 5.347739726491312, - 5.349685038163321, - 5.3536353153132215, - 5.3596950626709425, - 5.367976742378483, - 5.378601755036814, - 5.391701651354357, - 5.407419634967302, - 5.425912434458809, - 5.447352646009615, - 5.471931679932746, - 5.49986348824559, - 5.531389311948075, - 5.566783774307595, - 5.606362773509342, - 5.650493815793582, - 5.699609713492151, - 5.754227009683625, - 5.814971183644808, - 5.882611819574633, - 5.95811282020712, - 6.042706064849769, - 6.13800296396514, - 6.2461699789004195, - 6.370217864663371, - 6.514506406376284, - 6.685691655697739, - 6.894682366664024, - 7.161255155931882, - 7.527347897564927, - 8.111282263826855, - 9.677428158417456, - 10.63665563337554, - 9.42382514099217, - 8.884381364275177, - 8.530708352538841, - 8.265921282899345, - 8.053447761883225, - 7.875477406421717, - 7.7219845761715415, - 7.586763853941404, - 7.4657065843597925, - 7.355951583715458, - 7.255426625839733, - 7.162583011276201, - 7.076233187498269, - 6.995446853189897, - 6.919481962169202, - 6.847737443160804, - 6.779719919654081, - 6.7150197346134055, - 6.653293325244027, - 6.5942500330910345, - 6.537642076391383, - 6.483256818702307, - 6.430910732641586, - 6.3804446337125595, - 6.331719878717293, - 6.284615305863426, - 6.239024751703259, - 6.194855021435159, - 6.1520242190305305, - 6.110460365574022, - 6.070100250452626, - 6.030888472202476, - 5.992776635034748, - 5.955722674099751, - 5.919690287971682, - 5.8846484610497285, - 5.85057106186926, - 5.81743650591645, - 5.7852274736022835, - 5.753930675698346, - 5.723536659858387, - 5.694039652916411, - 5.665437434517368, - 5.6377312383424405, - 5.610925677770106, - 5.585028693292779, - 5.5600515194082325, - 5.536008669042588, - 5.512917933852521, - 5.490800399011561, - 5.469680471321112, - 5.449585919712643, - 5.430547927434856, - 5.412601155460853, - 5.395783816918105, - 5.380137762653125, - 5.365708578409503, - 5.352545694541416, - 5.340702509727222, - 5.330236530815795, - 5.321209531763365, - 5.313687735639454, - 5.307742024943733, - 5.303448187039754, - 5.300887203449556, - 5.300145594158445, - 5.301315831072535, - 5.304496838511304, - 5.309794603314998, - 5.317322923088011, - 5.327204328676669, - 5.33957122673803, - 5.354567320962692, - 5.372349387262465, - 5.393089500602001, - 5.416977841451286, - 5.444226251490369, - 5.475072766371816, - 5.509787435950972, - 5.548679861777296, - 5.592109057475034, - 5.640496501998528, - 5.694343662252668, - 5.754255902488271, - 5.820975737131674, - 5.895430123250891, - 5.978799508459253, - 6.072621817159488, - 6.17895495776699, - 6.300642415300224, - 6.441771958277909, - 6.6085251488304095, - 6.8109010470036955, - 7.066680992406679, - 7.412406151521593, - 7.944928250748371, - 9.151829044916632, - 10.337863363592813, - 9.317230341090278, - 8.815733767601717, - 8.478185602579348, - 8.222254270781676, - 8.015330465026802, - 7.841127137019367, - 7.690329245714738, - 7.557107421430677, - 7.437570610883104, - 7.32899224418966, - 7.229387803659479, - 7.137268154161124, - 7.051487585459474, - 6.971146025685492, - 6.895523789461767, - 6.824036680301518, - 6.756204276197551, - 6.691627012297368, - 6.629969288171279, - 6.570946796110622, - 6.514316867175043, - 6.459871013995787, - 6.407429098843124, - 6.3568347219174886, - 6.3079515380874325, - 6.260660288761391, - 6.214856390829749, - 6.170447964100959, - 6.127354207265693, - 6.0855040534149945, - 6.044835051720705, - 6.005292433578349, - 5.966828330373409, - 5.929401116809677, - 5.892974858967536, - 5.857518850326954, - 5.823007222176349, - 5.789418617342312, - 5.756735918170811, - 5.724946021284055, - 5.694039652916411, - 5.664011219664682, - 5.634858690324189, - 5.606583505162735, - 5.579190509541017, - 5.552687909245704, - 5.5270872452804465, - 5.5024033861774795, - 5.478654536162617, - 5.455862257741953, - 5.434051507491263, - 5.413250684030196, - 5.393491687364175, - 5.374809988989596, - 5.3572447123952935, - 5.340838723870154, - 5.325638733859663, - 5.311695409522757, - 5.299063499647108, - 5.287801973713131, - 5.277974177686584, - 5.269648010105598, - 5.262896123257463, - 5.257796155771555, - 5.254431004859678, - 5.252889148805225, - 5.253265033254843, - 5.255659538553773, - 5.26018054999078, - 5.266943658653412, - 5.276073028011477, - 5.287702470862821, - 5.301976793616496, - 5.319053481087974, - 5.339104816530257, - 5.362320560702635, - 5.388911353615462, - 5.419113058043051, - 5.453192342397788, - 5.491453913675816, - 5.534249977298726, - 5.581992749649515, - 5.635171230682983, - 5.694374043409136, - 5.760321114987777, - 5.8339085867034655, - 5.916274123944717, - 6.008894805486449, - 6.113739226394056, - 6.233514352244992, - 6.3720881702925105, - 6.535263773134519, - 6.732326990025052, - 6.97953301984572, - 7.309456997455404, - 7.804394345444991, - 8.819495575133688, - 10.13344075354689, - 9.231462865617507, - 8.758207003875233, - 8.433226018859473, - 8.184338950561003, - 7.981875647322399, - 7.810715106340524, - 7.662097031688134, - 7.530489620709562, - 7.412175716832792, - 7.3045371356787605, - 7.205660391737773, - 7.114104811495368, - 7.028758851808199, - 6.948747195648327, - 6.873368508517661, - 6.802052463895382, - 6.734329297504025, - 6.669807750156817, - 6.608158772370599, - 6.549103276374936, - 6.492402788446904, - 6.4378522169226144, - 6.385274188437704, - 6.3345145635950315, - 6.285438851456873, - 6.237929317370247, - 6.191882631623231, - 6.14720794436801, - 6.103825299778081, - 6.061664322637849, - 6.020663125600722, - 5.980767396649805, - 5.941929634867727, - 5.904108509186677, - 5.867268319859607, - 5.831378546340356, - 5.7964134683552, - 5.762351849391737, - 5.729176673771574, - 5.696874930023419, - 5.665437434517368, - 5.634858690324189, - 5.60513677707515, - 5.576273268256979, - 5.548273172913534, - 5.521144899164632, - 5.494900237313063, - 5.469554360609222, - 5.445125841992859, - 5.421636685345407, - 5.3991123699755414, - 5.377581907236041, - 5.357077908342674, - 5.337636662647835, - 5.319298225825863, - 5.302106517668265, - 5.286109429482477, - 5.271358941457175, - 5.257911250824022, - 5.245826912237821, - 5.235170992547582, - 5.226013243079758, - 5.218428293749971, - 5.212495874819673, - 5.208301073991654, - 5.205934638883889, - 5.205493337849761, - 5.207080395773064, - 5.210806026053856, - 5.216788085777968, - 5.225152888384936, - 5.236036217508966, - 5.249584597756333, - 5.2659568939836365, - 5.2853263315722385, - 5.307883058326038, - 5.333837407020159, - 5.363424070907499, - 5.396907479689215, - 5.43458877151749, - 5.476814914871304, - 5.523990770736301, - 5.576595247106174, - 5.63520326408753, - 5.700516159141123, - 5.773404674105496, - 5.854971264259457, - 5.946643119737772, - 6.050316013371704, - 6.168586399023466, - 6.305145936786291, - 6.465497453546943, - 6.658369105522987, - 6.898846929780182, - 7.216563642059105, - 7.683660675733759, - 8.580544114744155, - 9.986434802943256, - 9.16267004053137, - 8.710437849135682, - 8.395135136200576, - 8.151753320175986, - 7.952798844111149, - 7.7840360594331575, - 7.6371325746655465, - 7.506788635976582, - 7.389423781973565, - 7.282505543264623, - 7.184176871258881, - 7.093035735478784, - 7.007997912492418, - 6.9282079189734045, - 6.85297914300091, - 6.781752393369661, - 6.714066462443162, - 6.649536754762482, - 6.587839469068467, - 6.528699689696866, - 6.471882284732373, - 6.4171848550953055, - 6.364432206228175, - 6.313471966519165, - 6.264171080781948, - 6.216412979558074, - 6.170095276197703, - 6.1251278803765015, - 6.08143144337686, - 6.038936070083514, - 5.99758024724581, - 5.957309948541182, - 5.918077885315785, - 5.879842878271833, - 5.84256933031347, - 5.806226784613448, - 5.770789554984517, - 5.736236418026285, - 5.702550358415095, - 5.669718360219799, - 5.6377312383424405, - 5.606583505162735, - 5.576273268256979, - 5.546802155703394, - 5.518175266006221, - 5.490401140093495, - 5.463491753187327, - 5.437462524626203, - 5.412332343949597, - 5.388123611747756, - 5.364862293944834, - 5.342577988332144, - 5.321304002311085, - 5.30107744095408, - 5.281939304659548, - 5.263934595878647, - 5.247112434644509, - 5.231526182959584, - 5.217233578517706, - 5.204296878783633, - 5.1927830171584795, - 5.182763773866133, - 5.174315965353083, - 5.16752165746237, - 5.1624684094953315, - 5.15924955860353, - 5.157964556872444, - 5.158719377114694, - 5.161627007974489, - 5.166808064710454, - 5.174391549313859, - 5.184515802906487, - 5.197329705308759, - 5.212994192215088, - 5.231684180916235, - 5.253591022948871, - 5.278925639365921, - 5.307922545917092, - 5.3408450480370355, - 5.377991989606103, - 5.419706591509093, - 5.466388142804263, - 5.5185076531121355, - 5.5766291150171385, - 5.641438892128234, - 5.713787182296801, - 5.794747960501703, - 5.885708180009104, - 5.988505174484017, - 6.105647303897587, - 6.24068681525036, - 6.398891472016369, - 6.588558260413254, - 6.823884394476792, - 7.132322371289635, - 7.578837511673922, - 8.397987996054603, - 9.87931404660717, - 9.108289078869458, - 8.671442399918583, - 8.363393178618582, - 8.124175166370177, - 7.9278802322397155, - 7.76093019922363, - 7.615314383025149, - 7.485908987642875, - 7.369237852780703, - 7.262834216486461, - 7.164884445076987, - 7.074016311276948, - 6.989166699242966, - 6.909495465386645, - 6.834327388066513, - 6.763111887201548, - 6.695394363715704, - 6.630795357361848, - 6.568995097901116, - 6.50972185939131, - 6.45274304905864, - 6.397858297075985, - 6.344894033634033, - 6.293699187424117, - 6.24414174074748, - 6.196105946861626, - 6.149490064976664, - 6.104204504062888, - 6.060170292635613, - 6.017317810834536, - 5.975585735379836, - 5.9349201587254585, - 5.895273851892597, - 5.856605646727881, - 5.818879918174566, - 5.782066150921291, - 5.746138577758338, - 5.711075879314995, - 5.676860936714919, - 5.643480630175255, - 5.610925677770106, - 5.579190509541017, - 5.548273172913534, - 5.518175266006221, - 5.4889018959252756, - 5.4604616595467705, - 5.432866644617713, - 5.406132449271561, - 5.380278218266254, - 5.355326694424312, - 5.331304283895677, - 5.308241133984685, - 5.286171222393639, - 5.265132456848157, - 5.245166784197043, - 5.226320308236627, - 5.208643415714457, - 5.192190910240746, - 5.177022154203658, - 5.163201219276496, - 5.150797046757441, - 5.1398836198392885, - 5.1305401510196145, - 5.122851289294021, - 5.116907353602621, - 5.112804601316222, - 5.110645543469508, - 5.110539322120605, - 5.112602169828016, - 5.116957977035456, - 5.123739000475481, - 5.133086755001046, - 5.145153143167689, - 5.160101892323472, - 5.178110389224122, - 5.19937202918462, - 5.224099233333373, - 5.252527337900728, - 5.284919630135681, - 5.321573906466254, - 5.362831075809891, - 5.409086550186972, - 5.46080549846281, - 5.518543559264851, - 5.582975442136411, - 5.654935220466597, - 5.735474466329999, - 5.825948544183692, - 5.928149126408953, - 6.044516196090588, - 6.178494651190587, - 6.335172920881549, - 6.522522632957203, - 6.754079659749345, - 7.055707039523428, - 7.487323618323547, - 8.254261089809718, - 9.802653014072776, - 9.066598566000891, - 8.640518750174667, - 8.33761913257087, - 8.101364833017143, - 7.906954969407665, - 7.741277178821432, - 7.59655081025016, - 7.467778685227409, - 7.3515600385093185, - 7.245475759885531, - 7.14774377110176, - 7.057013536306798, - 6.972237310304066, - 6.892586116326221, - 6.81739301408481, - 6.746113669813945, - 6.678298261153923, - 6.613571020954492, - 6.551615058096639, - 6.492160904057829, - 6.434977741437594, - 6.379866596871548, - 6.326654995439638, - 6.275192717968063, - 6.225348401476483, - 6.1770067919254785, - 6.130066507210824, - 6.084438203404026, - 6.040043062757965, - 5.99681154080415, - 5.954682323887237, - 5.913601459042589, - 5.8735216261551635, - 5.834401528503637, - 5.796205382566036, - 5.758902491686179, - 5.722466891125222, - 5.686877054335689, - 5.6521156521350315, - 5.61816935792621, - 5.585028693292779, - 5.552687909245704, - 5.521144899164632, - 5.490401140093495, - 5.4604616595467705, - 5.431335025380568, - 5.40303335659942, - 5.37557235321962, - 5.348971343505142, - 5.32325334704333, - 5.298445152244222, - 5.27457740693952, - 5.251684720834565, - 5.229805778640619, - 5.208983462797946, - 5.189264984807683, - 5.170702024340473, - 5.153350875503972, - 5.137272599956235, - 5.122533186979352, - 5.109203721216104, - 5.097360559568033, - 5.087085519811558, - 5.078466084876253, - 5.071595628526325, - 5.066573670489859, - 5.06350617201009, - 5.062505886497334, - 5.063692784628506, - 5.067194579118827, - 5.073147381804137, - 5.08169653506669, - 5.092997671630636, - 5.107218072221565, - 5.124538410790013, - 5.145155003789132, - 5.169282716112826, - 5.197158725867866, - 5.229047419471493, - 5.265246787412465, - 5.30609683484097, - 5.351990734889956, - 5.403389777441106, - 5.4608436717255335, - 5.525018569619774, - 5.596736508119904, - 5.677032238189241, - 5.76723742578359, - 5.8691096594361545, - 5.98503826567634, - 6.118389319203749, - 6.274120839248208, - 6.459970327134147, - 6.689003512789245, - 6.985971687973464, - 7.407357726508005, - 8.139902260122971, - 9.75110880200818, - 9.03646620444331, - 8.617185103426323, - 8.317546534819712, - 8.083153206334211, - 7.889906305611904, - 7.724991748895254, - 7.580777105348376, - 7.452347120085493, - 7.3363499420855955, - 7.230397425023902, - 7.132728006448412, - 7.042005246272735, - 6.957191371333203, - 6.8774646282061145, - 6.802163409184079, - 6.730747376609861, - 6.662769736788132, - 6.597857035976826, - 6.535694157553882, - 6.476012994434307, - 6.418583769071566, - 6.363208293975677, - 6.30971467685438, - 6.257953116537763, - 6.2077925332363435, - 6.159117844612346, - 6.11182774727596, - 6.065832897917437, - 6.02105441348842, - 5.977422628429765, - 5.934876060802081, - 5.89336054961986, - 5.852828533638497, - 5.813238447947386, - 5.774554219449409, - 5.736744845996413, - 5.699784046850441, - 5.663649974434917, - 5.628324979165756, - 5.593795420612119, - 5.5600515194082325, - 5.5270872452804465, - 5.494900237313063, - 5.463491753187327, - 5.432866644617713, - 5.40303335659942, - 5.374003948387873, - 5.3457941343685995, - 5.318423343155562, - 5.291914793387688, - 5.2662955847861355, - 5.241596803097599, - 5.217853637591199, - 5.195105509808755, - 5.173396212302852, - 5.152774056149041, - 5.1332920261059165, - 5.115007942442156, - 5.097984628680277, - 5.082290084856689, - 5.067997666407316, - 5.0551862695073195, - 5.043940524681814, - 5.034351001833364, - 5.02651443158747, - 5.020533950142214, - 5.01651937774815, - 5.014587544693321, - 5.014862683418549, - 5.017476911386628, - 5.022570836899723, - 5.030294329638485, - 5.0408075098875145, - 5.0542820260670185, - 5.070902710537408, - 5.090869730480448, - 5.114401386660686, - 5.141737762064968, - 5.173145490971668, - 5.208924016494152, - 5.249413846221347, - 5.29500752567296, - 5.34616436821552, - 5.403430476138645, - 5.467466379921864, - 5.539085926353392, - 5.6193122643180935, - 5.709460699971922, - 5.8112654503665935, - 5.927081484660598, - 6.0602220953221035, - 6.215559105882753, - 6.4006771963628015, - 6.628338964685797, - 6.922588605407499, - 7.337766276592935, - 8.049531973413167, - 9.72172870857521, - 9.017204050530546, - 8.601140860272723, - 8.303007562286771, - 8.069433611010565, - 7.876660855600643, - 7.712020733087685, - 7.56795334372186, - 7.439583575960965, - 7.323583544081219, - 7.21758024668726, - 7.11982212068104, - 7.028979556687333, - 6.94401957238411, - 6.864123842079263, - 6.788633245350446, - 6.717009264658983, - 6.648806441301397, - 6.583652295848141, - 6.521232412348251, - 6.461279172867405, - 6.4035631226438845, - 6.347886263982076, - 6.294076786451207, - 6.241984881907273, - 6.191479389524967, - 6.142445083476328, - 6.094780463700153, - 6.048395944582132, - 6.003212361412873, - 5.959159732965472, - 5.916176232315637, - 5.874207328416517, - 5.833205068848961, - 5.7931274802433865, - 5.753938067576074, - 5.715605397217694, - 5.678102751501953, - 5.641407844869971, - 5.605502593467219, - 5.570372931526786, - 5.536008669042588, - 5.5024033861774795, - 5.469554360609222, - 5.437462524626203, - 5.406132449271561, - 5.37557235321962, - 5.3457941343685995, - 5.316813422361492, - 5.2886496504133325, - 5.261326144937034, - 5.234870231529648, - 5.209313355914435, - 5.184691218440093, - 5.161043920726538, - 5.138416123028586, - 5.116857210879062, - 5.0964214695894645, - 5.077168265252011, - 5.059162231030204, - 5.042473457781386, - 5.027177688467769, - 5.013356516435419, - 5.0010975885384035, - 4.990494815335415, - 4.9816485922820055, - 4.974666038094669, - 4.969661259407481, - 4.9667556546404885, - 4.966078274851886, - 4.967766265505208, - 4.971965420874149, - 4.978830892664292, - 4.98852810694633, - 5.001233959502972, - 5.017138380391445, - 5.0364463856737824, - 5.059380770489113, - 5.086185646898413, - 5.117131098300085, - 5.152519319155101, - 5.192692749251518, - 5.238044919955197, - 5.28903504573517, - 5.346207885278047, - 5.410221180524731, - 5.481884271408218, - 5.562213676960099, - 5.652515309012973, - 5.754510148149658, - 5.870534172777242, - 6.003872331438937, - 6.1593514769858055, - 6.34447857153964, - 6.571865237277182, - 6.865209374659318, - 7.277818671718178, - 7.980159998524559, - 9.71318973332849, - 9.008488586944479, - 8.592243722843552, - 8.29392337450279, - 8.060156798512214, - 7.867185638176723, - 7.7023411162171245, - 7.558063109741642, - 7.429476274871644, - 7.31325248398838, - 7.207018483874483, - 7.1090224493099745, - 7.017934498121589, - 6.932721364135378, - 6.8525644263763095, - 6.776804257334329, - 6.704902020211109, - 6.63641192451487, - 6.570961146157427, - 6.508234911337459, - 6.447965230783681, - 6.389922264649625, - 6.333907616187924, - 6.279749061781437, - 6.227296365860164, - 6.176417925903413, - 6.126998060178388, - 6.0789347986757605, - 6.0321380720809, - 5.9865282186692514, - 5.942034747491536, - 5.89859530999895, - 5.856154842650971, - 5.814664850960692, - 5.774082811511955, - 5.734371673193495, - 5.695499442574778, - 5.657438841243098, - 5.620167025214081, - 5.583665358353989, - 5.547919233214172, - 5.512917933852521, - 5.478654536162617, - 5.445125841992859, - 5.412332343949597, - 5.380278218266254, - 5.348971343505142, - 5.318423343155562, - 5.2886496504133325, - 5.2596695935829665, - 5.231506500642196, - 5.2041878215570065, - 5.177745266940475, - 5.152214961617952, - 5.127637611603279, - 5.104058682916157, - 5.081528590593261, - 5.060102896182788, - 5.0398425119863886, - 5.020813910353268, - 5.003089336475461, - 4.9867470234274895, - 4.971871408695317, - 4.958553352219214, - 4.946890357118336, - 4.936986795874124, - 4.9289541469478095, - 4.922911249740814, - 4.9189845896513384, - 4.917308629948802, - 4.918026213543008, - 4.921289065800379, - 4.927258439790967, - 4.9361059583263405, - 4.948014723690964, - 4.963180787256269, - 4.9818150989247165, - 5.004146093162213, - 5.030423118158662, - 5.060920983437528, - 5.095945998431616, - 5.135844015094193, - 5.1810111956721325, - 5.231908542221722, - 5.289081714869831, - 5.3531884490536905, - 5.425037170495964, - 5.505642598568455, - 5.596308003266564, - 5.698750943521848, - 5.815303275024622, - 5.949245214366574, - 6.105398374442456, - 6.291264076207589, - 6.519448008056282, - 6.813641950950442, - 7.227147389888905, - 7.930425003903442, - 9.725496880465725, - 9.010324999823572, - 8.590499066940794, - 8.29029954480639, - 8.0553285478928, - 7.861486646617256, - 7.695959114635063, - 7.551112852036434, - 7.422031907286303, - 7.3053637040455435, - 7.19871934089559, - 7.100336469394705, - 7.008877831440318, - 6.923304802690518, - 6.842794744247147, - 6.766685127507556, - 6.694434657393096, - 6.6255955451862425, - 6.5597933034915785, - 6.496711742432217, - 6.436081641175067, - 6.377672067140352, - 6.321283635852538, - 6.266743215567658, - 6.213899722870287, - 6.162620752827916, - 6.11278985522562, - 6.064304316542048, - 6.017073341933608, - 5.971016556703828, - 5.926062765326999, - 5.882148919963484, - 5.839219260858708, - 5.797224598977303, - 5.756121717339698, - 5.715872872268284, - 5.676445379453242, - 5.637811272662552, - 5.599947025229994, - 5.562833326295838, - 5.526454905249742, - 5.490800399011561, - 5.455862257741953, - 5.421636685345407, - 5.388123611747756, - 5.355326694424312, - 5.32325334704333, - 5.291914793387688, - 5.261326144937034, - 5.231506500642196, - 5.2024790675103185, - 5.174271300649207, - 5.146915061398046, - 5.120446792105186, - 5.094907706008981, - 5.070343990543795, - 5.046807022242654, - 5.024353591256841, - 5.0030461333832665, - 4.982952967412016, - 4.964148535617238, - 4.946713645363638, - 4.93073571015029, - 4.916308989040244, - 4.903534824422993, - 4.892521879541536, - 4.883386379323531, - 4.876252360949899, - 4.871251944468172, - 4.868525638843652, - 4.868222705420069, - 4.870501609181441, - 4.875530598914169, - 4.883488470955212, - 4.894565588493792, - 4.908965250533084, - 4.926905533318281, - 4.948621764850957, - 4.974369843927579, - 5.004430684979882, - 5.039116168294393, - 5.078777116974918, - 5.123814031636652, - 5.174691631574506, - 5.231958745357175, - 5.296275883713593, - 5.368454128377997, - 5.449511185666767, - 5.540754373415359, - 5.643907564430222, - 5.761313267284961, - 5.896270476736992, - 6.053635189043552, - 6.240975051571888, - 6.471034753531018, - 6.7678400285111895, - 7.185712330495403, - 7.900292996151178, - 9.759983151674621, - 9.023047171243757, - 8.59605993419807, - 8.29222605217641, - 8.055009657290285, - 7.859608839825797, - 7.69291016702532, - 7.54713187393128, - 7.4172756221960565, - 7.299939438936186, - 7.192702956694009, - 7.093782788487758, - 7.001827036368014, - 6.915786537768897, - 6.8348308413833, - 6.758291473327395, - 6.685622505329277, - 6.616372457806542, - 6.5501638419347055, - 6.48667797883136, - 6.425643544611333, - 6.366827797565016, - 6.310029769928748, - 6.255074921400187, - 6.201810895852314, - 6.150104121559942, - 6.099837064164895, - 6.050905990407703, - 6.003219135717821, - 5.956695194286205, - 5.91126206906567, - 5.866855833178848, - 5.823419864790468, - 5.780904125551546, - 5.739264558908487, - 5.698462589363931, - 5.658464707521912, - 5.619242128698979, - 5.5807705152210145, - 5.543029754390728, - 5.506003785606878, - 5.469680471321112, - 5.434051507491263, - 5.3991123699755414, - 5.364862293944834, - 5.331304283895677, - 5.298445152244222, - 5.2662955847861355, - 5.234870231529648, - 5.2041878215570065, - 5.174271300649207, - 5.145147990424632, - 5.116849767698184, - 5.0894132626675725, - 5.0628800743826945, - 5.037297001759634, - 5.012716288172595, - 4.989195877409849, - 4.96679967853411, - 4.945597836972284, - 4.925667009013044, - 4.907090636864261, - 4.889959221582247, - 4.8743705916150315, - 4.860430165506986, - 4.848251208620299, - 4.8379550856946105, - 4.829671513874227, - 4.823538824701266, - 4.819704248761647, - 4.818324243487229, - 4.819564893435441, - 4.82360242365418, - 4.830623881099312, - 4.840828057323534, - 4.854426748953064, - 4.871646482499117, - 4.892730869346843, - 4.917943809204672, - 4.9475738319185005, - 4.98193996788054, - 5.0213996815279, - 5.066359615410935, - 5.117290215125713, - 5.174745807897552, - 5.239392511872007, - 5.312047679849117, - 5.393736844578376, - 5.485778146016655, - 5.589911664607646, - 5.708505647364564, - 5.844901996039895, - 6.004031989221806, - 6.1936043730753685, - 6.426654668652687, - 6.7279030552915655, - 7.153800914758279, - 7.891057495343505, - 9.819611228620559, - 9.047353387083641, - 8.6092376442678, - 8.299881833707575, - 8.05931832611874, - 7.861637554225624, - 7.693259845653011, - 7.546172959042868, - 7.41525147708565, - 7.297017551364441, - 7.189002662395186, - 7.089391346919236, - 6.9968094733821165, - 6.910191944281282, - 6.828696554311068, - 6.751645937392953, - 6.678487283665505, - 6.608763676369274, - 6.542093247205458, - 6.478153725180046, - 6.416670788728717, - 6.35740915264524, - 6.300165656192654, - 6.244763838848422, - 6.191049637877048, - 6.138887943030611, - 6.088159814086082, - 6.038760216744498, - 5.990596168180991, - 5.943585209556874, - 5.897654141975446, - 5.852737976649546, - 5.80877906081044, - 5.765726349075881, - 5.723534796284573, - 5.682164852678012, - 5.6415820461191934, - 5.601756639037035, - 5.5626633501645975, - 5.524281133039111, - 5.48659300475756, - 5.449585919712643, - 5.413250684030196, - 5.377581907236041, - 5.342577988332144, - 5.308241133984685, - 5.27457740693952, - 5.241596803097599, - 5.209313355914435, - 5.177745266940475, - 5.146915061398046, - 5.116849767698184, - 5.087581119739286, - 5.05914578070069, - 5.031585586850781, - 5.0049478096348405, - 4.979285434000077, - 4.954657450565606, - 4.931129158871752, - 4.908772478572684, - 4.887666265107034, - 4.867896626145043, - 4.849557235037575, - 4.8327496376729915, - 4.817583549697711, - 4.804177142119397, - 4.7926573150640195, - 4.78315996211118, - 4.775830231437239, - 4.770822795248432, - 4.768302146034095, - 4.768442947425994, - 4.77143047941528, - 4.777461232985415, - 4.78674372870163, - 4.7994996586112215, - 4.815965482631234, - 4.836394651949406, - 4.8610606867197745, - 4.890261409577202, - 4.924324739889997, - 4.963616601780769, - 5.00855171721548, - 5.059608386259099, - 5.117348872120635, - 5.182447835359199, - 5.25573262868723, - 5.338241602385105, - 5.431310729150948, - 5.536706595868628, - 5.6568390059672495, - 5.79511828017366, - 5.956594637260563, - 6.149198663633812, - 6.386423170005317, - 6.694086905435932, - 7.13206395112982, - 7.9056414589346335, - 9.909733958949468, - 9.084386249503876, - 8.630524674727784, - 8.313544425864713, - 8.06843514979387, - 7.867701446795272, - 7.6971057497923985, - 7.548313669609331, - 7.41602337221293, - 7.296652230193501, - 7.18766551896993, - 7.08720384218651, - 6.993862725582896, - 6.906555402458624, - 6.8244237432578325, - 6.746778383409202, - 6.673057269218018, - 6.602796217375746, - 6.535607540337548, - 6.471164225270157, - 6.409188022581803, - 6.349440341480874, - 6.291715196807437, - 6.235833678886285, - 6.181639570632381, - 6.128995840335988, - 6.077781811017405, - 6.027890858448476, - 5.979228526659912, - 5.931710976445966, - 5.885263702024515, - 5.839820465639974, - 5.795322410908837, - 5.751717324081936, - 5.7089590188269606, - 5.667006825115923, - 5.62582516669441, - 5.58538321467544, - 5.545654607234276, - 5.506617227325632, - 5.468253031909254, - 5.430547927434856, - 5.393491687364175, - 5.357077908342674, - 5.321304002311085, - 5.286171222393639, - 5.251684720834565, - 5.217853637591199, - 5.184691218440093, - 5.152214961617952, - 5.120446792105186, - 5.0894132626675725, - 5.05914578070069, - 5.029680859771473, - 5.001060394520767, - 4.973331957280616, - 4.946549114373417, - 4.920771759604607, - 4.896066461950142, - 4.872506823898012, - 4.850173846364781, - 4.829156295625265, - 4.80955106733764, - 4.791463542614304, - 4.775007931307098, - 4.760307598405375, - 4.747495370887665, - 4.736713824767091, - 4.728115555719994, - 4.721863441931263, - 4.71813091503132, - 4.717102264708823, - 4.718973015316312, - 4.7239504292222, - 4.732254212668853, - 4.744117526645573, - 4.759788439453674, - 4.779532001739007, - 4.8036331826808105, - 4.832400983898404, - 4.866174155326148, - 4.905329090821325, - 4.95029070695929, - 5.001547450444484, - 5.059672113282051, - 5.125350992950727, - 5.199425358228665, - 5.282951625009636, - 5.377291009235989, - 5.484247577753134, - 5.606289709375518, - 5.7469239002544255, - 5.911367426796519, - 6.107863132580742, - 6.350551521148817, - 6.666826869712063, - 7.1215957688223, - 7.94935808307075, - 10.039786708259124, - 9.135877425356455, - 8.660633557989248, - 8.333605858381787, - 8.082611206682339, - 7.877977204997297, - 7.704580511981859, - 7.553658396560006, - 7.419676520250346, - 7.298915085905777, - 7.188753159696438, - 7.087274393598674, - 6.993035134280292, - 6.904920737198053, - 6.822052658046845, - 6.743726204888415, - 6.669367559354236, - 6.598503326746, - 6.530738474841134, - 6.46574003464028, - 6.403224848748989, - 6.34295022039489, - 6.284706678514822, - 6.228312311560706, - 6.173608281333818, - 6.120455236373027, - 6.06873041955282, - 6.018325317557527, - 5.969143737859829, - 5.921100226390178, - 5.874118759344122, - 5.828131657645578, - 5.783078683918472, - 5.738906290431748, - 5.6955669930911945, - 5.653018851669138, - 5.611225040461253, - 5.57015349670971, - 5.529776636633394, - 5.490071130907523, - 5.451017733047727, - 5.412601155460853, - 5.374809988989596, - 5.337636662647835, - 5.30107744095408, - 5.265132456848157, - 5.229805778640619, - 5.195105509808755, - 5.161043920726538, - 5.127637611603279, - 5.094907706008981, - 5.0628800743826945, - 5.031585586850781, - 5.001060394520767, - 4.9713462381590245, - 4.942490782802713, - 4.914547976396442, - 4.887578429983751, - 4.861649816330917, - 4.836837283133223, - 4.8132238761820725, - 4.790900967103553, - 4.769968679586304, - 4.750536307499584, - 4.732722718097321, - 4.71665673379, - 4.70247748697185, - 4.690334744400066, - 4.6803892009802235, - 4.672812747926873, - 4.667788727618096, - 4.665512197599862, - 4.666190239759653, - 4.670042368434071, - 4.677301114069958, - 4.688212888233973, - 4.703039272952004, - 4.722058925066281, - 4.745570348418134, - 4.773895869414004, - 4.807387265001179, - 4.846433652834584, - 4.891472488972096, - 4.943004875171207, - 5.00161693552907, - 5.068009921593986, - 5.143043202907311, - 5.227796882988733, - 5.3236654153051335, - 5.432502303312125, - 5.556853266900986, - 5.700352001424043, - 5.868437482885279, - 6.069769530098744, - 6.319362757631952, - 6.646776729327085, - 7.124079268409017, - 8.031603563011325, - 10.227310775253667, - 9.204399886546872, - 8.700558753629489, - 8.360596850222661, - 8.102180056032426, - 7.892696417779248, - 7.715856132374868, - 7.562341290085978, - 7.426319533792384, - 7.3038966991781535, - 7.1923429768256915, - 7.08967047601843, - 6.99438655005128, - 6.905341833456234, - 6.821632450330213, - 6.7425347573173315, - 6.667460440898832, - 6.595924797949795, - 6.527523813509348, - 6.461917263330824, - 6.398816037718724, - 6.337972483453035, - 6.279172942902638, - 6.22223191894591, - 6.166987460785197, - 6.11329747902473, - 6.061036776867411, - 6.010094639559979, - 5.960372863731119, - 5.911784136908257, - 5.864250698525519, - 5.81770322935617, - 5.772079928037531, - 5.727325742264347, - 5.683391729056177, - 5.640234523790145, - 5.5978159018187945, - 5.5561024197452475, - 5.515065126012237, - 5.474679332531593, - 5.434924440751624, - 5.395783816918105, - 5.3572447123952935, - 5.319298225825863, - 5.281939304659548, - 5.245166784197043, - 5.208983462797946, - 5.173396212302852, - 5.138416123028586, - 5.104058682916157, - 5.070343990543795, - 5.037297001759634, - 5.0049478096348405, - 4.973331957280616, - 4.942490782802713, - 4.912471795275291, - 4.883329080093982, - 4.855123731410168, - 4.827924308554801, - 4.801807312439402, - 4.776857676896344, - 4.753169268831317, - 4.730845389974784, - 4.709999272036841, - 4.69075455633439, - 4.673245748666617, - 4.657618640621967, - 4.644030689935928, - 4.632651355391301, - 4.623662386551943, - 4.617258075925165, - 4.613645491623419, - 4.613044723003758, - 4.615689190977328, - 4.621826099731131, - 4.631717138775463, - 4.645639585251893, - 4.66388800882517, - 4.6867768491381785, - 4.714644225017575, - 4.747857455726117, - 4.786820944794114, - 4.8319873252779155, - 4.883873140930333, - 4.943080925983288, - 5.010330498343638, - 5.086503874244842, - 5.172710975137433, - 5.270388284700216, - 5.381452049693208, - 5.508546506074644, - 5.655468108723291, - 5.827941327299495, - 6.035168049882509, - 6.293315979213209, - 6.634870892406951, - 7.1420385678103635, - 8.1698810361932, - 10.509268924450511, - 9.293816410119158, - 8.75167395606249, - 8.395222720251242, - 8.127574952881366, - 7.9121552187545525, - 7.731149968238602, - 7.574530263397553, - 7.4360872527540325, - 7.3117087043242, - 7.19852970975031, - 7.094474164378942, - 6.997989330535582, - 6.907883451772953, - 6.823221851133023, - 6.743257929033804, - 6.667385877025429, - 6.5951073916990035, - 6.526007693569476, - 6.459737896201391, - 6.396001810931529, - 6.334545914198061, - 6.275151611604001, - 6.217629197671744, - 6.161813086402099, - 6.107558007303465, - 6.0547359441834825, - 6.00323365205628, - 5.9529506289411875, - 5.9037974492970715, - 5.8556943878001, - 5.808570278464676, - 5.762361566329187, - 5.7170115181949, - 5.672469566003715, - 5.628690761929344, - 5.5856353285412, - 5.54326829077578, - 5.501559179133238, - 5.4604817956681675, - 5.420014036083276, - 5.380137762653125, - 5.340838723870154, - 5.302106517668265, - 5.263934595878647, - 5.226320308236627, - 5.189264984807683, - 5.152774056149041, - 5.116857210879062, - 5.081528590593261, - 5.046807022242654, - 5.012716288172595, - 4.979285434000077, - 4.946549114373417, - 4.914547976396442, - 4.883329080093982, - 4.852946354730716, - 4.823461089056171, - 4.794942452624264, - 4.767468044223039, - 4.74112446215885, - 4.716007889698124, - 4.692224687435706, - 4.6698919828263525, - 4.64913824572959, - 4.630103837786113, - 4.612941523051484, - 4.597816927937168, - 4.5849089406299575, - 4.574410044370787, - 4.566526585980426, - 4.561478991645619, - 4.559501957160607, - 4.56084466060847, - 4.565771073060547, - 4.574560478686713, - 4.58750836151448, - 4.604927874495986, - 4.627152181441182, - 4.654538060091777, - 4.687471285750613, - 4.726374497418662, - 4.771718512994514, - 4.8240384595395795, - 4.883956711093907, - 4.952215644757482, - 5.029724939339281, - 5.117631131897314, - 5.217422586074658, - 5.331093400078143, - 5.461410743115891, - 5.612375559504786, - 5.790074232853662, - 6.004404505305585, - 6.273042445954495, - 6.632422079963135, - 7.179288039616755, - 8.401116806929606, - 10.985521679370713, - 9.410121186270388, - 8.815887527105179, - 8.438416674583625, - 8.159353331262892, - 7.936727627327196, - 7.750732861476661, - 7.5904323487483625, - 7.449144485784052, - 7.3224865228812455, - 7.2074275146962306, - 7.1017837467119636, - 7.003929627993051, - 6.912622276871799, - 6.826890039536915, - 6.74595887147662, - 6.669202128962868, - 6.596105371124669, - 6.526241091860388, - 6.459250200734589, - 6.394828201004062, - 6.332714705997975, - 6.272685372908081, - 6.2145456167469355, - 6.158125655285344, - 6.103276563005389, - 6.0498670997845645, - 5.997781141477935, - 5.946915583303057, - 5.8971786185071045, - 5.848488317890753, - 5.800771452863679, - 5.75396251751394, - 5.708002914870088, - 5.6628402799522535, - 5.618427917939058, - 5.574724340247579, - 5.5316928848442375, - 5.489301409903409, - 5.447522052176975, - 5.406331043257923, - 5.365708578409503, - 5.325638733859663, - 5.286109429482477, - 5.247112434644509, - 5.208643415714457, - 5.170702024340473, - 5.1332920261059165, - 5.0964214695894645, - 5.060102896182788, - 5.024353591256841, - 4.989195877409849, - 4.954657450565606, - 4.920771759604607, - 4.887578429983751, - 4.855123731410168, - 4.823461089056171, - 4.792651637009211, - 4.7627648116186885, - 4.7338789811116095, - 4.706082106293181, - 4.679472425336925, - 4.6541591536404505, - 4.630263187557498, - 4.607917798651137, - 4.587269303158898, - 4.568477689926115, - 4.55171718957302, - 4.537176768675232, - 4.525060535968538, - 4.515588053910136, - 4.508994559371373, - 4.505531112983236, - 4.505464719024079, - 4.509078488186804, - 4.516671955730218, - 4.528561719372211, - 4.545082627435709, - 4.566589832117805, - 4.593462131676745, - 4.626107169655332, - 4.66496925775196, - 4.710540874272973, - 4.7633793193358445, - 4.8241306819756895, - 4.893564374729805, - 4.972623355427363, - 5.062498435047698, - 5.164741084394552, - 5.2814407340749066, - 5.415516224044797, - 5.571223053653573, - 5.755103311111693, - 5.977944856863546, - 6.259399171954641, - 6.641277285610642, - 7.241774623621455, - 8.825137643250978, - 12.179461008628294, - 9.56315738851153, - 8.89589916959179, - 8.49142005535523, - 8.198231803171122, - 7.966883990267603, - 7.774940113274944, - 7.610300806131339, - 7.465690911052481, - 7.3363929074634155, - 7.219172625788709, - 7.1117157841801575, - 7.012309024635344, - 6.919648243453745, - 6.832717736879819, - 6.750710916168322, - 6.672976534697823, - 6.598981170718427, - 6.5282824053205495, - 6.460509235273072, - 6.395347500230689, - 6.3325288606176615, - 6.271822338184086, - 6.213027738086244, - 6.155970473928643, - 6.100497453767485, - 6.046473778881333, - 5.993780072664343, - 5.94231030352519, - 5.891969999179976, - 5.84267477417847, - 5.794349110569572, - 5.746925345117233, - 5.7003428266856195, - 5.654547215208893, - 5.609489899677084, - 5.565127517258215, - 5.521421559367437, - 5.4783380534280095, - 5.4358473114254995, - 5.393923738268951, - 5.352545694541416, - 5.311695409522757, - 5.271358941457175, - 5.231526182959584, - 5.192190910240746, - 5.153350875503972, - 5.115007942442156, - 5.077168265252011, - 5.0398425119863886, - 5.0030461333832665, - 4.96679967853411, - 4.931129158871752, - 4.896066461950142, - 4.861649816330917, - 4.827924308554801, - 4.794942452624264, - 4.7627648116186885, - 4.7314606699635915, - 4.7011087534422344, - 4.671797992239348, - 4.643628320126383, - 4.616711500346246, - 4.59117196588568, - 4.567147658750488, - 4.544790849784418, - 4.524268917814122, - 4.505765064924505, - 4.489478944113864, - 4.47562717729593, - 4.464443746680647, - 4.456180252281138, - 4.451106044180583, - 4.449508261955733, - 4.4516918471536755, - 4.45797963996678, - 4.468712730497681, - 4.48425131102182, - 4.504976372367539, - 4.5312927112736, - 4.5636338773344844, - 4.602469907456815, - 4.648319007530392, - 4.701764807507221, - 4.7634815488437185, - 4.834270765457648, - 4.915115071363153, - 5.007258310524021, - 5.112328071934695, - 5.232529713655207, - 5.370968235807291, - 5.5322150450344525, - 5.723385762878915, - 5.95641037452948, - 6.25354964350861, - 6.664075169921978, - 7.339296314105706, - 9.96530820301075, - 9.770577368967455, - 8.995644953940085, - 8.555906345607138, - 8.245136923174792, - 8.003216675574242, - 7.804186354505358, - 7.634444560788108, - 7.485967482064137, - 7.353622517680499, - 7.2339267575815125, - 7.124407724140531, - 7.023246593344013, - 6.929066197721523, - 6.840798571765209, - 6.757598714258597, - 6.678786473565303, - 6.60380622273592, - 6.532198166519706, - 6.4635774743449765, - 6.397618811591539, - 6.334044677304114, - 6.272616478840024, - 6.2131276091790895, - 6.155398012935805, - 6.099269875014891, - 6.044604167067952, - 5.991277857397451, - 5.939181639832895, - 5.888218072920367, - 5.8383000468362285, - 5.789349514652239, - 5.741296438912841, - 5.6940779152973935, - 5.647637443383821, - 5.601924320881625, - 5.556893142646245, - 5.512503389675211, - 5.468719096377034, - 5.425508586886991, - 5.382844273222081, - 5.340702509727222, - 5.299063499647108, - 5.257911250824022, - 5.217233578517706, - 5.177022154203658, - 5.137272599956235, - 5.097984628680277, - 5.059162231030204, - 5.020813910353268, - 4.982952967412016, - 4.945597836972284, - 4.908772478572684, - 4.872506823898012, - 4.836837283133223, - 4.801807312439402, - 4.767468044223039, - 4.7338789811116095, - 4.7011087534422344, - 4.669235938552463, - 4.638349938171203, - 4.608551907691008, - 4.5799557280302094, - 4.552689007174357, - 4.526894094394871, - 4.502729085748247, - 4.48036879506619, - 4.460005660740724, - 4.441850555904055, - 4.426133469094013, - 4.413104025492551, - 4.403031826973759, - 4.396206604473147, - 4.392938200849423, - 4.3935564389236585, - 4.398410980361409, - 4.4078713492658705, - 4.422327382865364, - 4.442190484523811, - 4.467896197727923, - 4.4999088046968065, - 4.538728900038103, - 4.584905235760115, - 4.639052647277433, - 4.701878675647606, - 4.7742228295241445, - 4.8571147169901785, - 4.951861379118599, - 5.0601818445707885, - 5.184422091453549, - 5.327915467150185, - 5.495626045908995, - 5.6953944818713635, - 5.940628734302794, - 6.25708851197617, - 6.704692058927965, - 7.489463543417063, - 10.068817726260072, - 9.121121462768524, - 8.634179745821582, - 8.301280465410521, - 8.046476389829401, - 7.838985885766426, - 7.663240807264011, - 7.510264828959879, - 7.374407836794849, - 7.251881454649895, - 7.1400212095900875, - 7.036881487556653, - 6.94099797217685, - 6.851240775393557, - 6.766719645372282, - 6.686720554189711, - 6.610661971623646, - 6.538063919561279, - 6.468525572364249, - 6.401708720385363, - 6.3373253479841845, - 6.27512815738603, - 6.214903239816102, - 6.1564643373022365, - 6.0996483002204105, - 6.044311455839145, - 5.990326679557835, - 5.937581014434535, - 5.885973723179054, - 5.835414684786245, - 5.785823068566926, - 5.737126233648268, - 5.689258813540932, - 5.642161954139965, - 5.595782680270751, - 5.550073371133329, - 5.504991329116381, - 5.460498429723073, - 5.416560842979291, - 5.373148818832945, - 5.330236530815795, - 5.287801973713131, - 5.245826912237821, - 5.204296878783633, - 5.163201219276496, - 5.122533186979352, - 5.082290084856689, - 5.042473457781386, - 5.003089336475461, - 4.964148535617238, - 4.925667009013044, - 4.887666265107034, - 4.850173846364781, - 4.8132238761820725, - 4.776857676896344, - 4.74112446215885, - 4.706082106293181, - 4.671797992239348, - 4.638349938171203, - 4.605827200779658, - 4.574331550436866, - 4.543978409911469, - 4.514898043938526, - 4.487236781765848, - 4.46115824890684, - 4.436844577984025, - 4.414497562217592, - 4.394339709558217, - 4.376615151809266, - 4.361590362897434, - 4.349554645792831, - 4.3408203610150045, - 4.335722894215688, - 4.334620399376738, - 4.337893411270599, - 4.345944499627363, - 4.359198241658965, - 4.378101923487228, - 4.4031275507492165, - 4.434775964979959, - 4.473584145905948, - 4.520137170266991, - 4.5750868706054355, - 4.639180133808188, - 4.713301264084496, - 4.7985354161076685, - 4.896264790071191, - 5.008318182373241, - 5.1372123138101085, - 5.286561468234541, - 5.461820454275893, - 5.6717544377188265, - 5.931709862998127, - 6.272241150288427, - 6.769067385985858, - 7.728675790512112, - 10.554655123215385, - 9.282053314010504, - 8.729508239904538, - 8.368274353065111, - 8.097624547171694, - 7.879980898258654, - 7.697152017485352, - 7.538934359855812, - 7.399026862835261, - 7.273263672005069, - 7.1587462799232675, - 7.0533761996925755, - 6.955584976721544, - 6.864169285568982, - 6.778185556815182, - 6.696880074366231, - 6.619641115864744, - 6.545965288826289, - 6.475433292865081, - 6.407692109505424, - 6.342441678317574, - 6.279424769719887, - 6.2184191778623195, - 6.159231625504061, - 6.101692951274089, - 6.045654270757538, - 5.9909838864723275, - 5.93756478053501, - 5.885292565704461, - 5.834073800792187, - 5.783824598634526, - 5.734469471297965, - 5.685940369556476, - 5.6381758830677775, - 5.591120574879947, - 5.544724429488945, - 5.49894239805171, - 5.453734027838083, - 5.409063165798873, - 5.364897728401585, - 5.321209531763365, - 5.277974177686584, - 5.235170992547582, - 5.1927830171584795, - 5.150797046757441, - 5.109203721216104, - 5.067997666407316, - 5.027177688467769, - 4.9867470234274895, - 4.946713645363638, - 4.907090636864261, - 4.867896626145043, - 4.829156295625265, - 4.790900967103553, - 4.753169268831317, - 4.716007889698124, - 4.679472425336925, - 4.643628320126383, - 4.608551907691008, - 4.574331550436866, - 4.541068875757258, - 4.508880102642265, - 4.4778974473875035, - 4.448270590826737, - 4.420168182007901, - 4.393779344646684, - 4.369315143421775, - 4.3470099579651444, - 4.327122704464852, - 4.309937839951754, - 4.295766085111985, - 4.284944811157401, - 4.277838058957835, - 4.274836198977009, - 4.2763553036111395, - 4.282836394403714, - 4.294744850218261, - 4.312570423722946, - 4.336828518582029, - 4.368063638815222, - 4.406856255339784, - 4.453834784609854, - 4.509695023803487, - 4.575230397447644, - 4.651378051133349, - 4.7392887807381445, - 4.8404342215851734, - 4.956775210818343, - 5.0910366081811, - 5.247180470069464, - 5.4312803704869905, - 5.653295344412063, - 5.931161763046451, - 6.30219808771815, - 6.866872932790584, - 8.153679452909833, - 11.715749886577, - 9.495707672268892, - 8.846716425830934, - 8.448312699964976, - 8.157910727376398, - 7.927981364721618, - 7.736749217918567, - 7.572403090868224, - 7.4278131917606816, - 7.298342982301346, - 7.180806730516655, - 7.072920676727722, - 6.972991443841371, - 6.879728363089757, - 6.792124913230803, - 6.709380816129564, - 6.630849128171094, - 6.5559992822791235, - 6.484390637977365, - 6.41565314763186, - 6.349472959605065, - 6.285581520228061, - 6.223747202921255, - 6.163768793995933, - 6.105470363714913, - 6.04869718548468, - 5.993312458374876, - 5.939194652724518, - 5.886235344456829, - 5.834337436776215, - 5.783413692061281, - 5.733385514622172, - 5.684181938353479, - 5.635738783430057, - 5.587997953937034, - 5.5409068543194255, - 5.494417907229461, - 5.448488159067519, - 5.40307896249593, - 5.358155727632719, - 5.313687735639454, - 5.269648010105598, - 5.226013243079758, - 5.182763773866133, - 5.1398836198392885, - 5.097360559568033, - 5.0551862695073195, - 5.013356516435419, - 4.971871408695317, - 4.93073571015029, - 4.889959221582247, - 4.849557235037575, - 4.80955106733764, - 4.769968679586304, - 4.730845389974784, - 4.692224687435706, - 4.6541591536404505, - 4.616711500346246, - 4.5799557280302094, - 4.543978409911469, - 4.508880102642265, - 4.474776880901452, - 4.4418019875964285, - 4.4101075841387365, - 4.379866576140109, - 4.351274478858624, - 4.324551274040316, - 4.299943196078844, - 4.277724371863433, - 4.258198227301197, - 4.241698567282822, - 4.228590238979432, - 4.219269306217997, - 4.214162701811622, - 4.213727392428069, - 4.21844919438825, - 4.228841525801554, - 4.245444577047628, - 4.268825634214113, - 4.299581608125374, - 4.3383452244800775, - 4.385796861444269, - 4.4426847714927495, - 4.509857580063298, - 4.588314881364781, - 4.679285178009571, - 4.784346820617728, - 4.9056201950694795, - 5.046085575968896, - 5.210139472026751, - 5.4046452755655, - 5.64112976207875, - 5.941073901615709, - 6.3517097256743735, - 7.015329602245112, - 9.252115577152018, - 9.797357728634104, - 8.993325392287538, - 8.544473682867038, - 8.228990884926107, - 7.984022738807068, - 7.782744415223581, - 7.611193736497976, - 7.4611693866546664, - 7.327440970139991, - 7.206467002676215, - 7.095737550806258, - 6.9934085137765765, - 6.898084858870105, - 6.808685462500486, - 6.7243552588306015, - 6.644406120202811, - 6.568275883185829, - 6.495499222672093, - 6.425686487696685, - 6.358508023301728, - 6.293682357007843, - 6.2309671616279605, - 6.170152247959137, - 6.111054065289956, - 6.053511338173043, - 5.997381570833578, - 5.942538222210043, - 5.888868405275839, - 5.8362710006444, - 5.784655100912194, - 5.733938721688896, - 5.684047729806941, - 5.634914950178288, - 5.586479421144034, - 5.538685774630246, - 5.491483722474774, - 5.444827634283536, - 5.398676195374534, - 5.352992135969474, - 5.307742024943733, - 5.262896123257463, - 5.218428293749971, - 5.174315965353083, - 5.1305401510196145, - 5.087085519811558, - 5.043940524681814, - 5.0010975885384035, - 4.958553352219214, - 4.916308989040244, - 4.8743705916150315, - 4.8327496376729915, - 4.791463542614304, - 4.750536307499584, - 4.709999272036841, - 4.6698919828263525, - 4.630263187557498, - 4.59117196588568, - 4.552689007174357, - 4.514898043938526, - 4.4778974473875035, - 4.4418019875964285, - 4.406744755149135, - 4.372879233176952, - 4.340381498177289, - 4.309452514543372, - 4.2803204713131695, - 4.253243090608666, - 4.228509816615071, - 4.206443773763991, - 4.187403366411904, - 4.171783384832407, - 4.160015490815393, - 4.152567989612464, - 4.149944864023021, - 4.152684162501214, - 4.161356007275216, - 4.176560730010334, - 4.198927959176701, - 4.229117883460864, - 4.267826416348051, - 4.315796630850512, - 4.373839719875146, - 4.442870081877723, - 4.523961374263192, - 4.6184344132212996, - 4.727995488920777, - 4.854959089641003, - 5.002621829306495, - 5.175929550848094, - 5.382769834017607, - 5.636772449958209, - 5.964421052068028, - 6.428228783509433, - 7.2496738655551605, - 10.279197284203601, - 9.181983668560562, - 8.66124980761298, - 8.31311478292709, - 8.049451769016946, - 7.836036743035222, - 7.655952394257636, - 7.499584952266713, - 7.360943619505491, - 7.236041127382774, - 7.122088841946253, - 7.01705941331019, - 6.919432318175672, - 6.828037558861635, - 6.741955319534814, - 6.660449138434632, - 6.582920000202285, - 6.508873951241102, - 6.4378987235438005, - 6.369646518648767, - 6.303821101887204, - 6.240167974588287, - 6.178466784553741, - 6.118525391022444, - 6.060175170868003, - 6.003267268686766, - 5.947669573666601, - 5.893264262586503, - 5.839945788635096, - 5.787619224963306, - 5.736198893342779, - 5.685607224249021, - 5.635773806682503, - 5.586634595166534, - 5.538131248384249, - 5.490210579386758, - 5.442824101617759, - 5.395927658447794, - 5.34948112670989, - 5.303448187039754, - 5.257796155771555, - 5.212495874819673, - 5.16752165746237, - 5.122851289294021, - 5.078466084876253, - 5.034351001833364, - 4.990494815335415, - 4.946890357118336, - 4.903534824422993, - 4.860430165506986, - 4.817583549697711, - 4.775007931307098, - 4.732722718097321, - 4.69075455633439, - 4.64913824572959, - 4.607917798651137, - 4.567147658750488, - 4.526894094394871, - 4.487236781765848, - 4.448270590826737, - 4.4101075841387365, - 4.372879233176952, - 4.336738848733566, - 4.301864210510476, - 4.2684603654305215, - 4.2367625440218335, - 4.207039119316201, - 4.179594503619933, - 4.154771847001712, - 4.1329553708808, - 4.114572146571683, - 4.100093120926254, - 4.090033211531247, - 4.084950357635567, - 4.08544353760594, - 4.092149966942987, - 4.105741988112629, - 4.1269245658040346, - 4.156434816733805, - 4.19504564468512, - 4.243576357441674, - 4.302914217787937, - 4.37405247465396, - 4.458153070799403, - 4.556647055319998, - 4.671395131518245, - 4.804950088161806, - 4.961005039003622, - 5.145211085930221, - 5.3668103122890285, - 5.642329664552801, - 6.005596380736904, - 6.544344721402742, - 7.662076266833832, - 11.382908644719173, - 9.43647082798906, - 8.805550796672108, - 8.413437502346257, - 8.126058477289149, - 7.897779834057838, - 7.707487475955356, - 7.543660905844596, - 7.399317876192385, - 7.269904472594402, - 7.152284634464469, - 7.044206078724234, - 6.943996176007123, - 6.85037833308636, - 6.7623557664088825, - 6.67913500553183, - 6.600073867442909, - 6.524645070715345, - 6.4524101666785345, - 6.383000465444294, - 6.316102819533842, - 6.251448853123013, - 6.188806681907161, - 6.127974464020098, - 6.0687753178692185, - 6.011053274721106, - 5.9546700246740825, - 5.899502278202842, - 5.845439610635224, - 5.792382689501066, - 5.740241808507146, - 5.688935669520356, - 5.638390367148731, - 5.58853854052196, - 5.53931866455185, - 5.4906744589132055, - 5.442554397670499, - 5.394911306209418, - 5.347702035155033, - 5.300887203449556, - 5.254431004859678, - 5.208301073991654, - 5.1624684094953315, - 5.116907353602621, - 5.071595628526325, - 5.02651443158747, - 4.9816485922820055, - 4.936986795874124, - 4.892521879541536, - 4.848251208620299, - 4.804177142119397, - 4.760307598405375, - 4.71665673379, - 4.673245748666617, - 4.630103837786113, - 4.587269303158898, - 4.544790849784418, - 4.502729085748247, - 4.46115824890684, - 4.420168182007901, - 4.379866576140109, - 4.340381498177289, - 4.301864210510476, - 4.264492279808073, - 4.228472954649795, - 4.194046768484813, - 4.161491293542524, - 4.131124932779387, - 4.103310591620035, - 4.078459022182365, - 4.057031586078492, - 4.039542148338724, - 4.026557810486713, - 4.018698237048966, - 4.01663345346927, - 4.021080223427594, - 4.032797476628582, - 4.052581773677158, - 4.081264472632591, - 4.119713109175811, - 4.168840547341871, - 4.22962680482625, - 4.303160391462469, - 4.390709186276697, - 4.493836764067609, - 4.614591815615945, - 4.755823094798188, - 4.9217281259652506, - 5.118880602318441, - 5.35835793714315, - 5.66081356365607, - 6.071418317502665, - 6.723792008607333, - 8.694215409194621, - 9.810312971099066, - 8.98879567414619, - 8.534568479307454, - 8.216287546229651, - 7.969483215030838, - 7.7668257804209615, - 7.594144026613354, - 7.443134156291788, - 7.308509388527407, - 7.186694443666372, - 7.075157714661728, - 6.972040394521462, - 6.875936968480219, - 6.785758501359317, - 6.700643859766315, - 6.619900015624055, - 6.542960699183533, - 6.469357023693778, - 6.398696149251347, - 6.330645482623332, - 6.264920774643475, - 6.201277016162647, - 6.139501379094108, - 6.079407675834352, - 6.020831962342887, - 5.9636290140572425, - 5.907669476091356, - 5.852837540256965, - 5.7990290381058305, - 5.746149865858013, - 5.694114676733373, - 5.6428457908647385, - 5.592272284040204, - 5.542329224977991, - 5.492957037375407, - 5.44410096809309, - 5.395710646900956, - 5.347739726491312, - 5.300145594158445, - 5.252889148805225, - 5.205934638883889, - 5.15924955860353, - 5.112804601316222, - 5.066573670489859, - 5.020533950142214, - 4.974666038094669, - 4.9289541469478095, - 4.883386379323531, - 4.8379550856946105, - 4.7926573150640195, - 4.747495370887665, - 4.70247748697185, - 4.657618640621967, - 4.612941523051484, - 4.568477689926115, - 4.524268917814122, - 4.48036879506619, - 4.436844577984025, - 4.393779344646684, - 4.351274478858624, - 4.309452514543372, - 4.2684603654305215, - 4.228472954649795, - 4.189697242108163, - 4.1523766222817615, - 4.116795629243323, - 4.08328483766263, - 4.052225787542619, - 4.024055688209357, - 3.99927157907488, - 3.978433552438165, - 3.9621665968102886, - 3.9511606276291458, - 3.9461683755122605, - 3.9480010473158225, - 3.9575221095138264, - 3.975640204336224, - 4.003303115319364, - 4.041495851079582, - 4.091247323251457, - 4.153651846562695, - 4.229914104981567, - 4.32143013676498, - 4.429924196452864, - 4.557676326071814, - 4.70790815215996, - 4.885470650955196, - 5.0981723432470805, - 5.3596528433944215, - 5.696695605437245, - 6.173228205340585, - 7.020071846477261, - 10.474985657313878, - 9.231917336767399, - 8.683614768225066, - 8.323594184125144, - 8.0531705612879, - 7.835295568043658, - 7.651975698237858, - 7.4930975214666855, - 7.352406383040553, - 7.2257623157848645, - 7.110281990324095, - 7.003876034512967, - 6.904981440247435, - 6.8123979796833085, - 6.725183598263011, - 6.642584976061527, - 6.56398995874952, - 6.488894080272266, - 6.416876446863823, - 6.347582006942318, - 6.280708279615578, - 6.2159952608790965, - 6.153217636520117, - 6.092178697306029, - 6.032705529291725, - 5.97464517234863, - 5.917861523123632, - 5.862232817027555, - 5.807649565512561, - 5.7540128550447385, - 5.701232936284952, - 5.649228048406703, - 5.597923435817658, - 5.5472505239356495, - 5.49714622789403, - 5.447552373683557, - 5.3984152156901954, - 5.349685038163321, - 5.301315831072535, - 5.253265033254843, - 5.205493337849761, - 5.157964556872444, - 5.110645543469508, - 5.06350617201009, - 5.01651937774815, - 4.969661259407481, - 4.922911249740814, - 4.876252360949899, - 4.829671513874227, - 4.78315996211118, - 4.736713824767091, - 4.690334744400066, - 4.644030689935928, - 4.597816927937168, - 4.55171718957302, - 4.505765064924505, - 4.460005660740724, - 4.414497562217592, - 4.369315143421775, - 4.324551274040316, - 4.2803204713131695, - 4.2367625440218335, - 4.194046768484813, - 4.1523766222817615, - 4.111995076895024, - 4.073190412078221, - 4.036302458781264, - 4.001729100660312, - 3.969932765290102, - 3.9414465180953178, - 3.9168792451717347, - 3.896919297746547, - 3.8823359092653025, - 3.8739777430871283, - 3.8727681590450205, - 3.8796972839253363, - 3.895811808834884, - 3.9222046592962436, - 3.9600082915419836, - 4.010397338127948, - 4.0746087062226595, - 4.153990357540695, - 4.250094907189662, - 4.364843435527094, - 4.500804498223846, - 4.661677746715891, - 4.853179559598406, - 5.0848179057094045, - 5.3739442786058556, - 5.756956252641357, - 6.331902579314555, - 7.604663529276777, - 9.580098790233523, - 8.872371600099047, - 8.453081769690895, - 8.151637831546493, - 7.914653836538343, - 7.718363449696761, - 7.5500918208683085, - 7.402273321017588, - 7.2700272118703095, - 7.150019892545156, - 7.0398724626167795, - 6.937827219884962, - 6.842548137177136, - 6.752995505319753, - 6.668343936249114, - 6.587926886869753, - 6.511198032380958, - 6.437703697755356, - 6.367062753110631, - 6.2989516719966865, - 6.233093239000429, - 6.169247886846318, - 6.107206961048297, - 6.046787419651486, - 5.987827616584307, - 5.930183913843714, - 5.873727935223097, - 5.8183443221427, - 5.763928886569605, - 5.710387081123628, - 5.65763272501523, - 5.605586938334815, - 5.554177247713691, - 5.5033368344219324, - 5.453003902209617, - 5.403121147106257, - 5.3536353153132215, - 5.304496838511304, - 5.255659538553773, - 5.207080395773064, - 5.158719377114694, - 5.110539322120605, - 5.062505886497334, - 5.014587544693321, - 4.9667556546404885, - 4.9189845896513384, - 4.871251944468172, - 4.823538824701266, - 4.775830231437239, - 4.728115555719994, - 4.6803892009802235, - 4.632651355391301, - 4.5849089406299575, - 4.537176768675232, - 4.489478944113864, - 4.441850555904055, - 4.394339709558217, - 4.3470099579651444, - 4.299943196078844, - 4.253243090608666, - 4.207039119316201, - 4.161491293542524, - 4.116795629243323, - 4.073190412078221, - 4.030963265716501, - 3.990458973052812, - 3.9520879104276343, - 3.916334828958276, - 3.883767551997568, - 3.855044959082392, - 3.8309234152427267, - 3.8122606249304876, - 3.8000158193973173, - 3.795245338956628, - 3.7990931901469858, - 3.812777188805198, - 3.8375729496618107, - 3.8748002724116013, - 3.925819337023676, - 3.9920475153426835, - 4.075011830805885, - 4.1764584398437945, - 4.2985525119120105, - 4.444228238519164, - 4.617811219506925, - 4.82619500935341, - 5.081307741180104, - 5.406135248435348, - 5.853284906240746, - 6.592600005478541, - 10.165532902409554, - 9.122612674653444, - 8.612740021312925, - 8.26889785584289, - 8.007289327276515, - 7.794889101918518, - 7.6152438205036335, - 7.458956565406314, - 7.320151037215509, - 7.194905749353035, - 7.080472213960823, - 6.974848660598921, - 6.87653134525873, - 6.784361455706248, - 6.697426646684496, - 6.614995361628717, - 6.536471653540081, - 6.461363275671866, - 6.3892586227588035, - 6.319809730686047, - 6.252719519051745, - 6.18773206580905, - 6.1246250881435405, - 6.063204054910034, - 6.003297523471119, - 5.944753407747524, - 5.887435963235709, - 5.831223330340545, - 5.776005517115461, - 5.721682731318491, - 5.668163992861741, - 5.615365973478869, - 5.563212022291666, - 5.511631344992321, - 5.460558311329417, - 5.409931871036839, - 5.3596950626709425, - 5.309794603314998, - 5.26018054999078, - 5.210806026053856, - 5.161627007974489, - 5.112602169828016, - 5.063692784628506, - 5.014862683418549, - 4.966078274851886, - 4.917308629948802, - 4.868525638843652, - 4.819704248761647, - 4.770822795248432, - 4.721863441931263, - 4.672812747926873, - 4.623662386551943, - 4.574410044370787, - 4.525060535968538, - 4.47562717729593, - 4.426133469094013, - 4.376615151809266, - 4.327122704464852, - 4.277724371863433, - 4.228509816615071, - 4.179594503619933, - 4.131124932779387, - 4.08328483766263, - 4.036302458781264, - 3.990458973052812, - 3.9460981064718315, - 3.9036368629229576, - 3.863577154800694, - 3.826517908047639, - 3.793166929575419, - 3.7643514798982274, - 3.741026131553494, - 3.7242762093629542, - 3.715315065468494, - 3.715473875868468, - 3.7261838341891806, - 3.7489528091815085, - 3.7853418323220627, - 3.8369510868528147, - 3.905430164935122, - 3.992533383531023, - 4.100249443293461, - 4.231050692822179, - 4.38834384361611, - 4.577295542908397, - 4.806453724716324, - 5.09134232023102, - 5.464031642516544, - 6.007383692568173, - 7.0875353757805195, - 12.020549997920222, - 9.481909003357032, - 8.81612310481711, - 8.411000540043952, - 8.11656262969433, - 7.883678520344143, - 7.690019225859095, - 7.523530412682215, - 7.376958012248303, - 7.245594725426813, - 7.126211024009264, - 7.016494105330694, - 6.914730138399959, - 6.81961324215905, - 6.730124995575972, - 6.645455364713522, - 6.564949055144707, - 6.488068068209147, - 6.4143649201130435, - 6.343463074747599, - 6.275042376430118, - 6.208828022985142, - 6.144582093732746, - 6.082096952866124, - 6.021190050696755, - 5.961699781429535, - 5.903482149690094, - 5.846408063414615, - 5.790361117135426, - 5.735235763135788, - 5.680935792363435, - 5.627373065048587, - 5.5744664444897305, - 5.522140897712616, - 5.4703267345638755, - 5.418958962904442, - 5.367976742378483, - 5.317322923088011, - 5.266943658653412, - 5.216788085777968, - 5.166808064710454, - 5.116957977035456, - 5.067194579118827, - 5.017476911386628, - 4.967766265505208, - 4.918026213543008, - 4.868222705420069, - 4.818324243487229, - 4.768302146034095, - 4.71813091503132, - 4.667788727618096, - 4.617258075925165, - 4.566526585980426, - 4.515588053910136, - 4.464443746680647, - 4.413104025492551, - 4.361590362897434, - 4.309937839951754, - 4.258198227301197, - 4.206443773763991, - 4.154771847001712, - 4.103310591620035, - 4.052225787542619, - 4.001729100660312, - 3.9520879104276343, - 3.9036368629229576, - 3.8567912153164507, - 3.8120618854357113, - 3.770071870671665, - 3.7315733274353953, - 3.697464092918853, - 3.668801808846808, - 3.646813168503503, - 3.632895366469411, - 3.628606949508327, - 3.6356464513772533, - 3.655819984193519, - 3.6910037138485006, - 3.7431138014262118, - 3.814104443912067, - 3.906023795143777, - 4.021169464502325, - 4.162407219762678, - 4.333769174856747, - 4.541588263942631, - 4.7968328229035375, - 5.120664042649597, - 5.5610371472236375, - 6.266805548559645, - 8.849130843202666, - 10.093118603171485, - 9.089104703533923, - 8.587688238917139, - 8.247411976462171, - 7.987680492186898, - 7.7763717049739105, - 7.597385509753587, - 7.441491352552731, - 7.302901384788321, - 7.177745331072255, - 7.0633062654001595, - 6.957602798867916, - 6.85914481449496, - 6.766782840196413, - 6.67961103385185, - 6.5969023944254515, - 6.518064148321635, - 6.442606210466509, - 6.370118374167322, - 6.30025348097706, - 6.232714781475497, - 6.167246292772959, - 6.103625337595489, - 6.041656697316637, - 5.9811679764955725, - 5.9220058889397125, - 5.864033253253416, - 5.807126540748142, - 5.751173857865213, - 5.6960732737482695, - 5.641731424534688, - 5.588062341509202, - 5.534986461990648, - 5.482429790761119, - 5.430323186744496, - 5.378601755036814, - 5.327204328676669, - 5.276073028011477, - 5.225152888384936, - 5.174391549313859, - 5.123739000475481, - 5.073147381804137, - 5.022570836899723, - 4.971965420874149, - 4.921289065800379, - 4.870501609181441, - 4.819564893435441, - 4.768442947425994, - 4.717102264708823, - 4.665512197599862, - 4.613645491623419, - 4.561478991645619, - 4.508994559371373, - 4.456180252281138, - 4.403031826973759, - 4.349554645792831, - 4.295766085111985, - 4.241698567282822, - 4.187403366411904, - 4.1329553708808, - 4.078459022182365, - 4.024055688209357, - 3.969932765290102, - 3.916334828958276, - 3.863577154800694, - 3.8120618854357113, - 3.762296994145911, - 3.7149179432326833, - 3.670711497948949, - 3.6306404769720544, - 3.5958672683022486, - 3.567772770286582, - 3.5479662598540034, - 3.538281053078346, - 3.54075156203885, - 3.5575705778732254, - 3.5910323215131665, - 3.6434772719476207, - 3.717268126602993, - 3.814841154337296, - 3.9388949657266936, - 4.092809951568277, - 4.281470707736558, - 4.512891784847004, - 4.8017653888853165, - 5.178732436689384, - 5.722933708899396, - 6.774471152530349, - 12.286532422396668, - 9.491575583749523, - 8.816174131786285, - 8.407520594356868, - 8.111151415040482, - 7.876984366678815, - 7.682365020893552, - 7.515097247650958, - 7.3678551142435165, - 7.235890844800934, - 7.115950226532126, - 7.005704415109827, - 6.903428581767895, - 6.807808942091173, - 6.717821145722293, - 6.632650526997266, - 6.551638031378121, - 6.474242493304341, - 6.400013667096977, - 6.328572528454625, - 6.259596612665958, - 6.192808917468861, - 6.127969377129394, - 6.064868222965797, - 6.003320749248501, - 5.943163140682632, - 5.884249111948967, - 5.82644717563586, - 5.769638401630033, - 5.713714564683812, - 5.658576601432743, - 5.60413331628638, - 5.550300289192013, - 5.4969989485491855, - 5.444155780427898, - 5.391701651354357, - 5.33957122673803, - 5.287702470862821, - 5.236036217508966, - 5.184515802906487, - 5.133086755001046, - 5.08169653506669, - 5.030294329638485, - 4.978830892664292, - 4.927258439790967, - 4.875530598914169, - 4.82360242365418, - 4.77143047941528, - 4.718973015316312, - 4.666190239759653, - 4.613044723003758, - 4.559501957160607, - 4.505531112983236, - 4.451106044180583, - 4.396206604473147, - 4.3408203610150045, - 4.284944811157401, - 4.228590238979432, - 4.171783384832407, - 4.114572146571683, - 4.057031586078492, - 3.99927157907488, - 3.9414465180953178, - 3.883767551997568, - 3.826517908047639, - 3.770071870671665, - 3.7149179432326833, - 3.6616865294259853, - 3.611182041409651, - 3.564418544895294, - 3.5226567528393264, - 3.48743830800826, - 3.4606109894346555, - 3.4443363257947017, - 3.4410704070062406, - 3.4535115733681403, - 3.4845175966121906, - 3.537011466771166, - 3.613917932635368, - 3.7181990985053686, - 3.853086014725391, - 4.022649774247161, - 4.232980544682052, - 4.494638932702306, - 4.828428228102746, - 5.2825351192734145, - 6.009616990702673, - 8.860858382912292, - 10.228560839486317, - 9.131478593154661, - 8.609815424683246, - 8.260560040531079, - 7.995682340221072, - 7.780983233687855, - 7.599553580748895, - 7.441782083109259, - 7.301677974018809, - 7.17525276973027, - 7.059715881200337, - 6.953037498778547, - 6.853694250079536, - 6.760512955927613, - 6.672570312577756, - 6.589126072264712, - 6.5095771329506125, - 6.4334251437948895, - 6.360253113744783, - 6.2897081759824065, - 6.221488658956001, - 6.155334231923476, - 6.091018285387405, - 6.028341962580228, - 5.967129428587563, - 5.907224079540423, - 5.8484854744808015, - 5.790786828912979, - 5.7340129493433984, - 5.678058517294296, - 5.622826652689641, - 5.568227702418764, - 5.514178211839674, - 5.460600046076927, - 5.407419634967302, - 5.354567320962692, - 5.301976793616496, - 5.249584597756333, - 5.197329705308759, - 5.145153143167689, - 5.092997671630636, - 5.0408075098875145, - 4.98852810694633, - 4.9361059583263405, - 4.883488470955212, - 4.830623881099312, - 4.777461232985415, - 4.7239504292222, - 4.670042368434071, - 4.615689190977328, - 4.56084466060847, - 4.505464719024079, - 4.449508261955733, - 4.392938200849423, - 4.335722894215688, - 4.277838058957835, - 4.219269306217997, - 4.160015490815393, - 4.100093120926254, - 4.039542148338724, - 3.978433552438165, - 3.9168792451717347, - 3.855044959082392, - 3.793166929575419, - 3.7315733274353953, - 3.670711497948949, - 3.611182041409651, - 3.553780491166502, - 3.4995465955785576, - 3.449819690700521, - 3.406296029335348, - 3.3710800277965713, - 3.346716591722787, - 3.336187636396397, - 3.3428562569738016, - 3.3703522491051485, - 3.422418042688346, - 3.5027750329321434, - 3.6151196317556473, - 3.7634092044979175, - 3.9526718908093, - 4.190784423720049, - 4.4924103800446105, - 4.889279332024003, - 5.466976617937019, - 6.626269542212197, - 9.624695324346934, - 8.878673811894302, - 8.446442451961362, - 8.138186255545214, - 7.8967948013482285, - 7.69727540401943, - 7.526430586930832, - 7.3764337890118865, - 7.242258959602806, - 7.120484709847924, - 7.008675575081078, - 6.905035399297516, - 6.808200763505543, - 6.717111603768056, - 6.630926797737466, - 6.5489671743523, - 6.4706759023697815, - 6.395590259453766, - 6.323321067837548, - 6.253537423760759, - 6.185955162581927, - 6.120328011358612, - 6.056440708350443, - 5.994103584480244, - 5.933148246655018, - 5.873424102072634, - 5.8147955317900495, - 5.757139570788493, - 5.700343986942811, - 5.644305676910836, - 5.588929315839577, - 5.53412621187164, - 5.479813327065751, - 5.425912434458809, - 5.372349387262465, - 5.319053481087974, - 5.2659568939836365, - 5.212994192215088, - 5.160101892323472, - 5.107218072221565, - 5.0542820260670185, - 5.001233959502972, - 4.948014723690964, - 4.894565588493792, - 4.840828057323534, - 4.78674372870163, - 4.732254212668853, - 4.677301114069958, - 4.621826099731131, - 4.565771073060547, - 4.509078488186804, - 4.4516918471536755, - 4.3935564389236585, - 4.334620399376738, - 4.274836198977009, - 4.214162701811622, - 4.152567989612464, - 4.090033211531247, - 4.026557810486713, - 3.9621665968102886, - 3.896919297746547, - 3.8309234152427267, - 3.7643514798982274, - 3.697464092918853, - 3.6306404769720544, - 3.564418544895294, - 3.4995465955785576, - 3.437048373790884, - 3.3783018905456434, - 3.3251293468163476, - 3.2798898505218554, - 3.245557868971852, - 3.225759732462399, - 3.224733148761195, - 3.2471815975539946, - 3.298031430786806, - 3.3821729226220953, - 3.5043658846748604, - 3.6695913975177863, - 3.8842584284083608, - 4.159056962185768, - 4.515826193719366, - 5.008334627891152, - 5.823227497936028, - 10.726724932141277, - 9.269356848080161, - 8.687731691741153, - 8.31361272818786, - 8.035059328421786, - 7.811659579023129, - 7.624170598099661, - 7.461907365087294, - 7.318315962222357, - 7.189083932467553, - 7.071220965793134, - 6.962567304720955, - 6.861511265647825, - 6.766817447203479, - 6.677517337277336, - 6.592836950058515, - 6.51214739703565, - 6.434930184045948, - 6.360752261248207, - 6.289247708019957, - 6.220104038856453, - 6.15305179503119, - 6.087856516010215, - 6.0243124630245335, - 5.962237651912833, - 5.901469877401162, - 5.84186349722132, - 5.783286804936481, - 5.725619863392112, - 5.66875270179151, - 5.612583802127597, - 5.557018817529805, - 5.501969477682935, - 5.447352646009615, - 5.393089500602001, - 5.339104816530257, - 5.2853263315722385, - 5.231684180916235, - 5.178110389224122, - 5.124538410790013, - 5.070902710537408, - 5.017138380391445, - 4.963180787256269, - 4.908965250533084, - 4.854426748953064, - 4.7994996586112215, - 4.744117526645573, - 4.688212888233973, - 4.631717138775463, - 4.574560478686713, - 4.516671955730218, - 4.45797963996678, - 4.398410980361409, - 4.337893411270599, - 4.2763553036111395, - 4.213727392428069, - 4.149944864023021, - 4.084950357635567, - 4.018698237048966, - 3.9511606276291458, - 3.8823359092653025, - 3.8122606249304876, - 3.741026131553494, - 3.668801808846808, - 3.5958672683022486, - 3.5226567528393264, - 3.449819690700521, - 3.3783018905456434, - 3.309451517173328, - 3.24515155743885, - 3.187973957925152, - 3.1413373999185863, - 3.1096293083079036, - 3.09822756201352, - 3.113346650921076, - 3.1616729777276276, - 3.2498824325543736, - 3.3843444133790563, - 3.571542128740053, - 3.819985115584399, - 4.145165880357228, - 4.5829589418835015, - 5.2407241796020285, - 6.782587321195149, - 9.96205114212942, - 9.02402090868155, - 8.53783562000021, - 8.204039674676508, - 7.947699616746732, - 7.738327372648625, - 7.5604693284074855, - 7.405201482160386, - 7.266899628850659, - 7.141788417726881, - 7.027209414669056, - 6.9212189061622205, - 6.822351823302847, - 6.729475692315749, - 6.641696313709353, - 6.558294627264169, - 6.478683149418357, - 6.402375121307398, - 6.328962157630825, - 6.258097728111506, - 6.189484731656555, - 6.122865999912953, - 6.058016934920704, - 5.99473972621914, - 5.932858753588114, - 5.872216891207874, - 5.812672505049158, - 5.754096988899324, - 5.696372722769945, - 5.6393913652299466, - 5.583052411615159, - 5.527261965218021, - 5.471931679932746, - 5.416977841451286, - 5.362320560702635, - 5.307883058326038, - 5.253591022948871, - 5.19937202918462, - 5.145155003789132, - 5.090869730480448, - 5.0364463856737824, - 4.9818150989247165, - 4.926905533318281, - 4.871646482499117, - 4.815965482631234, - 4.759788439453674, - 4.703039272952004, - 4.645639585251893, - 4.58750836151448, - 4.528561719372211, - 4.468712730497681, - 4.4078713492658705, - 4.345944499627363, - 4.282836394403714, - 4.21844919438825, - 4.152684162501214, - 4.08544353760594, - 4.01663345346927, - 3.9461683755122605, - 3.8739777430871283, - 3.8000158193973173, - 3.7242762093629542, - 3.646813168503503, - 3.567772770286582, - 3.48743830800826, - 3.406296029335348, - 3.3251293468163476, - 3.24515155743885, - 3.168187460028244, - 3.0969099188655216, - 3.0351224043754415, - 2.9880443701375707, - 2.962498281626862, - 2.966833989926659, - 3.0104317077103455, - 3.1028266088975758, - 3.252960906690851, - 3.469636318297467, - 3.7647967638935778, - 4.163095400711116, - 4.732770617431855, - 5.766944157066227, - 9.56399448252114, - 8.84242178155426, - 8.417833873009053, - 8.113172969772416, - 7.873774154107899, - 7.675445449190894, - 7.505328727395929, - 7.3557655788855785, - 7.22182252321991, - 7.10013311098727, - 6.988296337056539, - 6.88453856083221, - 6.7875115120662075, - 6.696165514046069, - 6.609666626119053, - 6.527340620277947, - 6.448633990339916, - 6.373086129994216, - 6.30030904342335, - 6.2299722621581655, - 6.16179143870921, - 6.0955195868814025, - 6.030940259931053, - 5.967862169286516, - 5.9061148888344155, - 5.845545387288397, - 5.786015199145972, - 5.727398092884968, - 5.669578129631806, - 5.612448030694016, - 5.555907790871819, - 5.49986348824559, - 5.444226251490369, - 5.388911353615462, - 5.333837407020159, - 5.278925639365921, - 5.224099233333373, - 5.169282716112826, - 5.114401386660686, - 5.059380770489113, - 5.004146093162213, - 4.948621764850957, - 4.892730869346843, - 4.836394651949406, - 4.779532001739007, - 4.722058925066281, - 4.66388800882517, - 4.604927874495986, - 4.545082627435709, - 4.48425131102182, - 4.422327382865364, - 4.359198241658965, - 4.294744850218261, - 4.228841525801554, - 4.161356007275216, - 4.092149966942987, - 4.021080223427594, - 3.9480010473158225, - 3.8727681590450205, - 3.795245338956628, - 3.715315065468494, - 3.632895366469411, - 3.5479662598540034, - 3.4606109894346555, - 3.3710800277965713, - 3.2798898505218554, - 3.187973957925152, - 3.0969099188655216, - 3.0092503354838374, - 2.928978759453399, - 2.862073852414331, - 2.8170645314099527, - 2.8052790603669986, - 2.8403308141995676, - 2.9365912240273015, - 3.1074060280296836, - 3.365397838677281, - 3.7287361003993356, - 4.2425858028031955, - 5.073888008530701, - 10.93219050063055, - 9.306054255622689, - 8.703608322068659, - 8.321189918062622, - 8.03807057799639, - 7.8117093132815025, - 7.6220900834243075, - 7.458179166202735, - 7.313242014951033, - 7.182863016773593, - 7.063988461268742, - 6.954417289949882, - 6.8525095858050085, - 6.757009827539704, - 6.666934620759242, - 6.58149858487641, - 6.500063815198098, - 6.422104452043933, - 6.347181237366222, - 6.27492285514695, - 6.205011989664066, - 6.137174733857503, - 6.0711724208402, - 6.006795237099385, - 5.943857165083192, - 5.882191930761138, - 5.821649719824184, - 5.762094487862688, - 5.703401733699073, - 5.645456636641302, - 5.58815248146742, - 5.531389311948075, - 5.475072766371816, - 5.419113058043051, - 5.363424070907499, - 5.307922545917092, - 5.252527337900728, - 5.197158725867866, - 5.141737762064968, - 5.086185646898413, - 5.030423118158662, - 4.974369843927579, - 4.917943809204672, - 4.8610606867197745, - 4.8036331826808105, - 4.745570348418134, - 4.6867768491381785, - 4.627152181441182, - 4.566589832117805, - 4.504976372367539, - 4.442190484523811, - 4.378101923487228, - 4.312570423722946, - 4.245444577047628, - 4.176560730010334, - 4.105741988112629, - 4.032797476628582, - 3.9575221095138264, - 3.8796972839253363, - 3.7990931901469858, - 3.715473875868468, - 3.628606949508327, - 3.538281053078346, - 3.4443363257947017, - 3.346716591722787, - 3.245557868971852, - 3.1413373999185863, - 3.0351224043754415, - 2.928978759453399, - 2.826621300773955, - 2.7343833900625527, - 2.6624777634935777, - 2.626169159415042, - 2.645825979956656, - 2.744528279020744, - 2.943848064850016, - 3.2632868922297633, - 3.7342171515216, - 4.461089725871176, - 6.232021780114661, - 10.25563914353868, - 9.125329369907373, - 8.596552414362298, - 8.243888703634536, - 7.976820649851166, - 7.760469994947559, - 7.577665515860463, - 7.418672767415024, - 7.277434972966177, - 7.14992463698853, - 7.0333262351587615, - 6.925592913367839, - 6.8251889228609555, - 6.730931579269921, - 6.641889884633698, - 6.557317050936346, - 6.476604164118607, - 6.39924750164949, - 6.324824937898928, - 6.2529785585593745, - 6.1834016154899345, - 6.115828577586812, - 6.050027429925131, - 5.98579363175052, - 5.9229453159076835, - 5.861319429117012, - 5.800768593284295, - 5.741158524785736, - 5.682365889136439, - 5.624276497681171, - 5.566783774307595, - 5.509787435950972, - 5.453192342397788, - 5.396907479689215, - 5.3408450480370355, - 5.284919630135681, - 5.229047419471493, - 5.173145490971668, - 5.117131098300085, - 5.060920983437528, - 5.004430684979882, - 4.9475738319185005, - 4.890261409577202, - 4.832400983898404, - 4.773895869414004, - 4.714644225017575, - 4.654538060091777, - 4.593462131676745, - 4.5312927112736, - 4.467896197727923, - 4.4031275507492165, - 4.336828518582029, - 4.268825634214113, - 4.198927959176701, - 4.1269245658040346, - 4.052581773677158, - 3.975640204336224, - 3.895811808834884, - 3.812777188805198, - 3.7261838341891806, - 3.6356464513772533, - 3.54075156203885, - 3.4410704070062406, - 3.336187636396397, - 3.225759732462399, - 3.1096293083079036, - 2.9880443701375707, - 2.862073852414331, - 2.7343833900625527, - 2.6106382285166516, - 2.501856741950898, - 2.427699801527715, - 2.419118691807343, - 2.515973586188121, - 2.7570723751984856, - 3.175979100409284, - 3.84033695882658, - 5.1461508759891235, - 9.911390484877888, - 8.995808012031125, - 8.5150004742418, - 8.183451164324245, - 7.928227902884764, - 7.71943168786439, - 7.541844208341242, - 7.38665354456379, - 7.248295364696345, - 7.123028933405214, - 7.008216967322767, - 6.901929165192484, - 6.8027091422659005, - 6.709430065496044, - 6.621201323657019, - 6.53730599887645, - 6.457157686933611, - 6.380269892487641, - 6.306233839551627, - 6.234702058618383, - 6.165376028593313, - 6.097996721473879, - 6.032337261600573, - 5.968197149373525, - 5.905397658482071, - 5.843778124173495, - 5.783192915327668, - 5.723508936117115, - 5.6646035409133155, - 5.606362773509342, - 5.548679861777296, - 5.491453913675816, - 5.43458877151749, - 5.377991989606103, - 5.321573906466254, - 5.265246787412465, - 5.208924016494152, - 5.152519319155101, - 5.095945998431616, - 5.039116168294393, - 4.98193996788054, - 4.924324739889997, - 4.866174155326148, - 4.807387265001179, - 4.747857455726117, - 4.687471285750613, - 4.626107169655332, - 4.5636338773344844, - 4.4999088046968065, - 4.434775964979959, - 4.368063638815222, - 4.299581608125374, - 4.229117883460864, - 4.156434816733805, - 4.081264472632591, - 4.003303115319364, - 3.9222046592962436, - 3.8375729496618107, - 3.7489528091815085, - 3.655819984193519, - 3.5575705778732254, - 3.4535115733681403, - 3.3428562569738016, - 3.224733148761195, - 3.09822756201352, - 2.962498281626862, - 2.8170645314099527, - 2.6624777634935777, - 2.501856741950898, - 2.344285725059062, - 2.211708927031048, - 2.149656727700242, - 2.2323010312238716, - 2.5406014920710027, - 3.1433552157550064, - 4.272842166596296, - 9.705838168113717, - 8.904826776603791, - 8.455371392593136, - 8.138436120075314, - 7.891641630226296, - 7.688309410337447, - 7.51453526859715, - 7.36214374458526, - 7.225916175331479, - 7.10231568964351, - 6.988832956514501, - 6.883621983735373, - 6.7852841447186565, - 6.692733451186322, - 6.605108941579262, - 6.521715692422899, - 6.441983909751725, - 6.365439826654741, - 6.291684533937218, - 6.22037827588098, - 6.151228594062732, - 6.083981233400198, - 6.0184130651537195, - 5.954326505180287, - 5.8915450556506554, - 5.8299097008953105, - 5.769275959273386, - 5.709511443242558, - 5.650493815793582, - 5.592109057475034, - 5.534249977298726, - 5.476814914871304, - 5.419706591509093, - 5.362831075809891, - 5.30609683484097, - 5.249413846221347, - 5.192692749251518, - 5.135844015094193, - 5.078777116974918, - 5.0213996815279, - 4.963616601780769, - 4.905329090821325, - 4.846433652834584, - 4.786820944794114, - 4.726374497418662, - 4.66496925775196, - 4.602469907456815, - 4.538728900038103, - 4.473584145905948, - 4.406856255339784, - 4.3383452244800775, - 4.267826416348051, - 4.19504564468512, - 4.119713109175811, - 4.041495851079582, - 3.9600082915419836, - 3.8748002724116013, - 3.7853418323220627, - 3.6910037138485006, - 3.5910323215131665, - 3.4845175966121906, - 3.3703522491051485, - 3.2471815975539946, - 3.113346650921076, - 2.966833989926659, - 2.8052790603669986, - 2.626169159415042, - 2.427699801527715, - 2.211708927031048, - 1.9930921794022776, - 1.8268738342058506, - 1.85681981911289, - 2.291668317746145, - 3.3329541065246326, - 9.584170473813224, - 8.845997321139969, - 8.415805162983592, - 8.108188065638446, - 7.866869034837413, - 7.667125916551412, - 7.4958746797475495, - 7.3453440378261785, - 7.210537520763363, - 7.088050480577709, - 6.97545714657072, - 6.870966882379988, - 6.773219146204438, - 6.681154972576789, - 6.5939330666370255, - 6.510873120862986, - 6.43141639170433, - 6.355097582963715, - 6.281524347814079, - 6.210362051927704, - 6.141322248820996, - 6.074153824787023, - 6.008636096204129, - 5.94457335613318, - 5.881790510990234, - 5.820129546585512, - 5.759446631405397, - 5.699609713492151, - 5.640496501998528, - 5.581992749649515, - 5.523990770736301, - 5.466388142804263, - 5.409086550186972, - 5.351990734889956, - 5.29500752567296, - 5.238044919955197, - 5.1810111956721325, - 5.123814031636652, - 5.066359615410935, - 5.00855171721548, - 4.95029070695929, - 4.891472488972096, - 4.8319873252779155, - 4.771718512994514, - 4.710540874272973, - 4.648319007530392, - 4.584905235760115, - 4.520137170266991, - 4.453834784609854, - 4.385796861444269, - 4.315796630850512, - 4.243576357441674, - 4.168840547341871, - 4.091247323251457, - 4.010397338127948, - 3.925819337023676, - 3.8369510868528147, - 3.7431138014262118, - 3.6434772719476207, - 3.537011466771166, - 3.422418042688346, - 3.298031430786806, - 3.1616729777276276, - 3.0104317077103455, - 2.8403308141995676, - 2.645825979956656, - 2.419118691807343, - 2.149656727700242, - 1.8268738342058506, - 1.4680365005064844, - 1.3032277486611024, - 2.0681893000266145, - 9.526106265379523, - 8.816600427814995, - 8.395738039118388, - 8.092730093267546, - 7.854148839730987, - 7.656211865621902, - 7.4862354292801285, - 7.336647554527113, - 7.202562140965336, - 7.0806405740655824, - 6.968498985711166, - 6.8643745871549715, - 6.76692604306477, - 6.675108041194781, - 6.588089236246758, - 6.505196720611573, - 6.425877346287467, - 6.349670103945556, - 6.276185963031843, - 6.205092870506562, - 6.136104393398165, - 6.068970984185978, - 6.003473165876802, - 5.939416143034826, - 5.876625485866965, - 5.814943630980794, - 5.754227009683625, - 5.694343662252668, - 5.635171230682983, - 5.576595247106174, - 5.5185076531121355, - 5.46080549846281, - 5.403389777441106, - 5.34616436821552, - 5.28903504573517, - 5.231908542221722, - 5.174691631574506, - 5.117290215125713, - 5.059608386259099, - 5.001547450444484, - 4.943004875171207, - 4.883873140930333, - 4.8240384595395795, - 4.7633793193358445, - 4.701764807507221, - 4.639052647277433, - 4.5750868706054355, - 4.509695023803487, - 4.4426847714927495, - 4.373839719875146, - 4.302914217787937, - 4.22962680482625, - 4.153651846562695, - 4.0746087062226595, - 3.9920475153426835, - 3.905430164935122, - 3.814104443912067, - 3.717268126602993, - 3.613917932635368, - 3.5027750329321434, - 3.3821729226220953, - 3.2498824325543736, - 3.1028266088975758, - 2.9365912240273015, - 2.744528279020744, - 2.515973586188121, - 2.2323010312238716, - 1.85681981911289, - 1.3032277486611024, - 0.3573067210814654, - 9.526216260016223, - 8.816659377822647, - 8.39578021054458, - 8.092764042054165, - 7.854177995488431, - 7.656237952135114, - 7.486259440640751, - 7.33667012100202, - 7.202583691616601, - 7.080661418126198, - 6.968519357058157, - 6.864394670349682, - 6.76694598948409, - 6.675127979516237, - 6.588109279562979, - 6.505216971456551, - 6.425897900331874, - 6.349691052827242, - 6.276207396619768, - 6.205114878796448, - 6.136127068177206, - 6.068994420566188, - 6.003497463773222, - 5.939441408650769, - 5.876651833240688, - 5.814971183644808, - 5.754255902488271, - 5.694374043409136, - 5.63520326408753, - 5.5766291150171385, - 5.518543559264851, - 5.4608436717255335, - 5.403430476138645, - 5.346207885278047, - 5.289081714869831, - 5.231958745357175, - 5.174745807897552, - 5.117348872120635, - 5.059672113282051, - 5.00161693552907, - 4.943080925983288, - 4.883956711093907, - 4.8241306819756895, - 4.7634815488437185, - 4.701878675647606, - 4.639180133808188, - 4.575230397447644, - 4.509857580063298, - 4.442870081877723, - 4.37405247465396, - 4.303160391462469, - 4.229914104981567, - 4.153990357540695, - 4.075011830805885, - 3.992533383531023, - 3.906023795143777, - 3.814841154337296, - 3.7181990985053686, - 3.6151196317556473, - 3.5043658846748604, - 3.3843444133790563, - 3.252960906690851, - 3.1074060280296836, - 2.943848064850016, - 2.7570723751984856, - 2.5406014920710027, - 2.291668317746145, - 2.0681893000266145, - 9.58997642579378, - 8.848940082485129, - 8.417838406602817, - 8.10977787256985, - 7.868198661151409, - 7.668286297794943, - 7.496917668992095, - 7.346302116853768, - 7.2114324881083105, - 7.088897771080588, - 6.9762681787873975, - 6.87175042523296, - 6.773982159970736, - 6.681903150812657, - 6.594671199513683, - 6.511605347536828, - 6.432146381464823, - 6.35582866946748, - 6.282259631812576, - 6.2111044825824155, - 6.14207469043563, - 6.074919113734661, - 6.009417091517807, - 5.945372986388262, - 5.882611819574633, - 5.820975737131674, - 5.760321114987777, - 5.700516159141123, - 5.641438892128234, - 5.582975442136411, - 5.525018569619774, - 5.467466379921864, - 5.410221180524731, - 5.3531884490536905, - 5.296275883713593, - 5.239392511872007, - 5.182447835359199, - 5.125350992950727, - 5.068009921593986, - 5.010330498343638, - 4.952215644757482, - 4.893564374729805, - 4.834270765457648, - 4.7742228295241445, - 4.713301264084496, - 4.651378051133349, - 4.588314881364781, - 4.523961374263192, - 4.458153070799403, - 4.390709186276697, - 4.32143013676498, - 4.250094907189662, - 4.1764584398437945, - 4.100249443293461, - 4.021169464502325, - 3.9388949657266936, - 3.853086014725391, - 3.7634092044979175, - 3.6695913975177863, - 3.571542128740053, - 3.469636318297467, - 3.365397838677281, - 3.2632868922297633, - 3.175979100409284, - 3.1433552157550064, - 3.3329541065246326, - 9.737714833064212, - 8.91987796987287, - 8.465541015931592, - 8.14629817070538, - 7.898170505536063, - 7.693978717903972, - 7.519611487109653, - 7.36679221776461, - 7.230247052904034, - 7.106406495397008, - 6.992740741345573, - 6.8873903502260525, - 6.78894754422539, - 6.696319938834681, - 6.608642015035255, - 6.525215563712687, - 6.445468414381043, - 6.3689250944073, - 6.295185499870685, - 6.223909082762904, - 6.154802920781549, - 6.0876125734101185, - 6.0221149723343235, - 5.95811282020712, - 5.895430123250891, - 5.8339085867034655, - 5.773404674105496, - 5.713787182296801, - 5.654935220466597, - 5.596736508119904, - 5.539085926353392, - 5.481884271408218, - 5.425037170495964, - 5.368454128377997, - 5.312047679849117, - 5.25573262868723, - 5.199425358228665, - 5.143043202907311, - 5.086503874244842, - 5.029724939339281, - 4.972623355427363, - 4.915115071363153, - 4.8571147169901785, - 4.7985354161076685, - 4.7392887807381445, - 4.679285178009571, - 4.6184344132212996, - 4.556647055319998, - 4.493836764067609, - 4.429924196452864, - 4.364843435527094, - 4.2985525119120105, - 4.231050692822179, - 4.162407219762678, - 4.092809951568277, - 4.022649774247161, - 3.9526718908093, - 3.8842584284083608, - 3.819985115584399, - 3.7647967638935778, - 3.7287361003993356, - 3.7342171515216, - 3.84033695882658, - 4.272842166596296, - 10.02429063892537, - 9.042184180481218, - 8.545189730402559, - 8.206388534884265, - 7.947084627816515, - 7.735697849842119, - 7.556340578312335, - 7.399881917309936, - 7.260586364553196, - 7.134613248369543, - 7.019263162956376, - 6.912565297439304, - 6.813035858883859, - 6.719528942391538, - 6.63114039282305, - 6.547143550103151, - 6.466944971320098, - 6.390053107676846, - 6.316055635133315, - 6.244602716498184, - 6.175394422150956, - 6.108171125508663, - 6.042706064849769, - 5.978799508459253, - 5.916274123944717, - 5.854971264259457, - 5.794747960501703, - 5.735474466329999, - 5.677032238189241, - 5.6193122643180935, - 5.562213676960099, - 5.505642598568455, - 5.449511185666767, - 5.393736844578376, - 5.338241602385105, - 5.282951625009636, - 5.227796882988733, - 5.172710975137433, - 5.117631131897314, - 5.062498435047698, - 5.007258310524021, - 4.951861379118599, - 4.896264790071191, - 4.8404342215851734, - 4.784346820617728, - 4.727995488920777, - 4.671395131518245, - 4.614591815615945, - 4.557676326071814, - 4.500804498223846, - 4.444228238519164, - 4.38834384361611, - 4.333769174856747, - 4.281470707736558, - 4.232980544682052, - 4.190784423720049, - 4.159056962185768, - 4.145165880357228, - 4.163095400711116, - 4.2425858028031955, - 4.461089725871176, - 5.1461508759891235, - 10.64335848195951, - 9.24191916504611, - 8.66786186512231, - 8.296635347660061, - 8.019541947954313, - 7.796974794210053, - 7.609986606591964, - 7.448026478574518, - 7.304610174146845, - 7.175465069149421, - 7.057625320210755, - 6.948947081732825, - 6.847829526605166, - 6.753044983301793, - 6.663630669802362, - 6.578817023270917, - 6.497978717106567, - 6.420600258748686, - 6.3462512525311485, - 6.274568243653936, - 6.205241150511397, - 6.13800296396514, - 6.072621817159488, - 6.008894805486449, - 5.946643119737772, - 5.885708180009104, - 5.825948544183692, - 5.76723742578359, - 5.709460699971922, - 5.652515309012973, - 5.596308003266564, - 5.540754373415359, - 5.485778146016655, - 5.431310729150948, - 5.377291009235989, - 5.3236654153051335, - 5.270388284700216, - 5.217422586074658, - 5.164741084394552, - 5.112328071934695, - 5.0601818445707885, - 5.008318182373241, - 4.956775210818343, - 4.9056201950694795, - 4.854959089641003, - 4.804950088161806, - 4.755823094798188, - 4.70790815215996, - 4.661677746715891, - 4.617811219506925, - 4.577295542908397, - 4.541588263942631, - 4.512891784847004, - 4.494638932702306, - 4.4924103800446105, - 4.515826193719366, - 4.5829589418835015, - 4.732770617431855, - 5.073888008530701, - 6.232021780114661, - 9.582033809493971, - 8.85455910866037, - 8.428241749001177, - 8.122881452824817, - 7.883202994968608, - 7.684814329426074, - 7.514773168509331, - 7.365380216199755, - 7.231680364473735, - 7.110295252866274, - 6.998817376721592, - 6.895469878521174, - 6.798903428883541, - 6.708068828914342, - 6.622133803652239, - 6.540426786146044, - 6.462397830596672, - 6.387590758409261, - 6.315622883174386, - 6.2461699789004195, - 6.17895495776699, - 6.113739226394056, - 6.050316013371704, - 5.988505174484017, - 5.928149126408953, - 5.8691096594361545, - 5.8112654503665935, - 5.754510148149658, - 5.698750943521848, - 5.643907564430222, - 5.589911664607646, - 5.536706595868628, - 5.484247577753134, - 5.432502303312125, - 5.381452049693208, - 5.331093400078143, - 5.2814407340749066, - 5.232529713655207, - 5.184422091453549, - 5.1372123138101085, - 5.0910366081811, - 5.046085575968896, - 5.002621829306495, - 4.961005039003622, - 4.9217281259652506, - 4.885470650955196, - 4.853179559598406, - 4.82619500935341, - 4.806453724716324, - 4.7968328229035375, - 4.8017653888853165, - 4.828428228102746, - 4.889279332024003, - 5.008334627891152, - 5.2407241796020285, - 5.766944157066227, - 10.289080121787993, - 9.151599318801969, - 8.622077582044184, - 8.269600102425274, - 8.003058648223837, - 7.78741770831872, - 7.605448272623405, - 7.447391380501912, - 7.307179660317306, - 7.180781865638972, - 7.065382573164228, - 6.95893748965198, - 6.8599152037097015, - 6.76713880872349, - 6.679684375404075, - 6.596813436220909, - 6.517926683028831, - 6.442531372413668, - 6.370217864663371, - 6.300642415300224, - 6.233514352244992, - 6.168586399023466, - 6.105647303897587, - 6.044516196090588, - 5.98503826567634, - 5.927081484660598, - 5.870534172777242, - 5.815303275024622, - 5.761313267284961, - 5.708505647364564, - 5.6568390059672495, - 5.606289709375518, - 5.556853266900986, - 5.508546506074644, - 5.461410743115891, - 5.415516224044797, - 5.370968235807291, - 5.327915467150185, - 5.286561468234541, - 5.247180470069464, - 5.210139472026751, - 5.175929550848094, - 5.145211085930221, - 5.118880602318441, - 5.0981723432470805, - 5.0848179057094045, - 5.081307741180104, - 5.09134232023102, - 5.120664042649597, - 5.178732436689384, - 5.2825351192734145, - 5.466976617937019, - 5.823227497936028, - 6.782587321195149, - 9.697560994538424, - 8.923627672181164, - 8.48334080228574, - 8.171660340596366, - 7.928679991734879, - 7.728509815819228, - 7.557578575390655, - 7.407878579291094, - 7.274287484124868, - 7.153330027928917, - 7.042540281165506, - 6.940105669553077, - 6.844655466038149, - 6.755128681967156, - 6.670688112567043, - 6.590662485659455, - 6.514506406376284, - 6.441771958277909, - 6.3720881702925105, - 6.305145936786291, - 6.24068681525036, - 6.178494651190587, - 6.118389319203749, - 6.0602220953221035, - 6.003872331438937, - 5.949245214366574, - 5.896270476736992, - 5.844901996039895, - 5.79511828017366, - 5.7469239002544255, - 5.700352001424043, - 5.655468108723291, - 5.612375559504786, - 5.571223053653573, - 5.5322150450344525, - 5.495626045908995, - 5.461820454275893, - 5.4312803704869905, - 5.4046452755655, - 5.382769834017607, - 5.3668103122890285, - 5.35835793714315, - 5.3596528433944215, - 5.3739442786058556, - 5.406135248435348, - 5.464031642516544, - 5.5610371472236375, - 5.722933708899396, - 6.009616990702673, - 6.626269542212197, - 11.698081755531529, - 9.467103415445111, - 8.817464705495551, - 8.418856803415995, - 8.12840579251439, - 7.898524054199124, - 7.707420445550775, - 7.543281365989031, - 7.39898037502964, - 7.269887539018811, - 7.152826066716027, - 7.045523163606421, - 6.9462984064991975, - 6.8538761850111, - 6.767267358763792, - 6.685691655697739, - 6.6085251488304095, - 6.535263773134519, - 6.465497453546943, - 6.398891472016369, - 6.335172920881549, - 6.274120839248208, - 6.215559105882753, - 6.1593514769858055, - 6.105398374442456, - 6.053635189043552, - 6.004031989221806, - 5.956594637260563, - 5.911367426796519, - 5.868437482885279, - 5.827941327299495, - 5.790074232853662, - 5.755103311111693, - 5.723385762878915, - 5.6953944818713635, - 5.6717544377188265, - 5.653295344412063, - 5.64112976207875, - 5.636772449958209, - 5.642329664552801, - 5.66081356365607, - 5.696695605437245, - 5.756956252641357, - 5.853284906240746, - 6.007383692568173, - 6.266805548559645, - 6.774471152530349, - 8.860858382912292, - 11.337009257271776, - 9.442979736936502, - 8.817654107091581, - 8.428683879139944, - 8.143859273266981, - 7.917979581110967, - 7.730093276669034, - 7.56876168669242, - 7.427054327828024, - 7.300456725573346, - 7.185867425037162, - 7.081067616747409, - 6.984419149498678, - 6.894682366664024, - 6.8109010470036955, - 6.732326990025052, - 6.658369105522987, - 6.588558260413254, - 6.522522632957203, - 6.459970327134147, - 6.4006771963628015, - 6.34447857153964, - 6.291264076207589, - 6.240975051571888, - 6.1936043730753685, - 6.149198663633812, - 6.107863132580742, - 6.069769530098744, - 6.035168049882509, - 6.004404505305585, - 5.977944856863546, - 5.95641037452948, - 5.940628734302794, - 5.931709862998127, - 5.931161763046451, - 5.941073901615709, - 5.964421052068028, - 6.005596380736904, - 6.071418317502665, - 6.173228205340585, - 6.331902579314555, - 6.592600005478541, - 7.0875353757805195, - 8.849130843202666, - 9.654523983074306, - 8.948520135082832, - 8.532435006053245, - 8.234775093965432, - 8.001995559331103, - 7.81029710428024, - 7.647010391802963, - 7.504592352116489, - 7.378195140651342, - 7.2645261654106426, - 7.161255155931882, - 7.066680992406679, - 6.97953301984572, - 6.898846929780182, - 6.823884394476792, - 6.754079659749345, - 6.689003512789245, - 6.628338964685797, - 6.571865237277182, - 6.519448008056282, - 6.471034753531018, - 6.426654668652687, - 6.386423170005317, - 6.350551521148817, - 6.319362757631952, - 6.293315979213209, - 6.273042445954495, - 6.259399171954641, - 6.25354964350861, - 6.25708851197617, - 6.272241150288427, - 6.30219808771815, - 6.3517097256743735, - 6.428228783509433, - 6.544344721402742, - 6.723792008607333, - 7.020071846477261, - 7.604663529276777, - 10.463339431393358, - 9.316885428607113, - 8.791378344701902, - 8.44511641702159, - 8.185886200813792, - 7.978393891327557, - 7.805350614830336, - 7.65700886245473, - 7.527347897564927, - 7.412406151521593, - 7.309456997455404, - 7.216563642059105, - 7.132322371289635, - 7.055707039523428, - 6.985971687973464, - 6.922588605407499, - 6.865209374659318, - 6.813641950950442, - 6.7678400285111895, - 6.7279030552915655, - 6.694086905435932, - 6.666826869712063, - 6.646776729327085, - 6.634870892406951, - 6.632422079963135, - 6.641277285610642, - 6.664075169921978, - 6.704692058927965, - 6.769067385985858, - 6.866872932790584, - 7.015329602245112, - 7.2496738655551605, - 7.662076266833832, - 8.694215409194621, - 10.65195303459715, - 9.445803811307702, - 8.913956453108614, - 8.568729150190505, - 8.313324016455482, - 8.111282263826855, - 7.944928250748371, - 7.804394345444991, - 7.683660675733759, - 7.578837511673922, - 7.487323618323547, - 7.407357726508005, - 7.337766276592935, - 7.277818671718178, - 7.227147389888905, - 7.185712330495403, - 7.153800914758279, - 7.13206395112982, - 7.1215957688223, - 7.124079268409017, - 7.1420385678103635, - 7.179288039616755, - 7.241774623621455, - 7.339296314105706, - 7.489463543417063, - 7.728675790512112, - 8.153679452909833, - 9.252115577152018, - 10.919709353340108, - 9.677428158417456, - 9.151829044916632, - 8.819495575133688, - 8.580544114744155, - 8.397987996054603, - 8.254261089809718, - 8.139902260122971, - 8.049531973413167, - 7.980159998524559, - 7.930425003903442, - 7.900292996151178, - 7.891057495343505, - 7.9056414589346335, - 7.94935808307075, - 8.031603563011325, - 8.1698810361932, - 8.401116806929606, - 8.825137643250978, - 9.96530820301075 - ], - "colorbar": { - "title": "Poincare Distance" - }, - "colorscale": "Viridis", - "showscale": true, - "size": "9" - }, - "mode": "markers", - "name": "", - "text": [ - "Distance from (0.70, 0.70): 12.34", - "Distance from (0.70, 0.70): 11.13", - "Distance from (0.70, 0.70): 10.64", - "Distance from (0.70, 0.70): 10.34", - "Distance from (0.70, 0.70): 10.13", - "Distance from (0.70, 0.70): 9.99", - "Distance from (0.70, 0.70): 9.88", - "Distance from (0.70, 0.70): 9.80", - "Distance from (0.70, 0.70): 9.75", - "Distance from (0.70, 0.70): 9.72", - "Distance from (0.70, 0.70): 9.71", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.76", - "Distance from (0.70, 0.70): 9.82", - "Distance from (0.70, 0.70): 9.91", - "Distance from (0.70, 0.70): 10.04", - "Distance from (0.70, 0.70): 10.23", - "Distance from (0.70, 0.70): 10.51", - "Distance from (0.70, 0.70): 10.99", - "Distance from (0.70, 0.70): 12.18", - "Distance from (0.70, 0.70): 11.95", - "Distance from (0.70, 0.70): 10.77", - "Distance from (0.70, 0.70): 10.27", - "Distance from (0.70, 0.70): 9.95", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 9.42", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 9.16", - "Distance from (0.70, 0.70): 9.11", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 9.04", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 9.05", - "Distance from (0.70, 0.70): 9.08", - "Distance from (0.70, 0.70): 9.14", - "Distance from (0.70, 0.70): 9.20", - "Distance from (0.70, 0.70): 9.29", - "Distance from (0.70, 0.70): 9.41", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 9.77", - "Distance from (0.70, 0.70): 10.07", - "Distance from (0.70, 0.70): 10.55", - "Distance from (0.70, 0.70): 11.72", - "Distance from (0.70, 0.70): 11.67", - "Distance from (0.70, 0.70): 10.55", - "Distance from (0.70, 0.70): 10.05", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 9.18", - "Distance from (0.70, 0.70): 9.06", - "Distance from (0.70, 0.70): 8.97", - "Distance from (0.70, 0.70): 8.88", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.76", - "Distance from (0.70, 0.70): 8.71", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.62", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.63", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.70", - "Distance from (0.70, 0.70): 8.75", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.90", - "Distance from (0.70, 0.70): 9.00", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 9.28", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 9.80", - "Distance from (0.70, 0.70): 10.28", - "Distance from (0.70, 0.70): 11.38", - "Distance from (0.70, 0.70): 10.80", - "Distance from (0.70, 0.70): 10.12", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.46", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 9.09", - "Distance from (0.70, 0.70): 8.95", - "Distance from (0.70, 0.70): 8.84", - "Distance from (0.70, 0.70): 8.74", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.36", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.33", - "Distance from (0.70, 0.70): 8.36", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.49", - "Distance from (0.70, 0.70): 8.56", - "Distance from (0.70, 0.70): 8.63", - "Distance from (0.70, 0.70): 8.73", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 9.18", - "Distance from (0.70, 0.70): 9.44", - "Distance from (0.70, 0.70): 9.81", - "Distance from (0.70, 0.70): 10.47", - "Distance from (0.70, 0.70): 12.40", - "Distance from (0.70, 0.70): 10.53", - "Distance from (0.70, 0.70): 9.93", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 9.30", - "Distance from (0.70, 0.70): 9.10", - "Distance from (0.70, 0.70): 8.94", - "Distance from (0.70, 0.70): 8.81", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.51", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.37", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.08", - "Distance from (0.70, 0.70): 8.07", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.07", - "Distance from (0.70, 0.70): 8.08", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.37", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.81", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 10.17", - "Distance from (0.70, 0.70): 12.02", - "Distance from (0.70, 0.70): 12.71", - "Distance from (0.70, 0.70): 10.50", - "Distance from (0.70, 0.70): 9.87", - "Distance from (0.70, 0.70): 9.49", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 8.72", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.50", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.33", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.68", - "Distance from (0.70, 0.70): 8.87", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 9.48", - "Distance from (0.70, 0.70): 10.09", - "Distance from (0.70, 0.70): 12.29", - "Distance from (0.70, 0.70): 10.67", - "Distance from (0.70, 0.70): 9.92", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 9.21", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.01", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.77", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 9.09", - "Distance from (0.70, 0.70): 9.49", - "Distance from (0.70, 0.70): 10.23", - "Distance from (0.70, 0.70): 11.21", - "Distance from (0.70, 0.70): 10.10", - "Distance from (0.70, 0.70): 9.59", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.52", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.21", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.63", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 9.13", - "Distance from (0.70, 0.70): 9.62", - "Distance from (0.70, 0.70): 10.73", - "Distance from (0.70, 0.70): 10.47", - "Distance from (0.70, 0.70): 9.77", - "Distance from (0.70, 0.70): 9.36", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.68", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.77", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 8.01", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.88", - "Distance from (0.70, 0.70): 9.27", - "Distance from (0.70, 0.70): 9.96", - "Distance from (0.70, 0.70): 11.49", - "Distance from (0.70, 0.70): 10.10", - "Distance from (0.70, 0.70): 9.55", - "Distance from (0.70, 0.70): 9.19", - "Distance from (0.70, 0.70): 8.94", - "Distance from (0.70, 0.70): 8.73", - "Distance from (0.70, 0.70): 8.57", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.99", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 10.93", - "Distance from (0.70, 0.70): 10.84", - "Distance from (0.70, 0.70): 9.87", - "Distance from (0.70, 0.70): 9.39", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.63", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.33", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.33", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.84", - "Distance from (0.70, 0.70): 9.31", - "Distance from (0.70, 0.70): 10.26", - "Distance from (0.70, 0.70): 10.52", - "Distance from (0.70, 0.70): 9.72", - "Distance from (0.70, 0.70): 9.28", - "Distance from (0.70, 0.70): 8.98", - "Distance from (0.70, 0.70): 8.75", - "Distance from (0.70, 0.70): 8.56", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.28", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 8.04", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.70", - "Distance from (0.70, 0.70): 9.13", - "Distance from (0.70, 0.70): 9.91", - "Distance from (0.70, 0.70): 10.34", - "Distance from (0.70, 0.70): 9.62", - "Distance from (0.70, 0.70): 9.20", - "Distance from (0.70, 0.70): 8.91", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 8.50", - "Distance from (0.70, 0.70): 8.35", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.83", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 9.00", - "Distance from (0.70, 0.70): 9.71", - "Distance from (0.70, 0.70): 10.25", - "Distance from (0.70, 0.70): 9.55", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.46", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 8.04", - "Distance from (0.70, 0.70): 8.24", - "Distance from (0.70, 0.70): 8.52", - "Distance from (0.70, 0.70): 8.90", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 10.22", - "Distance from (0.70, 0.70): 9.52", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.92", - "Distance from (0.70, 0.70): 7.83", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.46", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 9.53", - "Distance from (0.70, 0.70): 10.25", - "Distance from (0.70, 0.70): 9.52", - "Distance from (0.70, 0.70): 9.11", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 9.53", - "Distance from (0.70, 0.70): 10.34", - "Distance from (0.70, 0.70): 9.55", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.58", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.24", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 9.59", - "Distance from (0.70, 0.70): 10.52", - "Distance from (0.70, 0.70): 9.62", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 9.74", - "Distance from (0.70, 0.70): 10.84", - "Distance from (0.70, 0.70): 9.72", - "Distance from (0.70, 0.70): 9.20", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.24", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.92", - "Distance from (0.70, 0.70): 10.02", - "Distance from (0.70, 0.70): 11.49", - "Distance from (0.70, 0.70): 9.87", - "Distance from (0.70, 0.70): 9.28", - "Distance from (0.70, 0.70): 8.91", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.17", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 8.47", - "Distance from (0.70, 0.70): 9.04", - "Distance from (0.70, 0.70): 10.64", - "Distance from (0.70, 0.70): 10.10", - "Distance from (0.70, 0.70): 9.39", - "Distance from (0.70, 0.70): 8.98", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 8.46", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 8.55", - "Distance from (0.70, 0.70): 9.24", - "Distance from (0.70, 0.70): 10.47", - "Distance from (0.70, 0.70): 9.55", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 8.75", - "Distance from (0.70, 0.70): 8.50", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 8.21", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 11.21", - "Distance from (0.70, 0.70): 9.77", - "Distance from (0.70, 0.70): 9.19", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 8.56", - "Distance from (0.70, 0.70): 8.35", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 10.29", - "Distance from (0.70, 0.70): 10.10", - "Distance from (0.70, 0.70): 9.36", - "Distance from (0.70, 0.70): 8.94", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.92", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 10.67", - "Distance from (0.70, 0.70): 9.59", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 8.73", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 8.28", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.83", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 8.62", - "Distance from (0.70, 0.70): 9.70", - "Distance from (0.70, 0.70): 12.71", - "Distance from (0.70, 0.70): 9.92", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.57", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.92", - "Distance from (0.70, 0.70): 11.70", - "Distance from (0.70, 0.70): 10.50", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 8.68", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 9.47", - "Distance from (0.70, 0.70): 12.40", - "Distance from (0.70, 0.70): 9.87", - "Distance from (0.70, 0.70): 9.21", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.83", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.17", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 8.17", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 11.34", - "Distance from (0.70, 0.70): 10.53", - "Distance from (0.70, 0.70): 9.49", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 9.44", - "Distance from (0.70, 0.70): 9.93", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.52", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 10.80", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 9.65", - "Distance from (0.70, 0.70): 10.12", - "Distance from (0.70, 0.70): 9.30", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.95", - "Distance from (0.70, 0.70): 11.67", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.10", - "Distance from (0.70, 0.70): 8.72", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.21", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.92", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 10.46", - "Distance from (0.70, 0.70): 10.55", - "Distance from (0.70, 0.70): 9.46", - "Distance from (0.70, 0.70): 8.94", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 10.05", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 8.81", - "Distance from (0.70, 0.70): 8.50", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.63", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 8.79", - "Distance from (0.70, 0.70): 11.95", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.09", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 10.65", - "Distance from (0.70, 0.70): 10.77", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 8.95", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.33", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 8.19", - "Distance from (0.70, 0.70): 9.45", - "Distance from (0.70, 0.70): 10.27", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 8.84", - "Distance from (0.70, 0.70): 8.51", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.29", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 8.91", - "Distance from (0.70, 0.70): 9.95", - "Distance from (0.70, 0.70): 9.18", - "Distance from (0.70, 0.70): 8.74", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 8.01", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 8.57", - "Distance from (0.70, 0.70): 12.34", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.06", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.37", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 7.96", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 10.92", - "Distance from (0.70, 0.70): 11.13", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 8.97", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 9.68", - "Distance from (0.70, 0.70): 10.64", - "Distance from (0.70, 0.70): 9.42", - "Distance from (0.70, 0.70): 8.88", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 10.34", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.33", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 10.13", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 8.76", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 8.58", - "Distance from (0.70, 0.70): 9.99", - "Distance from (0.70, 0.70): 9.16", - "Distance from (0.70, 0.70): 8.71", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.64", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 9.88", - "Distance from (0.70, 0.70): 9.11", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 8.36", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 9.80", - "Distance from (0.70, 0.70): 9.07", - "Distance from (0.70, 0.70): 8.64", - "Distance from (0.70, 0.70): 8.34", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 9.75", - "Distance from (0.70, 0.70): 9.04", - "Distance from (0.70, 0.70): 8.62", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.08", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 9.72", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.07", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 9.71", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 9.73", - "Distance from (0.70, 0.70): 9.01", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 9.76", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.29", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 9.82", - "Distance from (0.70, 0.70): 9.05", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.06", - "Distance from (0.70, 0.70): 7.86", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 9.91", - "Distance from (0.70, 0.70): 9.08", - "Distance from (0.70, 0.70): 8.63", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.07", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 10.04", - "Distance from (0.70, 0.70): 9.14", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.33", - "Distance from (0.70, 0.70): 8.08", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 10.23", - "Distance from (0.70, 0.70): 9.20", - "Distance from (0.70, 0.70): 8.70", - "Distance from (0.70, 0.70): 8.36", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 8.17", - "Distance from (0.70, 0.70): 10.51", - "Distance from (0.70, 0.70): 9.29", - "Distance from (0.70, 0.70): 8.75", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 10.99", - "Distance from (0.70, 0.70): 9.41", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.44", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.75", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 12.18", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 8.90", - "Distance from (0.70, 0.70): 8.49", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 7.77", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.47", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 9.97", - "Distance from (0.70, 0.70): 9.77", - "Distance from (0.70, 0.70): 9.00", - "Distance from (0.70, 0.70): 8.56", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.63", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.42", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 10.07", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 8.63", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 10.55", - "Distance from (0.70, 0.70): 9.28", - "Distance from (0.70, 0.70): 8.73", - "Distance from (0.70, 0.70): 8.37", - "Distance from (0.70, 0.70): 8.10", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.42", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.29", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 11.72", - "Distance from (0.70, 0.70): 9.50", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.16", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.26", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.22", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.22", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 9.80", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.33", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.17", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.20", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 10.28", - "Distance from (0.70, 0.70): 9.18", - "Distance from (0.70, 0.70): 8.66", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.74", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.11", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.11", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.20", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 11.38", - "Distance from (0.70, 0.70): 9.44", - "Distance from (0.70, 0.70): 8.81", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.42", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.26", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.06", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 4.03", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.03", - "Distance from (0.70, 0.70): 4.05", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.12", - "Distance from (0.70, 0.70): 4.17", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 9.81", - "Distance from (0.70, 0.70): 8.99", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.22", - "Distance from (0.70, 0.70): 7.97", - "Distance from (0.70, 0.70): 7.77", - "Distance from (0.70, 0.70): 7.59", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.20", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.12", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.05", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 3.98", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 3.98", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 10.47", - "Distance from (0.70, 0.70): 9.23", - "Distance from (0.70, 0.70): 8.68", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 7.84", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.11", - "Distance from (0.70, 0.70): 4.07", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 3.97", - "Distance from (0.70, 0.70): 3.94", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 4.01", - "Distance from (0.70, 0.70): 4.07", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 8.87", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.55", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.12", - "Distance from (0.70, 0.70): 4.07", - "Distance from (0.70, 0.70): 4.03", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.86", - "Distance from (0.70, 0.70): 3.83", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.93", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 10.17", - "Distance from (0.70, 0.70): 9.12", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.01", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.86", - "Distance from (0.70, 0.70): 3.83", - "Distance from (0.70, 0.70): 3.79", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.74", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.75", - "Distance from (0.70, 0.70): 3.79", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 3.91", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 12.02", - "Distance from (0.70, 0.70): 9.48", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.49", - "Distance from (0.70, 0.70): 6.41", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.63", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.26", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.05", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.86", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.77", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.70", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.65", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.64", - "Distance from (0.70, 0.70): 3.66", - "Distance from (0.70, 0.70): 3.69", - "Distance from (0.70, 0.70): 3.74", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.91", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 10.09", - "Distance from (0.70, 0.70): 9.09", - "Distance from (0.70, 0.70): 8.59", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 7.99", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.97", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.86", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.71", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.60", - "Distance from (0.70, 0.70): 3.57", - "Distance from (0.70, 0.70): 3.55", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.56", - "Distance from (0.70, 0.70): 3.59", - "Distance from (0.70, 0.70): 3.64", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.94", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 12.29", - "Distance from (0.70, 0.70): 9.49", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.41", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.13", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.17", - "Distance from (0.70, 0.70): 4.11", - "Distance from (0.70, 0.70): 4.06", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 3.94", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.83", - "Distance from (0.70, 0.70): 3.77", - "Distance from (0.70, 0.70): 3.71", - "Distance from (0.70, 0.70): 3.66", - "Distance from (0.70, 0.70): 3.61", - "Distance from (0.70, 0.70): 3.56", - "Distance from (0.70, 0.70): 3.52", - "Distance from (0.70, 0.70): 3.49", - "Distance from (0.70, 0.70): 3.46", - "Distance from (0.70, 0.70): 3.44", - "Distance from (0.70, 0.70): 3.44", - "Distance from (0.70, 0.70): 3.45", - "Distance from (0.70, 0.70): 3.48", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.61", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.85", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 10.23", - "Distance from (0.70, 0.70): 9.13", - "Distance from (0.70, 0.70): 8.61", - "Distance from (0.70, 0.70): 8.26", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.78", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 7.44", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 4.99", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.22", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 3.98", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.86", - "Distance from (0.70, 0.70): 3.79", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.61", - "Distance from (0.70, 0.70): 3.55", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.45", - "Distance from (0.70, 0.70): 3.41", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.35", - "Distance from (0.70, 0.70): 3.34", - "Distance from (0.70, 0.70): 3.34", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.42", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.62", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 9.62", - "Distance from (0.70, 0.70): 8.88", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.70", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.03", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.83", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.70", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.56", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.44", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.33", - "Distance from (0.70, 0.70): 3.28", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.23", - "Distance from (0.70, 0.70): 3.22", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.30", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 10.73", - "Distance from (0.70, 0.70): 9.27", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.04", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.32", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.21", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.74", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.60", - "Distance from (0.70, 0.70): 3.52", - "Distance from (0.70, 0.70): 3.45", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.31", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.19", - "Distance from (0.70, 0.70): 3.14", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 3.16", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.57", - "Distance from (0.70, 0.70): 3.82", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 9.96", - "Distance from (0.70, 0.70): 9.02", - "Distance from (0.70, 0.70): 8.54", - "Distance from (0.70, 0.70): 8.20", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.93", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.35", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.22", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.65", - "Distance from (0.70, 0.70): 3.57", - "Distance from (0.70, 0.70): 3.49", - "Distance from (0.70, 0.70): 3.41", - "Distance from (0.70, 0.70): 3.33", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.17", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 3.04", - "Distance from (0.70, 0.70): 2.99", - "Distance from (0.70, 0.70): 2.96", - "Distance from (0.70, 0.70): 2.97", - "Distance from (0.70, 0.70): 3.01", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.47", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 9.56", - "Distance from (0.70, 0.70): 8.84", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.73", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.44", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.72", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.55", - "Distance from (0.70, 0.70): 4.48", - "Distance from (0.70, 0.70): 4.42", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.29", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.55", - "Distance from (0.70, 0.70): 3.46", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.28", - "Distance from (0.70, 0.70): 3.19", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 3.01", - "Distance from (0.70, 0.70): 2.93", - "Distance from (0.70, 0.70): 2.86", - "Distance from (0.70, 0.70): 2.82", - "Distance from (0.70, 0.70): 2.81", - "Distance from (0.70, 0.70): 2.84", - "Distance from (0.70, 0.70): 2.94", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 10.93", - "Distance from (0.70, 0.70): 9.31", - "Distance from (0.70, 0.70): 8.70", - "Distance from (0.70, 0.70): 8.32", - "Distance from (0.70, 0.70): 8.04", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.62", - "Distance from (0.70, 0.70): 7.46", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.57", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.38", - "Distance from (0.70, 0.70): 4.31", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.11", - "Distance from (0.70, 0.70): 4.03", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.80", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.63", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.44", - "Distance from (0.70, 0.70): 3.35", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.14", - "Distance from (0.70, 0.70): 3.04", - "Distance from (0.70, 0.70): 2.93", - "Distance from (0.70, 0.70): 2.83", - "Distance from (0.70, 0.70): 2.73", - "Distance from (0.70, 0.70): 2.66", - "Distance from (0.70, 0.70): 2.63", - "Distance from (0.70, 0.70): 2.65", - "Distance from (0.70, 0.70): 2.74", - "Distance from (0.70, 0.70): 2.94", - "Distance from (0.70, 0.70): 3.26", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 10.26", - "Distance from (0.70, 0.70): 9.13", - "Distance from (0.70, 0.70): 8.60", - "Distance from (0.70, 0.70): 8.24", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.76", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.42", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.03", - "Distance from (0.70, 0.70): 6.93", - "Distance from (0.70, 0.70): 6.83", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.56", - "Distance from (0.70, 0.70): 6.48", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.86", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.53", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.40", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.20", - "Distance from (0.70, 0.70): 4.13", - "Distance from (0.70, 0.70): 4.05", - "Distance from (0.70, 0.70): 3.98", - "Distance from (0.70, 0.70): 3.90", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.64", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.44", - "Distance from (0.70, 0.70): 3.34", - "Distance from (0.70, 0.70): 3.23", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 2.99", - "Distance from (0.70, 0.70): 2.86", - "Distance from (0.70, 0.70): 2.73", - "Distance from (0.70, 0.70): 2.61", - "Distance from (0.70, 0.70): 2.50", - "Distance from (0.70, 0.70): 2.43", - "Distance from (0.70, 0.70): 2.42", - "Distance from (0.70, 0.70): 2.52", - "Distance from (0.70, 0.70): 2.76", - "Distance from (0.70, 0.70): 3.18", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 9.91", - "Distance from (0.70, 0.70): 9.00", - "Distance from (0.70, 0.70): 8.52", - "Distance from (0.70, 0.70): 8.18", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.72", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.39", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.01", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.38", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.10", - "Distance from (0.70, 0.70): 6.03", - "Distance from (0.70, 0.70): 5.97", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.78", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.55", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.04", - "Distance from (0.70, 0.70): 4.98", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.87", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.75", - "Distance from (0.70, 0.70): 4.69", - "Distance from (0.70, 0.70): 4.63", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 4.00", - "Distance from (0.70, 0.70): 3.92", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 3.75", - "Distance from (0.70, 0.70): 3.66", - "Distance from (0.70, 0.70): 3.56", - "Distance from (0.70, 0.70): 3.45", - "Distance from (0.70, 0.70): 3.34", - "Distance from (0.70, 0.70): 3.22", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 2.96", - "Distance from (0.70, 0.70): 2.82", - "Distance from (0.70, 0.70): 2.66", - "Distance from (0.70, 0.70): 2.50", - "Distance from (0.70, 0.70): 2.34", - "Distance from (0.70, 0.70): 2.21", - "Distance from (0.70, 0.70): 2.15", - "Distance from (0.70, 0.70): 2.23", - "Distance from (0.70, 0.70): 2.54", - "Distance from (0.70, 0.70): 3.14", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 9.71", - "Distance from (0.70, 0.70): 8.90", - "Distance from (0.70, 0.70): 8.46", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.36", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.10", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.88", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.08", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.19", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.02", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.79", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.60", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.47", - "Distance from (0.70, 0.70): 4.41", - "Distance from (0.70, 0.70): 4.34", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 4.20", - "Distance from (0.70, 0.70): 4.12", - "Distance from (0.70, 0.70): 4.04", - "Distance from (0.70, 0.70): 3.96", - "Distance from (0.70, 0.70): 3.87", - "Distance from (0.70, 0.70): 3.79", - "Distance from (0.70, 0.70): 3.69", - "Distance from (0.70, 0.70): 3.59", - "Distance from (0.70, 0.70): 3.48", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 2.97", - "Distance from (0.70, 0.70): 2.81", - "Distance from (0.70, 0.70): 2.63", - "Distance from (0.70, 0.70): 2.43", - "Distance from (0.70, 0.70): 2.21", - "Distance from (0.70, 0.70): 1.99", - "Distance from (0.70, 0.70): 1.83", - "Distance from (0.70, 0.70): 1.86", - "Distance from (0.70, 0.70): 2.29", - "Distance from (0.70, 0.70): 3.33", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.45", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.17", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.01", - "Distance from (0.70, 0.70): 3.93", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 3.74", - "Distance from (0.70, 0.70): 3.64", - "Distance from (0.70, 0.70): 3.54", - "Distance from (0.70, 0.70): 3.42", - "Distance from (0.70, 0.70): 3.30", - "Distance from (0.70, 0.70): 3.16", - "Distance from (0.70, 0.70): 3.01", - "Distance from (0.70, 0.70): 2.84", - "Distance from (0.70, 0.70): 2.65", - "Distance from (0.70, 0.70): 2.42", - "Distance from (0.70, 0.70): 2.15", - "Distance from (0.70, 0.70): 1.83", - "Distance from (0.70, 0.70): 1.47", - "Distance from (0.70, 0.70): 1.30", - "Distance from (0.70, 0.70): 2.07", - "Distance from (0.70, 0.70): 9.53", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.07", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 3.91", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.61", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.10", - "Distance from (0.70, 0.70): 2.94", - "Distance from (0.70, 0.70): 2.74", - "Distance from (0.70, 0.70): 2.52", - "Distance from (0.70, 0.70): 2.23", - "Distance from (0.70, 0.70): 1.86", - "Distance from (0.70, 0.70): 1.30", - "Distance from (0.70, 0.70): 0.36", - "Distance from (0.70, 0.70): 9.53", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.09", - "Distance from (0.70, 0.70): 7.85", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.20", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 6.97", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.69", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.52", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.94", - "Distance from (0.70, 0.70): 4.88", - "Distance from (0.70, 0.70): 4.82", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.70", - "Distance from (0.70, 0.70): 4.64", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.37", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.08", - "Distance from (0.70, 0.70): 3.99", - "Distance from (0.70, 0.70): 3.91", - "Distance from (0.70, 0.70): 3.81", - "Distance from (0.70, 0.70): 3.72", - "Distance from (0.70, 0.70): 3.62", - "Distance from (0.70, 0.70): 3.50", - "Distance from (0.70, 0.70): 3.38", - "Distance from (0.70, 0.70): 3.25", - "Distance from (0.70, 0.70): 3.11", - "Distance from (0.70, 0.70): 2.94", - "Distance from (0.70, 0.70): 2.76", - "Distance from (0.70, 0.70): 2.54", - "Distance from (0.70, 0.70): 2.29", - "Distance from (0.70, 0.70): 2.07", - "Distance from (0.70, 0.70): 9.59", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.87", - "Distance from (0.70, 0.70): 7.67", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.35", - "Distance from (0.70, 0.70): 7.21", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.36", - "Distance from (0.70, 0.70): 6.28", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.88", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.58", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.35", - "Distance from (0.70, 0.70): 5.30", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.13", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.77", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.65", - "Distance from (0.70, 0.70): 4.59", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.32", - "Distance from (0.70, 0.70): 4.25", - "Distance from (0.70, 0.70): 4.18", - "Distance from (0.70, 0.70): 4.10", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.94", - "Distance from (0.70, 0.70): 3.85", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.67", - "Distance from (0.70, 0.70): 3.57", - "Distance from (0.70, 0.70): 3.47", - "Distance from (0.70, 0.70): 3.37", - "Distance from (0.70, 0.70): 3.26", - "Distance from (0.70, 0.70): 3.18", - "Distance from (0.70, 0.70): 3.14", - "Distance from (0.70, 0.70): 3.33", - "Distance from (0.70, 0.70): 9.74", - "Distance from (0.70, 0.70): 8.92", - "Distance from (0.70, 0.70): 8.47", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.69", - "Distance from (0.70, 0.70): 7.52", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.79", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.53", - "Distance from (0.70, 0.70): 6.45", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.09", - "Distance from (0.70, 0.70): 6.02", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.31", - "Distance from (0.70, 0.70): 5.26", - "Distance from (0.70, 0.70): 5.20", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.03", - "Distance from (0.70, 0.70): 4.97", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.86", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.74", - "Distance from (0.70, 0.70): 4.68", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.43", - "Distance from (0.70, 0.70): 4.36", - "Distance from (0.70, 0.70): 4.30", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.09", - "Distance from (0.70, 0.70): 4.02", - "Distance from (0.70, 0.70): 3.95", - "Distance from (0.70, 0.70): 3.88", - "Distance from (0.70, 0.70): 3.82", - "Distance from (0.70, 0.70): 3.76", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.73", - "Distance from (0.70, 0.70): 3.84", - "Distance from (0.70, 0.70): 4.27", - "Distance from (0.70, 0.70): 10.02", - "Distance from (0.70, 0.70): 9.04", - "Distance from (0.70, 0.70): 8.55", - "Distance from (0.70, 0.70): 8.21", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 7.74", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 6.91", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.55", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.92", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.74", - "Distance from (0.70, 0.70): 5.68", - "Distance from (0.70, 0.70): 5.62", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.45", - "Distance from (0.70, 0.70): 5.39", - "Distance from (0.70, 0.70): 5.34", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.17", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.95", - "Distance from (0.70, 0.70): 4.90", - "Distance from (0.70, 0.70): 4.84", - "Distance from (0.70, 0.70): 4.78", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 4.67", - "Distance from (0.70, 0.70): 4.61", - "Distance from (0.70, 0.70): 4.56", - "Distance from (0.70, 0.70): 4.50", - "Distance from (0.70, 0.70): 4.44", - "Distance from (0.70, 0.70): 4.39", - "Distance from (0.70, 0.70): 4.33", - "Distance from (0.70, 0.70): 4.28", - "Distance from (0.70, 0.70): 4.23", - "Distance from (0.70, 0.70): 4.19", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.15", - "Distance from (0.70, 0.70): 4.16", - "Distance from (0.70, 0.70): 4.24", - "Distance from (0.70, 0.70): 4.46", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 10.64", - "Distance from (0.70, 0.70): 9.24", - "Distance from (0.70, 0.70): 8.67", - "Distance from (0.70, 0.70): 8.30", - "Distance from (0.70, 0.70): 8.02", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.58", - "Distance from (0.70, 0.70): 6.50", - "Distance from (0.70, 0.70): 6.42", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.21", - "Distance from (0.70, 0.70): 6.14", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.89", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.60", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.49", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.32", - "Distance from (0.70, 0.70): 5.27", - "Distance from (0.70, 0.70): 5.22", - "Distance from (0.70, 0.70): 5.16", - "Distance from (0.70, 0.70): 5.11", - "Distance from (0.70, 0.70): 5.06", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.91", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.76", - "Distance from (0.70, 0.70): 4.71", - "Distance from (0.70, 0.70): 4.66", - "Distance from (0.70, 0.70): 4.62", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.54", - "Distance from (0.70, 0.70): 4.51", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.49", - "Distance from (0.70, 0.70): 4.52", - "Distance from (0.70, 0.70): 4.58", - "Distance from (0.70, 0.70): 4.73", - "Distance from (0.70, 0.70): 5.07", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 9.58", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.12", - "Distance from (0.70, 0.70): 7.88", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.51", - "Distance from (0.70, 0.70): 7.37", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.11", - "Distance from (0.70, 0.70): 7.00", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.80", - "Distance from (0.70, 0.70): 6.71", - "Distance from (0.70, 0.70): 6.62", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.81", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.59", - "Distance from (0.70, 0.70): 5.54", - "Distance from (0.70, 0.70): 5.48", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.23", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.14", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.05", - "Distance from (0.70, 0.70): 5.00", - "Distance from (0.70, 0.70): 4.96", - "Distance from (0.70, 0.70): 4.92", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 4.85", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.81", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.80", - "Distance from (0.70, 0.70): 4.83", - "Distance from (0.70, 0.70): 4.89", - "Distance from (0.70, 0.70): 5.01", - "Distance from (0.70, 0.70): 5.24", - "Distance from (0.70, 0.70): 5.77", - "Distance from (0.70, 0.70): 10.29", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 8.62", - "Distance from (0.70, 0.70): 8.27", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.79", - "Distance from (0.70, 0.70): 7.61", - "Distance from (0.70, 0.70): 7.45", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.96", - "Distance from (0.70, 0.70): 6.86", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.68", - "Distance from (0.70, 0.70): 6.60", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.23", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 5.99", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.71", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.51", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.42", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.33", - "Distance from (0.70, 0.70): 5.29", - "Distance from (0.70, 0.70): 5.25", - "Distance from (0.70, 0.70): 5.21", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.15", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.10", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.08", - "Distance from (0.70, 0.70): 5.09", - "Distance from (0.70, 0.70): 5.12", - "Distance from (0.70, 0.70): 5.18", - "Distance from (0.70, 0.70): 5.28", - "Distance from (0.70, 0.70): 5.47", - "Distance from (0.70, 0.70): 5.82", - "Distance from (0.70, 0.70): 6.78", - "Distance from (0.70, 0.70): 9.70", - "Distance from (0.70, 0.70): 8.92", - "Distance from (0.70, 0.70): 8.48", - "Distance from (0.70, 0.70): 8.17", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 7.56", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.04", - "Distance from (0.70, 0.70): 6.94", - "Distance from (0.70, 0.70): 6.84", - "Distance from (0.70, 0.70): 6.76", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.51", - "Distance from (0.70, 0.70): 6.44", - "Distance from (0.70, 0.70): 6.37", - "Distance from (0.70, 0.70): 6.31", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.18", - "Distance from (0.70, 0.70): 6.12", - "Distance from (0.70, 0.70): 6.06", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.95", - "Distance from (0.70, 0.70): 5.90", - "Distance from (0.70, 0.70): 5.84", - "Distance from (0.70, 0.70): 5.80", - "Distance from (0.70, 0.70): 5.75", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.61", - "Distance from (0.70, 0.70): 5.57", - "Distance from (0.70, 0.70): 5.53", - "Distance from (0.70, 0.70): 5.50", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.43", - "Distance from (0.70, 0.70): 5.40", - "Distance from (0.70, 0.70): 5.38", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.36", - "Distance from (0.70, 0.70): 5.37", - "Distance from (0.70, 0.70): 5.41", - "Distance from (0.70, 0.70): 5.46", - "Distance from (0.70, 0.70): 5.56", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 11.70", - "Distance from (0.70, 0.70): 9.47", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.42", - "Distance from (0.70, 0.70): 8.13", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.71", - "Distance from (0.70, 0.70): 7.54", - "Distance from (0.70, 0.70): 7.40", - "Distance from (0.70, 0.70): 7.27", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.05", - "Distance from (0.70, 0.70): 6.95", - "Distance from (0.70, 0.70): 6.85", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.61", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.22", - "Distance from (0.70, 0.70): 6.16", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.05", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.91", - "Distance from (0.70, 0.70): 5.87", - "Distance from (0.70, 0.70): 5.83", - "Distance from (0.70, 0.70): 5.79", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.72", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.67", - "Distance from (0.70, 0.70): 5.65", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.64", - "Distance from (0.70, 0.70): 5.66", - "Distance from (0.70, 0.70): 5.70", - "Distance from (0.70, 0.70): 5.76", - "Distance from (0.70, 0.70): 5.85", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 8.86", - "Distance from (0.70, 0.70): 11.34", - "Distance from (0.70, 0.70): 9.44", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.43", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 7.92", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 7.57", - "Distance from (0.70, 0.70): 7.43", - "Distance from (0.70, 0.70): 7.30", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.08", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.89", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.46", - "Distance from (0.70, 0.70): 6.40", - "Distance from (0.70, 0.70): 6.34", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.24", - "Distance from (0.70, 0.70): 6.19", - "Distance from (0.70, 0.70): 6.15", - "Distance from (0.70, 0.70): 6.11", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.04", - "Distance from (0.70, 0.70): 6.00", - "Distance from (0.70, 0.70): 5.98", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.93", - "Distance from (0.70, 0.70): 5.94", - "Distance from (0.70, 0.70): 5.96", - "Distance from (0.70, 0.70): 6.01", - "Distance from (0.70, 0.70): 6.07", - "Distance from (0.70, 0.70): 6.17", - "Distance from (0.70, 0.70): 6.33", - "Distance from (0.70, 0.70): 6.59", - "Distance from (0.70, 0.70): 7.09", - "Distance from (0.70, 0.70): 8.85", - "Distance from (0.70, 0.70): 9.65", - "Distance from (0.70, 0.70): 8.95", - "Distance from (0.70, 0.70): 8.53", - "Distance from (0.70, 0.70): 8.23", - "Distance from (0.70, 0.70): 8.00", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.65", - "Distance from (0.70, 0.70): 7.50", - "Distance from (0.70, 0.70): 7.38", - "Distance from (0.70, 0.70): 7.26", - "Distance from (0.70, 0.70): 7.16", - "Distance from (0.70, 0.70): 7.07", - "Distance from (0.70, 0.70): 6.98", - "Distance from (0.70, 0.70): 6.90", - "Distance from (0.70, 0.70): 6.82", - "Distance from (0.70, 0.70): 6.75", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.57", - "Distance from (0.70, 0.70): 6.52", - "Distance from (0.70, 0.70): 6.47", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.39", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.32", - "Distance from (0.70, 0.70): 6.29", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.25", - "Distance from (0.70, 0.70): 6.26", - "Distance from (0.70, 0.70): 6.27", - "Distance from (0.70, 0.70): 6.30", - "Distance from (0.70, 0.70): 6.35", - "Distance from (0.70, 0.70): 6.43", - "Distance from (0.70, 0.70): 6.54", - "Distance from (0.70, 0.70): 6.72", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.60", - "Distance from (0.70, 0.70): 10.46", - "Distance from (0.70, 0.70): 9.32", - "Distance from (0.70, 0.70): 8.79", - "Distance from (0.70, 0.70): 8.45", - "Distance from (0.70, 0.70): 8.19", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.81", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 7.53", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.31", - "Distance from (0.70, 0.70): 7.22", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.06", - "Distance from (0.70, 0.70): 6.99", - "Distance from (0.70, 0.70): 6.92", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 6.81", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.73", - "Distance from (0.70, 0.70): 6.69", - "Distance from (0.70, 0.70): 6.67", - "Distance from (0.70, 0.70): 6.65", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.63", - "Distance from (0.70, 0.70): 6.64", - "Distance from (0.70, 0.70): 6.66", - "Distance from (0.70, 0.70): 6.70", - "Distance from (0.70, 0.70): 6.77", - "Distance from (0.70, 0.70): 6.87", - "Distance from (0.70, 0.70): 7.02", - "Distance from (0.70, 0.70): 7.25", - "Distance from (0.70, 0.70): 7.66", - "Distance from (0.70, 0.70): 8.69", - "Distance from (0.70, 0.70): 10.65", - "Distance from (0.70, 0.70): 9.45", - "Distance from (0.70, 0.70): 8.91", - "Distance from (0.70, 0.70): 8.57", - "Distance from (0.70, 0.70): 8.31", - "Distance from (0.70, 0.70): 8.11", - "Distance from (0.70, 0.70): 7.94", - "Distance from (0.70, 0.70): 7.80", - "Distance from (0.70, 0.70): 7.68", - "Distance from (0.70, 0.70): 7.58", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.41", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.28", - "Distance from (0.70, 0.70): 7.23", - "Distance from (0.70, 0.70): 7.19", - "Distance from (0.70, 0.70): 7.15", - "Distance from (0.70, 0.70): 7.13", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.12", - "Distance from (0.70, 0.70): 7.14", - "Distance from (0.70, 0.70): 7.18", - "Distance from (0.70, 0.70): 7.24", - "Distance from (0.70, 0.70): 7.34", - "Distance from (0.70, 0.70): 7.49", - "Distance from (0.70, 0.70): 7.73", - "Distance from (0.70, 0.70): 8.15", - "Distance from (0.70, 0.70): 9.25", - "Distance from (0.70, 0.70): 10.92", - "Distance from (0.70, 0.70): 9.68", - "Distance from (0.70, 0.70): 9.15", - "Distance from (0.70, 0.70): 8.82", - "Distance from (0.70, 0.70): 8.58", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.25", - "Distance from (0.70, 0.70): 8.14", - "Distance from (0.70, 0.70): 8.05", - "Distance from (0.70, 0.70): 7.98", - "Distance from (0.70, 0.70): 7.93", - "Distance from (0.70, 0.70): 7.90", - "Distance from (0.70, 0.70): 7.89", - "Distance from (0.70, 0.70): 7.91", - "Distance from (0.70, 0.70): 7.95", - "Distance from (0.70, 0.70): 8.03", - "Distance from (0.70, 0.70): 8.17", - "Distance from (0.70, 0.70): 8.40", - "Distance from (0.70, 0.70): 8.83", - "Distance from (0.70, 0.70): 9.97" - ], - "type": "scatter", - "x": [ - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9797979698989898, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - 0.9797979798989899, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - 0.9595959597979798, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9393939296969697, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - 0.9393939396969696, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.9191919095959595, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - 0.9191919195959596, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8989898894949494, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - 0.8989898994949496, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8787878693939394, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - 0.8787878793939393, - -0.8585858492929292, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - 0.8585858592929293, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.8383838291919191, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - 0.8383838391919193, - -0.818181809090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - 0.818181819090909, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.797979788989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - 0.797979798989899, - -0.7777777688888888, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - 0.777777778888889, - -0.7575757487878787, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - 0.7575757587878788, - -0.7373737286868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - 0.7373737386868687, - -0.7171717085858585, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - 0.7171717185858587, - -0.6969696884848484, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - 0.6969696984848485, - -0.6767676683838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - 0.6767676783838384, - -0.6565656482828283, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - 0.6565656582828282, - -0.6363636281818181, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - 0.6363636381818182, - -0.6161616080808081, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - 0.6161616180808082, - -0.5959595879797979, - -0.5757575678787878, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - 0.5757575778787879, - 0.5959595979797979, - -0.5555555477777777, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - 0.5555555577777779, - -0.5353535276767676, - -0.5151515075757576, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - 0.5151515175757576, - 0.5353535376767676, - -0.49494948747474743, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - 0.4949494974747476, - -0.4747474673737373, - -0.4545454472727273, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - 0.4545454572727273, - 0.47474747737373735, - -0.43434342717171714, - -0.414141407070707, - -0.3939393869696969, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - 0.39393939696969704, - 0.41414141707070706, - 0.4343434371717173, - -0.37373736686868686, - -0.35353534676767673, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - 0.3535353567676768, - 0.3737373768686868, - -0.3333333266666666, - -0.3131313065656566, - -0.29292928646464644, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - 0.2929292964646465, - 0.3131313165656565, - 0.33333333666666676, - -0.2727272663636363, - -0.2525252462626262, - -0.23232322616161616, - -0.21212120606060603, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595, - 0.2121212160606062, - 0.2323232361616162, - 0.25252525626262623, - 0.2727272763636365, - -0.1919191859595959, - -0.17171716585858587, - -0.15151514575757574, - -0.1313131256565656, - -0.11111110555555548, - -0.09090908545454546, - -0.07070706535353533, - -0.050505045252525194, - -0.030303025151515173, - -0.01010100505050504, - 0.010101015050505091, - 0.030303035151515112, - 0.050505055252525355, - 0.07070707535353538, - 0.0909090954545454, - 0.11111111555555564, - 0.13131313565656566, - 0.15151515575757568, - 0.17171717585858592, - 0.19191919595959595 - ], - "y": [ - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9797979698989898, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9595959497979798, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9393939296969697, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.9191919095959595, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8989898894949494, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8787878693939394, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8585858492929292, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.8383838291919191, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.818181809090909, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.797979788989899, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7777777688888888, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7575757487878787, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7373737286868687, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.7171717085858585, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6969696884848484, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6767676683838384, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6565656482828283, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6363636281818181, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.6161616080808081, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5959595879797979, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5757575678787878, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5555555477777777, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5353535276767676, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.5151515075757576, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.49494948747474743, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4747474673737373, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.4545454472727273, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.43434342717171714, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.414141407070707, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.3939393869696969, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.37373736686868686, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.35353534676767673, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3333333266666666, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.3131313065656566, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.29292928646464644, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2727272663636363, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.2525252462626262, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.23232322616161616, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.21212120606060603, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.1919191859595959, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.17171716585858587, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.15151514575757574, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.1313131256565656, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.11111110555555548, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.09090908545454546, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.07070706535353533, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.050505045252525194, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.030303025151515173, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - -0.01010100505050504, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.010101015050505091, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.030303035151515112, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.050505055252525355, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.07070707535353538, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.0909090954545454, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.11111111555555564, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.13131313565656566, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.15151515575757568, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.17171717585858592, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.19191919595959595, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2121212160606062, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.2323232361616162, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.25252525626262623, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2727272763636365, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.2929292964646465, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.3131313165656565, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.33333333666666676, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3535353567676768, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.3737373768686868, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.39393939696969704, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.41414141707070706, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4343434371717173, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.4545454572727273, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.47474747737373735, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.4949494974747476, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5151515175757576, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5353535376767676, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5555555577777779, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5757575778787879, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.5959595979797979, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6161616180808082, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6363636381818182, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6565656582828282, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6767676783838384, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.6969696984848485, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7171717185858587, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7373737386868687, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.7575757587878788, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.777777778888889, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.797979798989899, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.818181819090909, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8383838391919193, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8585858592929293, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8787878793939393, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.8989898994949496, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9191919195959596, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9393939396969696, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9595959597979798, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899, - 0.9797979798989899 - ] - }, - { - "marker": { - "color": "rgb(200, 50, 50)", - "size": "10" - }, - "mode": "markers+text", - "name": "Distance from (0.70, 0.70)", - "type": "scatter", - "x": [ - 0.7 - ], - "y": [ - 0.7 - ] - } - ], - "layout": { - "height": 800, - "hovermode": "closest", - "showlegend": false, - "title": "Poincare Distances from (0.70, 0.70)", - "width": 900 - } - }, - "text/html": [ - "
" - ], - "text/vnd.plotly.v1+html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "iplot(poincare_distance_heatmap([0.7, 0.7]))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Some interesting things to note here are - \n", - "1. Distances increase much more quickly when the origin point is closer to the boundary - this can be seen visually from the fact that the darker region around the origin point grows smaller and smaller (though the changing scales make this slightly error-prone, the fact still holds). \n", - "This is also borne out from the mathematical formula for Poincare distance.\n", - "\n", - "2. For points close to the boundary, distance to other points close to the boundary is relatively low to points with a low euclidean distance, but then increases significantly and saturates - this explains the positioning of children of parent node close to the boundary in a small arc around the parent node, and the presence of all negative nodes to the parent node (nodes without an edge to the parent node) outside of that small arc." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 6. Next steps" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "1. The model can be investigated further to understand why it doesn't produce results as good as the paper. It is possible that this might be due to training details not present in the paper, or due to us incorrectly interpreting some ambiguous parts of the paper. We have not been able to clarify all such ambiguitities in communication with the authors.\n", - "2. Optimizing the training process further - with a model size of 50 dimensions and a dataset with ~700k relations and ~80k nodes, the Gensim implementation takes around 70 seconds to complete an epoch (~10k relations per second), whereas the open source C++ implementation takes around 1/10th the time (~95k relations per second).\n", - "3. Implementing the variant of the model mentioned in the paper for symmetric graphs and evaluating on the scientific collaboration datasets described earlier in the report." + "1. [Original paper by Facebook AI Research](https://arxiv.org/pdf/1705.08039)\n", + "2. [Blog post describing technical challenges in implementation](https://rare-technologies.com/implementing-poincare-embeddings)\n", + "3. [Detailed evaluation notebook to reproduce results](https://github.com/RaRe-Technologies/gensim/blob/develop/docs/notebooks/Poincare%20Evaluation.ipynb)" ] } ], @@ -107560,14 +689,14 @@ "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.10" + "pygments_lexer": "ipython3", + "version": "3.5.4" } }, "nbformat": 4, diff --git a/docs/notebooks/doc2vec-IMDB.ipynb b/docs/notebooks/doc2vec-IMDB.ipynb index f4a2ec2ae3..415f9ae837 100644 --- a/docs/notebooks/doc2vec-IMDB.ipynb +++ b/docs/notebooks/doc2vec-IMDB.ipynb @@ -905,7 +905,7 @@ "# Download this file: https://github.com/nicholas-leonard/word2vec/blob/master/questions-words.txt\n", "# and place it in the local directory\n", "# Note: this takes many minutes\n", - "if os.path.isfile('question-words.txt'):\n", + "if os.path.isfile('questions-words.txt'):\n", " for model in word_models:\n", " sections = model.accuracy('questions-words.txt')\n", " correct, incorrect = len(sections[-1]['correct']), len(sections[-1]['incorrect'])\n", diff --git a/docs/notebooks/poincare/data/wordnet_mammal_hypernyms.tsv b/docs/notebooks/poincare/data/wordnet_mammal_hypernyms.tsv new file mode 100644 index 0000000000..1cc2ffb55b --- /dev/null +++ b/docs/notebooks/poincare/data/wordnet_mammal_hypernyms.tsv @@ -0,0 +1,7724 @@ +kangaroo.n.01 marsupial.n.01 +domestic_goat.n.01 even-toed_ungulate.n.01 +rock_squirrel.n.01 ground_squirrel.n.02 +vizsla.n.01 dog.n.01 +dandie_dinmont.n.01 mammal.n.01 +broodmare.n.01 horse.n.01 +spotted_skunk.n.01 spotted_skunk.n.01 +hispid_pocket_mouse.n.01 hispid_pocket_mouse.n.01 +lesser_kudu.n.01 placental.n.01 +water_shrew.n.01 insectivore.n.01 +silky_anteater.n.01 placental.n.01 +giant_kangaroo.n.01 metatherian.n.01 +bronco.n.01 bronco.n.01 +pekinese.n.01 pekinese.n.01 +seattle_slew.n.01 thoroughbred.n.02 +kinkajou.n.01 kinkajou.n.01 +boxer.n.04 mammal.n.01 +rabbit.n.01 placental.n.01 +longhorn.n.01 bovid.n.01 +blue_fox.n.01 fox.n.01 +woolly_monkey.n.01 new_world_monkey.n.01 +jungle_cat.n.01 jungle_cat.n.01 +vole.n.01 mammal.n.01 +western_big-eared_bat.n.01 long-eared_bat.n.01 +leopard.n.02 leopard.n.02 +hackney.n.02 hackney.n.02 +shetland_sheepdog.n.01 placental.n.01 +coati.n.01 carnivore.n.01 +wild_boar.n.01 mammal.n.01 +post_horse.n.01 placental.n.01 +porker.n.01 porker.n.01 +mouflon.n.01 mouflon.n.01 +australian_sea_lion.n.01 seal.n.09 +coondog.n.01 placental.n.01 +schipperke.n.01 mammal.n.01 +black_rat.n.01 rodent.n.01 +waterbuck.n.01 placental.n.01 +hack.n.06 odd-toed_ungulate.n.01 +central_chimpanzee.n.01 anthropoid_ape.n.01 +harrier.n.02 harrier.n.02 +lesser_panda.n.01 mammal.n.01 +wether.n.01 ruminant.n.01 +collie.n.01 shepherd_dog.n.01 +prancer.n.01 horse.n.01 +doberman.n.01 placental.n.01 +pygmy_marmoset.n.01 monkey.n.01 +phalanger.n.01 metatherian.n.01 +black-and-tan_coonhound.n.01 black-and-tan_coonhound.n.01 +woolly_monkey.n.01 primate.n.02 +ferret_badger.n.01 badger.n.02 +cave_myotis.n.01 placental.n.01 +desmodus_rotundus.n.01 vampire_bat.n.01 +malinois.n.01 shepherd_dog.n.01 +mexican_pocket_mouse.n.01 placental.n.01 +hackney.n.02 odd-toed_ungulate.n.01 +american_flying_squirrel.n.01 mammal.n.01 +syrian_bear.n.01 brown_bear.n.01 +dugong.n.01 sea_cow.n.01 +central_chimpanzee.n.01 mammal.n.01 +collared_pika.n.01 pika.n.01 +grey.n.07 odd-toed_ungulate.n.01 +domestic_llama.n.01 domestic_llama.n.01 +proboscidean.n.01 proboscidean.n.01 +gib.n.02 tom.n.02 +eurasian_otter.n.01 placental.n.01 +tree_squirrel.n.01 rodent.n.01 +flat-coated_retriever.n.01 flat-coated_retriever.n.01 +plantigrade_mammal.n.01 mammal.n.01 +cotswold.n.01 bovid.n.01 +welsh_pony.n.01 equine.n.01 +american_foxhound.n.01 carnivore.n.01 +addax.n.01 bovid.n.01 +aberdeen_angus.n.01 ruminant.n.01 +clydesdale.n.01 ungulate.n.01 +angora.n.02 goat.n.01 +taguan.n.01 taguan.n.01 +prototherian.n.01 mammal.n.01 +grade.n.09 cattle.n.01 +yearling.n.02 racehorse.n.01 +nyala.n.02 antelope.n.01 +springer.n.02 even-toed_ungulate.n.01 +seizure-alert_dog.n.01 seizure-alert_dog.n.01 +gib.n.02 cat.n.01 +longhorn.n.01 even-toed_ungulate.n.01 +striped_skunk.n.01 mammal.n.01 +coonhound.n.01 hunting_dog.n.01 +cur.n.01 canine.n.02 +exmoor.n.02 pony.n.05 +vicuna.n.03 vicuna.n.03 +white-tailed_jackrabbit.n.01 mammal.n.01 +kitty.n.04 feline.n.01 +pinscher.n.01 pinscher.n.01 +afghan_hound.n.01 afghan_hound.n.01 +fur_seal.n.01 fur_seal.n.01 +bull_mastiff.n.01 bull_mastiff.n.01 +hazel_mouse.n.01 dormouse.n.01 +ocelot.n.01 feline.n.01 +marco_polo_sheep.n.01 marco_polo_sheep.n.01 +baleen_whale.n.01 whale.n.02 +australian_sea_lion.n.01 australian_sea_lion.n.01 +porcupine.n.01 mammal.n.01 +whitetail_prairie_dog.n.01 whitetail_prairie_dog.n.01 +lesser_kudu.n.01 kudu.n.01 +rudapithecus.n.01 hominid.n.01 +boxer.n.04 carnivore.n.01 +blacktail_jackrabbit.n.01 lagomorph.n.01 +drill.n.02 baboon.n.01 +bluetick.n.01 dog.n.01 +vaquita.n.01 mammal.n.01 +tiger_cat.n.01 wildcat.n.03 +wheel_horse.n.01 equine.n.01 +flying_mouse.n.01 flying_mouse.n.01 +clydesdale.n.01 horse.n.01 +hound.n.01 dog.n.01 +bighorn.n.02 ruminant.n.01 +chinchilla.n.03 mammal.n.01 +raccoon_dog.n.01 placental.n.01 +palfrey.n.01 mammal.n.01 +rorqual.n.01 baleen_whale.n.01 +sassaby.n.01 even-toed_ungulate.n.01 +sloth_bear.n.01 carnivore.n.01 +rogue_elephant.n.01 proboscidean.n.01 +white_elephant.n.02 proboscidean.n.01 +virginia_deer.n.01 placental.n.01 +count_fleet.n.01 count_fleet.n.01 +lakeland_terrier.n.01 carnivore.n.01 +billy.n.02 ruminant.n.01 +omaha.n.04 equine.n.01 +soft-coated_wheaten_terrier.n.01 terrier.n.01 +bedlington_terrier.n.01 hunting_dog.n.01 +wisent.n.01 ungulate.n.01 +sable_antelope.n.01 even-toed_ungulate.n.01 +staffordshire_bullterrier.n.01 hunting_dog.n.01 +american_staffordshire_terrier.n.01 mammal.n.01 +belgian_hare.n.01 placental.n.01 +aquatic_mammal.n.01 mammal.n.01 +tibetan_terrier.n.01 mammal.n.01 +exmoor.n.01 even-toed_ungulate.n.01 +procyonid.n.01 placental.n.01 +canada_lynx.n.01 wildcat.n.03 +old_english_sheepdog.n.01 shepherd_dog.n.01 +raccoon.n.02 carnivore.n.01 +leafnose_bat.n.01 bat.n.01 +pygmy_sperm_whale.n.01 cetacean.n.01 +african_hunting_dog.n.01 carnivore.n.01 +spearnose_bat.n.01 placental.n.01 +pooch.n.01 pooch.n.01 +percheron.n.01 horse.n.01 +blenheim_spaniel.n.01 placental.n.01 +afghan_hound.n.01 mammal.n.01 +cur.n.01 cur.n.01 +persian_cat.n.01 mammal.n.01 +dun.n.01 horse.n.01 +nail-tailed_wallaby.n.01 mammal.n.01 +rock_squirrel.n.01 rock_squirrel.n.01 +tabby.n.01 tabby.n.01 +three-year-old_horse.n.01 horse.n.01 +broadtail.n.02 broadtail.n.02 +springbok.n.01 springbok.n.01 +sporting_dog.n.01 placental.n.01 +new_world_tapir.n.01 mammal.n.01 +muskrat.n.02 placental.n.01 +banteng.n.01 ungulate.n.01 +yak.n.02 even-toed_ungulate.n.01 +hog.n.03 hog.n.03 +basenji.n.01 basenji.n.01 +panther.n.02 leopard.n.02 +lesser_kudu.n.01 lesser_kudu.n.01 +gibbon.n.02 ape.n.01 +tamarisk_gerbil.n.01 mammal.n.01 +wheel_horse.n.01 ungulate.n.01 +beagle.n.01 carnivore.n.01 +small_civet.n.01 mammal.n.01 +hind.n.02 even-toed_ungulate.n.01 +blue_point_siamese.n.01 feline.n.01 +babirusa.n.01 swine.n.01 +wire-haired_fox_terrier.n.01 carnivore.n.01 +wood_rabbit.n.01 rabbit.n.01 +pacific_walrus.n.01 walrus.n.01 +long-tailed_porcupine.n.01 rodent.n.01 +hyrax.n.01 mammal.n.01 +airedale.n.01 carnivore.n.01 +silky_tamarin.n.01 monkey.n.01 +gomphothere.n.01 mammal.n.01 +nanny.n.02 mammal.n.01 +urial.n.01 bovid.n.01 +bullock.n.02 placental.n.01 +lapdog.n.01 placental.n.01 +german_short-haired_pointer.n.01 sporting_dog.n.01 +northern_flying_squirrel.n.01 northern_flying_squirrel.n.01 +eastern_chipmunk.n.01 placental.n.01 +warhorse.n.03 saddle_horse.n.01 +urial.n.01 ruminant.n.01 +domestic_llama.n.01 llama.n.01 +javanthropus.n.01 hominid.n.01 +northern_flying_squirrel.n.01 squirrel.n.01 +harness_horse.n.01 ungulate.n.01 +toy_manchester.n.01 mammal.n.01 +homo_habilis.n.01 hominid.n.01 +chimpanzee.n.01 mammal.n.01 +egyptian_cat.n.01 domestic_cat.n.01 +standard_poodle.n.01 carnivore.n.01 +sambar.n.01 ungulate.n.01 +silky_tamarin.n.01 mammal.n.01 +potoroo.n.01 marsupial.n.01 +chow.n.03 dog.n.01 +lincoln.n.03 ungulate.n.01 +black_squirrel.n.01 mammal.n.01 +hound.n.01 mammal.n.01 +common_raccoon.n.01 raccoon.n.02 +wild_sheep.n.01 even-toed_ungulate.n.01 +goat_antelope.n.01 bovid.n.01 +pygmy_chimpanzee.n.01 primate.n.02 +eared_seal.n.01 mammal.n.01 +lesser_rorqual.n.01 rorqual.n.01 +woodland_caribou.n.01 even-toed_ungulate.n.01 +common_shrew.n.01 common_shrew.n.01 +gemsbok.n.01 mammal.n.01 +tabby.n.02 domestic_cat.n.01 +marmoset.n.01 placental.n.01 +blenheim_spaniel.n.01 english_toy_spaniel.n.01 +fawn.n.02 mammal.n.01 +sassaby.n.01 bovid.n.01 +pacer.n.02 placental.n.01 +sassaby.n.01 sassaby.n.01 +deer_mouse.n.01 deer_mouse.n.01 +beef.n.01 ungulate.n.01 +baboon.n.01 monkey.n.01 +cotswold.n.01 ruminant.n.01 +ox.n.02 ox.n.02 +shire.n.02 odd-toed_ungulate.n.01 +american_saddle_horse.n.01 american_saddle_horse.n.01 +bassarisk.n.01 carnivore.n.01 +coach_horse.n.01 ungulate.n.01 +lesser_rorqual.n.01 whale.n.02 +greater_pichiciego.n.01 armadillo.n.01 +tabby.n.02 mammal.n.01 +water_rat.n.03 placental.n.01 +guereza.n.01 monkey.n.01 +collared_pika.n.01 placental.n.01 +vampire_bat.n.01 carnivorous_bat.n.01 +thomson's_gazelle.n.01 thomson's_gazelle.n.01 +stablemate.n.01 ungulate.n.01 +leveret.n.01 lagomorph.n.01 +eurasian_hamster.n.01 rodent.n.01 +steed.n.01 placental.n.01 +muskrat.n.02 rodent.n.01 +harpy.n.03 fruit_bat.n.01 +vicuna.n.03 ungulate.n.01 +tabby.n.02 carnivore.n.01 +irish_wolfhound.n.01 placental.n.01 +domestic_llama.n.01 even-toed_ungulate.n.01 +seattle_slew.n.01 equine.n.01 +talapoin.n.01 mammal.n.01 +stallion.n.01 odd-toed_ungulate.n.01 +ermine.n.02 musteline_mammal.n.01 +leporid.n.01 leporid.n.01 +african_elephant.n.01 african_elephant.n.01 +wood_rat.n.01 rodent.n.01 +schipperke.n.01 placental.n.01 +megatherian.n.01 megatherian.n.01 +kangaroo_mouse.n.01 kangaroo_mouse.n.01 +dairy_cattle.n.01 ruminant.n.01 +boston_bull.n.01 carnivore.n.01 +harbor_porpoise.n.01 cetacean.n.01 +cat.n.01 placental.n.01 +pichiciago.n.01 armadillo.n.01 +domestic_ass.n.01 mammal.n.01 +homo_soloensis.n.01 placental.n.01 +harpy.n.03 placental.n.01 +kuvasz.n.01 watchdog.n.02 +gibbon.n.02 anthropoid_ape.n.01 +black-footed_ferret.n.01 placental.n.01 +german_shepherd.n.01 carnivore.n.01 +cavalry_horse.n.01 ungulate.n.01 +mylodontid.n.01 mylodontid.n.01 +nanny.n.02 placental.n.01 +wild_ass.n.01 wild_ass.n.01 +big_cat.n.01 mammal.n.01 +thomson's_gazelle.n.01 placental.n.01 +clumber.n.01 spaniel.n.01 +ant_bear.n.01 mammal.n.01 +tamarin.n.01 tamarin.n.01 +rat.n.01 rodent.n.01 +sinanthropus.n.01 primate.n.02 +charolais.n.01 cattle.n.01 +citation.n.06 thoroughbred.n.02 +liver-spotted_dalmatian.n.01 placental.n.01 +lapdog.n.01 lapdog.n.01 +tapir.n.01 odd-toed_ungulate.n.01 +dun.n.01 odd-toed_ungulate.n.01 +flying_phalanger.n.01 phalanger.n.01 +atlantic_walrus.n.01 walrus.n.01 +gelding.n.01 mammal.n.01 +alaskan_brown_bear.n.01 placental.n.01 +jackass_bat.n.01 placental.n.01 +bull.n.01 bovid.n.01 +jaguar.n.01 mammal.n.01 +long-tailed_porcupine.n.01 mammal.n.01 +angora.n.02 ungulate.n.01 +desmodus_rotundus.n.01 desmodus_rotundus.n.01 +affirmed.n.01 equine.n.01 +false_vampire.n.01 false_vampire.n.01 +stud.n.04 male_horse.n.01 +seattle_slew.n.01 ungulate.n.01 +bird_dog.n.01 bird_dog.n.01 +cattalo.n.01 even-toed_ungulate.n.01 +two-year-old_horse.n.01 odd-toed_ungulate.n.01 +ewe.n.03 placental.n.01 +standard_schnauzer.n.01 mammal.n.01 +ox.n.02 even-toed_ungulate.n.01 +lemur.n.01 lemur.n.01 +zinjanthropus.n.01 placental.n.01 +genet.n.03 carnivore.n.01 +gordon_setter.n.01 canine.n.02 +groundhog.n.01 rodent.n.01 +doberman.n.01 carnivore.n.01 +earless_seal.n.01 seal.n.09 +killer_whale.n.01 toothed_whale.n.01 +jerboa_rat.n.01 rat.n.01 +beagle.n.01 mammal.n.01 +plains_pocket_mouse.n.01 mammal.n.01 +curly-coated_retriever.n.01 retriever.n.01 +broadtail.n.02 bovid.n.01 +flying_phalanger.n.01 metatherian.n.01 +fanaloka.n.01 viverrine.n.01 +muishond.n.01 muishond.n.01 +corgi.n.01 corgi.n.01 +grevy's_zebra.n.01 zebra.n.01 +homo_sapiens_sapiens.n.01 homo_sapiens.n.01 +english_setter.n.01 sporting_dog.n.01 +wombat.n.01 mammal.n.01 +whirlaway.n.01 placental.n.01 +heifer.n.01 mammal.n.01 +bedlington_terrier.n.01 bedlington_terrier.n.01 +uakari.n.01 new_world_monkey.n.01 +hognose_bat.n.01 carnivorous_bat.n.01 +northern_pocket_gopher.n.01 gopher.n.04 +crabeater_seal.n.01 placental.n.01 +northern_flying_squirrel.n.01 rodent.n.01 +kiang.n.01 odd-toed_ungulate.n.01 +sennenhunde.n.01 placental.n.01 +pony.n.02 pony.n.02 +chimpanzee.n.01 placental.n.01 +tatouay.n.01 placental.n.01 +white-footed_mouse.n.01 rodent.n.01 +false_vampire.n.01 mammal.n.01 +gnu.n.01 gnu.n.01 +tiglon.n.01 feline.n.01 +golden_hamster.n.01 rodent.n.01 +appaloosa.n.01 placental.n.01 +guereza.n.01 guereza.n.01 +pricket.n.02 pricket.n.02 +neandertal_man.n.01 mammal.n.01 +babirusa.n.01 mammal.n.01 +angora.n.03 rabbit.n.01 +cave_myotis.n.01 bat.n.01 +english_setter.n.01 hunting_dog.n.01 +ass.n.03 ass.n.03 +basset.n.01 dog.n.01 +marten.n.01 carnivore.n.01 +big_cat.n.01 carnivore.n.01 +rorqual.n.01 cetacean.n.01 +carnivore.n.01 carnivore.n.01 +golden_mole.n.01 mammal.n.01 +common_dolphin.n.01 whale.n.02 +sivapithecus.n.01 mammal.n.01 +friesian.n.01 bovine.n.01 +water_buffalo.n.01 ruminant.n.01 +black_rat.n.01 placental.n.01 +short-tailed_shrew.n.01 mammal.n.01 +serval.n.01 carnivore.n.01 +war_admiral.n.01 placental.n.01 +dachshund.n.01 dog.n.01 +pomeranian.n.01 spitz.n.01 +gaur.n.01 ungulate.n.01 +cynopterus_sphinx.n.01 cynopterus_sphinx.n.01 +cotton_mouse.n.01 mouse.n.01 +steller_sea_lion.n.01 placental.n.01 +brocket.n.02 brocket.n.02 +shrew.n.02 shrew.n.02 +tapir.n.01 ungulate.n.01 +bucking_bronco.n.01 ungulate.n.01 +rock_wallaby.n.01 marsupial.n.01 +new_world_tapir.n.01 placental.n.01 +carthorse.n.01 equine.n.01 +watchdog.n.02 watchdog.n.02 +tamarau.n.01 placental.n.01 +buckskin.n.01 placental.n.01 +brahman.n.04 bovine.n.01 +bonnet_macaque.n.01 placental.n.01 +anthropoid.n.02 anthropoid.n.02 +entlebucher.n.01 sennenhunde.n.01 +earless_seal.n.01 pinniped_mammal.n.01 +newfoundland.n.01 canine.n.02 +angora.n.02 mammal.n.01 +durham.n.02 beef.n.01 +white-footed_mouse.n.01 wood_mouse.n.01 +assault.n.03 assault.n.03 +aardvark.n.01 aardvark.n.01 +fanaloka.n.01 fanaloka.n.01 +giant_schnauzer.n.01 giant_schnauzer.n.01 +carthorse.n.01 horse.n.01 +common_wallaby.n.01 mammal.n.01 +mantled_ground_squirrel.n.01 ground_squirrel.n.02 +nanny.n.02 nanny.n.02 +bullterrier.n.01 hunting_dog.n.01 +homo.n.02 homo.n.02 +greater_pichiciego.n.01 greater_pichiciego.n.01 +gorilla.n.01 great_ape.n.01 +jackrabbit.n.01 placental.n.01 +roe_deer.n.01 even-toed_ungulate.n.01 +imperial_mammoth.n.01 elephant.n.01 +rabbit-eared_bandicoot.n.01 metatherian.n.01 +chickeree.n.01 rodent.n.01 +flickertail.n.01 flickertail.n.01 +reynard.n.01 mammal.n.01 +clydesdale_terrier.n.01 carnivore.n.01 +bear_cub.n.01 bear.n.01 +stoat.n.01 musteline_mammal.n.01 +gnu.n.01 bovid.n.01 +rhodesian_man.n.01 mammal.n.01 +cotswold.n.01 ungulate.n.01 +ram.n.05 sheep.n.01 +lapdog.n.01 canine.n.02 +santa_gertrudis.n.01 ruminant.n.01 +mountain_sheep.n.01 even-toed_ungulate.n.01 +eastern_chimpanzee.n.01 chimpanzee.n.01 +pouched_mouse.n.01 pouched_mouse.n.01 +pacific_bottlenose_dolphin.n.01 placental.n.01 +wild_sheep.n.01 wild_sheep.n.01 +domestic_cat.n.01 carnivore.n.01 +attack_dog.n.01 placental.n.01 +ungulata.n.01 placental.n.01 +deer.n.01 ungulate.n.01 +standard_poodle.n.01 mammal.n.01 +domestic_sheep.n.01 bovid.n.01 +black_rat.n.01 rat.n.01 +welsh.n.03 ruminant.n.01 +solo_man.n.01 placental.n.01 +great_dane.n.01 mammal.n.01 +pithecanthropus.n.01 placental.n.01 +lhasa.n.02 carnivore.n.01 +italian_greyhound.n.01 carnivore.n.01 +domestic_sheep.n.01 placental.n.01 +bull.n.11 mammal.n.01 +exmoor.n.02 ungulate.n.01 +jersey.n.05 ungulate.n.01 +kiang.n.01 mammal.n.01 +polo_pony.n.01 mammal.n.01 +yearling.n.02 horse.n.01 +hare.n.01 leporid.n.01 +central_chimpanzee.n.01 primate.n.02 +doberman.n.01 working_dog.n.01 +trotting_horse.n.01 odd-toed_ungulate.n.01 +wirehair.n.01 placental.n.01 +lionet.n.01 placental.n.01 +zebu.n.01 bovid.n.01 +glutton.n.02 mammal.n.01 +stud.n.04 equine.n.01 +muskrat.n.02 muskrat.n.02 +thomson's_gazelle.n.01 ruminant.n.01 +irish_water_spaniel.n.01 hunting_dog.n.01 +sealyham_terrier.n.01 wirehair.n.01 +musk_kangaroo.n.01 kangaroo.n.01 +monkey.n.01 primate.n.02 +three-year-old_horse.n.01 three-year-old_horse.n.01 +water_chevrotain.n.01 water_chevrotain.n.01 +baronduki.n.01 placental.n.01 +guinea_pig.n.02 rodent.n.01 +english_springer.n.01 english_springer.n.01 +viscacha.n.01 viscacha.n.01 +ass.n.03 ungulate.n.01 +harnessed_antelope.n.01 ruminant.n.01 +chesapeake_bay_retriever.n.01 chesapeake_bay_retriever.n.01 +bovine.n.01 bovine.n.01 +numbat.n.01 dasyurid_marsupial.n.01 +large_poodle.n.01 carnivore.n.01 +roan.n.02 equine.n.01 +vole.n.01 wood_rat.n.01 +great_ape.n.01 mammal.n.01 +entellus.n.01 old_world_monkey.n.01 +primate.n.02 mammal.n.01 +squirrel_monkey.n.01 new_world_monkey.n.01 +two-year-old_horse.n.01 mammal.n.01 +wild_goat.n.01 goat.n.01 +anoa.n.01 bovid.n.01 +hunting_dog.n.01 mammal.n.01 +native_cat.n.01 mammal.n.01 +feline.n.01 mammal.n.01 +bandicoot.n.01 mammal.n.01 +mare.n.01 mammal.n.01 +homo_sapiens.n.01 primate.n.02 +river_dolphin.n.01 toothed_whale.n.01 +wharf_rat.n.02 rodent.n.01 +cardigan.n.02 dog.n.01 +saki.n.03 primate.n.02 +zoril.n.01 mammal.n.01 +springer.n.02 ungulate.n.01 +dark_horse.n.02 equine.n.01 +shepherd_dog.n.01 canine.n.02 +bull.n.11 placental.n.01 +world.n.08 mammal.n.01 +giant_schnauzer.n.01 schnauzer.n.01 +irish_terrier.n.01 mammal.n.01 +black-footed_ferret.n.01 musteline_mammal.n.01 +keeshond.n.01 canine.n.02 +aardwolf.n.01 carnivore.n.01 +pembroke.n.01 dog.n.01 +foxhound.n.01 canine.n.02 +red_fox.n.03 carnivore.n.01 +hooded_skunk.n.01 mammal.n.01 +harbor_porpoise.n.01 harbor_porpoise.n.01 +woolly_indris.n.01 placental.n.01 +pouched_mouse.n.01 metatherian.n.01 +miniature_poodle.n.01 placental.n.01 +pocket_rat.n.01 rodent.n.01 +japanese_deer.n.01 deer.n.01 +gibbon.n.02 lesser_ape.n.01 +slender_loris.n.01 primate.n.02 +cow.n.02 placental.n.01 +irish_wolfhound.n.01 hound.n.01 +merino.n.01 bovid.n.01 +bullock.n.01 ruminant.n.01 +desmodus_rotundus.n.01 mammal.n.01 +black-and-tan_coonhound.n.01 hunting_dog.n.01 +american_staffordshire_terrier.n.01 bullterrier.n.01 +cavy.n.01 cavy.n.01 +fur_seal.n.02 fur_seal.n.02 +jird.n.01 jird.n.01 +clydesdale_terrier.n.01 dog.n.01 +protohippus.n.01 mammal.n.01 +greater_swiss_mountain_dog.n.01 working_dog.n.01 +capuchin.n.02 capuchin.n.02 +chigetai.n.01 ass.n.03 +southern_flying_squirrel.n.01 placental.n.01 +mangabey.n.01 old_world_monkey.n.01 +carthorse.n.01 ungulate.n.01 +lesser_rorqual.n.01 cetacean.n.01 +newfoundland.n.01 carnivore.n.01 +gaur.n.01 mammal.n.01 +pacific_bottlenose_dolphin.n.01 aquatic_mammal.n.01 +sled_dog.n.01 carnivore.n.01 +spouter.n.03 cetacean.n.01 +tennessee_walker.n.01 equine.n.01 +pangolin.n.01 placental.n.01 +old_world_porcupine.n.01 placental.n.01 +sewer_rat.n.01 brown_rat.n.01 +swamp_rabbit.n.02 wood_rabbit.n.01 +cheviot.n.01 ungulate.n.01 +english_toy_spaniel.n.01 carnivore.n.01 +collared_peccary.n.01 even-toed_ungulate.n.01 +mountain_goat.n.01 goat_antelope.n.01 +golden_retriever.n.01 golden_retriever.n.01 +rabbit.n.01 rabbit.n.01 +yorkshire_terrier.n.01 mammal.n.01 +gomphothere.n.01 pachyderm.n.01 +fisher.n.02 mammal.n.01 +wharf_rat.n.02 rat.n.01 +tenrec.n.01 tenrec.n.01 +jumping_mouse.n.01 jumping_mouse.n.01 +cinnamon_bear.n.01 american_black_bear.n.01 +liver_chestnut.n.01 odd-toed_ungulate.n.01 +howler_monkey.n.01 placental.n.01 +panther.n.02 feline.n.01 +sow.n.01 ungulate.n.01 +bird_dog.n.01 sporting_dog.n.01 +pooch.n.01 canine.n.02 +manchester_terrier.n.01 dog.n.01 +king_charles_spaniel.n.01 king_charles_spaniel.n.01 +mouser.n.01 carnivore.n.01 +mountain_goat.n.01 bovid.n.01 +american_shrew_mole.n.01 mammal.n.01 +count_fleet.n.01 thoroughbred.n.02 +white-tailed_jackrabbit.n.01 white-tailed_jackrabbit.n.01 +kuvasz.n.01 working_dog.n.01 +peba.n.01 armadillo.n.01 +blue_fox.n.01 placental.n.01 +asiatic_shrew_mole.n.01 insectivore.n.01 +hudson_bay_collared_lemming.n.01 placental.n.01 +bunny.n.02 leporid.n.01 +tennessee_walker.n.01 horse.n.01 +rat_terrier.n.01 hunting_dog.n.01 +langur.n.01 placental.n.01 +european_wood_mouse.n.01 mouse.n.01 +nude_mouse.n.01 nude_mouse.n.01 +mole.n.06 mole.n.06 +affirmed.n.01 affirmed.n.01 +numbat.n.01 marsupial.n.01 +mule.n.01 mule.n.01 +whale.n.02 aquatic_mammal.n.01 +tennessee_walker.n.01 saddle_horse.n.01 +wharf_rat.n.02 brown_rat.n.01 +barren_ground_caribou.n.01 barren_ground_caribou.n.01 +galago.n.01 galago.n.01 +stud.n.04 stud.n.04 +atlantic_walrus.n.01 atlantic_walrus.n.01 +american_black_bear.n.01 placental.n.01 +collie.n.01 collie.n.01 +paca.n.01 mammal.n.01 +wolfhound.n.01 carnivore.n.01 +mountain_nyala.n.01 mammal.n.01 +bezoar_goat.n.01 goat.n.01 +american_shrew_mole.n.01 mole.n.06 +muntjac.n.01 mammal.n.01 +two-year-old_horse.n.01 racehorse.n.01 +goat_antelope.n.01 ruminant.n.01 +packrat.n.02 packrat.n.02 +skye_terrier.n.01 terrier.n.01 +douroucouli.n.01 monkey.n.01 +prairie_dog.n.01 placental.n.01 +lucy.n.01 hominid.n.01 +hack.n.07 horse.n.01 +deer.n.01 mammal.n.01 +friesian.n.01 even-toed_ungulate.n.01 +seeing_eye_dog.n.01 carnivore.n.01 +santa_gertrudis.n.01 beef.n.01 +javanthropus.n.01 javanthropus.n.01 +ruminant.n.01 ruminant.n.01 +crabeater_seal.n.01 pinniped_mammal.n.01 +grivet.n.01 mammal.n.01 +potoroo.n.01 kangaroo.n.01 +rhodesian_ridgeback.n.01 canine.n.02 +manatee.n.01 aquatic_mammal.n.01 +pinniped_mammal.n.01 placental.n.01 +kuvasz.n.01 dog.n.01 +yak.n.02 ungulate.n.01 +farm_horse.n.01 odd-toed_ungulate.n.01 +thoroughbred.n.02 placental.n.01 +english_springer.n.01 placental.n.01 +talapoin.n.01 talapoin.n.01 +quagga.n.01 equine.n.01 +bouvier_des_flandres.n.01 placental.n.01 +poodle.n.01 mammal.n.01 +stepper.n.03 odd-toed_ungulate.n.01 +welsh.n.03 cattle.n.01 +rottweiler.n.01 shepherd_dog.n.01 +tarsius_syrichta.n.01 primate.n.02 +bluetick.n.01 carnivore.n.01 +affenpinscher.n.01 placental.n.01 +tailless_tenrec.n.01 placental.n.01 +pooch.n.01 dog.n.01 +manchester_terrier.n.01 canine.n.02 +malinois.n.01 mammal.n.01 +omaha.n.04 omaha.n.04 +gib.n.02 mammal.n.01 +eastern_dasyure.n.01 dasyure.n.01 +lemur.n.01 primate.n.02 +muishond.n.01 placental.n.01 +sheep.n.01 ruminant.n.01 +elk.n.01 placental.n.01 +seattle_slew.n.01 odd-toed_ungulate.n.01 +boarhound.n.01 mammal.n.01 +woolly_rhinoceros.n.01 placental.n.01 +rambouillet.n.01 domestic_sheep.n.01 +bowhead.n.01 bowhead.n.01 +grasshopper_mouse.n.01 placental.n.01 +leafnose_bat.n.01 carnivorous_bat.n.01 +american_foxhound.n.01 dog.n.01 +homo.n.02 mammal.n.01 +dall_sheep.n.01 bovid.n.01 +mountain_goat.n.01 even-toed_ungulate.n.01 +tamarisk_gerbil.n.01 gerbil.n.01 +charolais.n.01 ungulate.n.01 +prairie_vole.n.01 rodent.n.01 +finback.n.01 finback.n.01 +polar_hare.n.01 polar_hare.n.01 +douroucouli.n.01 placental.n.01 +ground_squirrel.n.02 rodent.n.01 +hairy-legged_vampire_bat.n.01 mammal.n.01 +greater_pichiciego.n.01 mammal.n.01 +white-lipped_peccary.n.01 peccary.n.01 +dwarf_sperm_whale.n.01 whale.n.02 +stablemate.n.01 horse.n.01 +mule_deer.n.01 deer.n.01 +sausage_dog.n.01 sausage_dog.n.01 +female_mammal.n.01 female_mammal.n.01 +digitigrade_mammal.n.01 mammal.n.01 +wild_sheep.n.01 ungulate.n.01 +woolly_monkey.n.01 placental.n.01 +peccary.n.01 ungulate.n.01 +siamang.n.01 ape.n.01 +wild_ass.n.01 ass.n.03 +antelope.n.01 mammal.n.01 +kanchil.n.01 chevrotain.n.01 +giant_eland.n.01 even-toed_ungulate.n.01 +timber_wolf.n.01 carnivore.n.01 +european_hare.n.01 leporid.n.01 +guernsey.n.02 bovid.n.01 +warrigal.n.01 equine.n.01 +seal.n.09 seal.n.09 +european_rabbit.n.01 lagomorph.n.01 +tom.n.02 cat.n.01 +pug.n.01 dog.n.01 +white_wolf.n.01 canine.n.02 +grade.n.09 mammal.n.01 +grey.n.07 ungulate.n.01 +new_world_mouse.n.01 placental.n.01 +crabeater_seal.n.01 crabeater_seal.n.01 +beaked_whale.n.01 beaked_whale.n.01 +seattle_slew.n.01 mammal.n.01 +zebra.n.01 mammal.n.01 +leonberg.n.01 canine.n.02 +harnessed_antelope.n.01 harnessed_antelope.n.01 +broadtail.n.02 ruminant.n.01 +rock_squirrel.n.01 squirrel.n.01 +wolfhound.n.01 hunting_dog.n.01 +pinche.n.01 new_world_monkey.n.01 +big_brown_bat.n.01 bat.n.01 +american_foxhound.n.01 placental.n.01 +miniature_poodle.n.01 poodle.n.01 +carnivorous_bat.n.01 carnivorous_bat.n.01 +mexican_hairless.n.01 canine.n.02 +american_marten.n.01 musteline_mammal.n.01 +asian_wild_ox.n.01 placental.n.01 +steller's_sea_cow.n.01 aquatic_mammal.n.01 +percheron.n.01 placental.n.01 +old_world_buffalo.n.01 ungulate.n.01 +ord_kangaroo_rat.n.01 kangaroo_rat.n.01 +cotton_mouse.n.01 mammal.n.01 +lynx.n.02 wildcat.n.03 +alley_cat.n.01 feline.n.01 +serow.n.01 even-toed_ungulate.n.01 +curly-coated_retriever.n.01 mammal.n.01 +grison.n.01 grison.n.01 +flying_mouse.n.01 flying_phalanger.n.01 +tamarau.n.01 tamarau.n.01 +sennenhunde.n.01 working_dog.n.01 +common_eland.n.01 placental.n.01 +phyllostomus_hastatus.n.01 mammal.n.01 +grizzly.n.01 mammal.n.01 +common_eland.n.01 eland.n.01 +silky_pocket_mouse.n.01 rat.n.01 +racehorse.n.01 equine.n.01 +elephant_seal.n.01 mammal.n.01 +starnose_mole.n.01 mole.n.06 +gazella_subgutturosa.n.01 placental.n.01 +kerry_blue_terrier.n.01 terrier.n.01 +vespertilian_bat.n.01 vespertilian_bat.n.01 +colobus.n.01 placental.n.01 +male_horse.n.01 placental.n.01 +cow.n.02 cow.n.02 +sea_otter.n.01 musteline_mammal.n.01 +vampire_bat.n.01 placental.n.01 +whirlaway.n.01 racehorse.n.01 +wood_rabbit.n.01 wood_rabbit.n.01 +porcupine.n.01 porcupine.n.01 +bonnet_macaque.n.01 primate.n.02 +pygmy_marmoset.n.01 new_world_monkey.n.01 +bullterrier.n.01 bullterrier.n.01 +flying_fox.n.01 placental.n.01 +black-and-tan_coonhound.n.01 dog.n.01 +ocelot.n.01 placental.n.01 +black-tailed_deer.n.01 mule_deer.n.01 +river_dolphin.n.01 river_dolphin.n.01 +mouse-eared_bat.n.01 mammal.n.01 +chestnut.n.06 placental.n.01 +burro.n.01 domestic_ass.n.01 +kid.n.05 bovid.n.01 +harnessed_antelope.n.01 even-toed_ungulate.n.01 +japanese_deer.n.01 ungulate.n.01 +hereford.n.01 ungulate.n.01 +snow_leopard.n.01 carnivore.n.01 +sheep.n.01 ungulate.n.01 +antelope.n.01 ungulate.n.01 +indri.n.01 lemur.n.01 +dun.n.01 ungulate.n.01 +eared_seal.n.01 aquatic_mammal.n.01 +cocker_spaniel.n.01 carnivore.n.01 +percheron.n.01 ungulate.n.01 +egyptian_cat.n.01 feline.n.01 +pouched_mouse.n.01 mammal.n.01 +kob.n.01 ungulate.n.01 +wombat.n.01 marsupial.n.01 +brocket.n.02 deer.n.01 +european_lemming.n.01 rodent.n.01 +kinkajou.n.01 placental.n.01 +toothed_whale.n.01 mammal.n.01 +carabao.n.01 placental.n.01 +harbor_seal.n.01 mammal.n.01 +shetland_pony.n.01 equine.n.01 +malinois.n.01 canine.n.02 +hereford.n.01 beef.n.01 +water_spaniel.n.01 sporting_dog.n.01 +tapir.n.01 mammal.n.01 +american_staffordshire_terrier.n.01 hunting_dog.n.01 +common_raccoon.n.01 mammal.n.01 +panther.n.02 big_cat.n.01 +grey_whale.n.01 grey_whale.n.01 +papillon.n.01 toy_dog.n.01 +bird_dog.n.01 dog.n.01 +blenheim_spaniel.n.01 mammal.n.01 +wheel_horse.n.01 draft_horse.n.01 +racehorse.n.01 ungulate.n.01 +eastern_grey_squirrel.n.01 mammal.n.01 +arabian.n.02 ungulate.n.01 +pinscher.n.01 watchdog.n.02 +northern_bog_lemming.n.01 lemming.n.01 +snow_leopard.n.01 placental.n.01 +egyptian_cat.n.01 mammal.n.01 +angora.n.03 leporid.n.01 +bezoar_goat.n.01 ungulate.n.01 +vampire_bat.n.01 mammal.n.01 +lesser_panda.n.01 procyonid.n.01 +eland.n.01 bovid.n.01 +soft-coated_wheaten_terrier.n.01 placental.n.01 +lucy.n.01 mammal.n.01 +zebra.n.01 equine.n.01 +american_shrew_mole.n.01 placental.n.01 +weimaraner.n.01 placental.n.01 +civet.n.01 mammal.n.01 +saiga.n.01 mammal.n.01 +rhodesian_man.n.01 primate.n.02 +coach_horse.n.01 mammal.n.01 +jennet.n.01 ungulate.n.01 +peba.n.01 edentate.n.01 +pilot_whale.n.01 dolphin.n.02 +grey_fox.n.01 grey_fox.n.01 +grampus.n.02 placental.n.01 +beaked_whale.n.01 toothed_whale.n.01 +english_toy_spaniel.n.01 toy_dog.n.01 +devon.n.02 devon.n.02 +walker_hound.n.01 walker_hound.n.01 +woolly_rhinoceros.n.01 ungulate.n.01 +warrigal.n.01 mammal.n.01 +gelding.n.01 horse.n.01 +shrew_mole.n.01 shrew_mole.n.01 +chimpanzee.n.01 chimpanzee.n.01 +chihuahua.n.03 chihuahua.n.03 +redbone.n.01 canine.n.02 +rock_squirrel.n.01 rodent.n.01 +coach_horse.n.01 draft_horse.n.01 +alley_cat.n.01 placental.n.01 +sloth_bear.n.01 bear.n.01 +borzoi.n.01 canine.n.02 +mapinguari.n.01 mammal.n.01 +common_shrew.n.01 placental.n.01 +fur_seal.n.02 pinniped_mammal.n.01 +binturong.n.01 mammal.n.01 +scottish_deerhound.n.01 carnivore.n.01 +muishond.n.01 musteline_mammal.n.01 +common_dolphin.n.01 common_dolphin.n.01 +anthropoid_ape.n.01 ape.n.01 +miniature_poodle.n.01 carnivore.n.01 +cattalo.n.01 cattle.n.01 +marco_polo_sheep.n.01 ruminant.n.01 +greyhound.n.01 mammal.n.01 +field_spaniel.n.01 hunting_dog.n.01 +griffon.n.03 canine.n.02 +forest_goat.n.01 mammal.n.01 +shepherd_dog.n.01 shepherd_dog.n.01 +santa_gertrudis.n.01 santa_gertrudis.n.01 +pocket_mouse.n.01 placental.n.01 +kitty.n.04 carnivore.n.01 +hart.n.03 placental.n.01 +water_rat.n.03 mammal.n.01 +pere_david's_deer.n.01 placental.n.01 +big_cat.n.01 feline.n.01 +binturong.n.01 carnivore.n.01 +algeripithecus_minutus.n.01 algeripithecus_minutus.n.01 +swine.n.01 ungulate.n.01 +red_bat.n.01 red_bat.n.01 +billy.n.02 bovid.n.01 +vixen.n.02 carnivore.n.01 +eurasian_otter.n.01 musteline_mammal.n.01 +viverrine.n.01 viverrine.n.01 +malamute.n.01 sled_dog.n.01 +western_grey_squirrel.n.01 squirrel.n.01 +ewe.n.03 even-toed_ungulate.n.01 +elephant.n.01 pachyderm.n.01 +santa_gertrudis.n.01 mammal.n.01 +striped_muishond.n.01 muishond.n.01 +mare.n.01 odd-toed_ungulate.n.01 +flat-coated_retriever.n.01 retriever.n.01 +grizzly.n.01 brown_bear.n.01 +gallant_fox.n.01 thoroughbred.n.02 +margay.n.01 wildcat.n.03 +papillon.n.01 canine.n.02 +wood_rat.n.01 placental.n.01 +saber-toothed_tiger.n.01 carnivore.n.01 +welsh_pony.n.01 mammal.n.01 +groenendael.n.01 groenendael.n.01 +clydesdale_terrier.n.01 hunting_dog.n.01 +wirehair.n.01 hunting_dog.n.01 +deer_mouse.n.01 mouse.n.01 +silver_fox.n.01 silver_fox.n.01 +white-tailed_jackrabbit.n.01 jackrabbit.n.01 +ferret_badger.n.01 placental.n.01 +airedale.n.01 terrier.n.01 +sivapithecus.n.01 hominid.n.01 +jack.n.12 ungulate.n.01 +native_cat.n.01 native_cat.n.01 +bengal_tiger.n.01 placental.n.01 +mandrill.n.01 primate.n.02 +asiatic_black_bear.n.01 mammal.n.01 +bedlington_terrier.n.01 dog.n.01 +black_squirrel.n.01 tree_squirrel.n.01 +staffordshire_bullterrier.n.01 dog.n.01 +trotting_horse.n.01 mammal.n.01 +hudson_bay_collared_lemming.n.01 pied_lemming.n.01 +german_shepherd.n.01 placental.n.01 +lioness.n.01 big_cat.n.01 +bloodhound.n.01 dog.n.01 +coondog.n.01 hound.n.01 +broodmare.n.01 ungulate.n.01 +newfoundland.n.01 dog.n.01 +water_buffalo.n.01 even-toed_ungulate.n.01 +deer_mouse.n.01 wood_mouse.n.01 +american_marten.n.01 mammal.n.01 +australopithecus_boisei.n.01 placental.n.01 +cattalo.n.01 cattalo.n.01 +mapinguari.n.01 mylodontid.n.01 +milking_shorthorn.n.01 ruminant.n.01 +jerboa.n.01 mammal.n.01 +bongo.n.02 mammal.n.01 +norfolk_terrier.n.01 terrier.n.01 +striped_muishond.n.01 musteline_mammal.n.01 +serotine.n.01 vespertilian_bat.n.01 +rock_hyrax.n.01 rock_hyrax.n.01 +kiang.n.01 wild_ass.n.01 +pacific_walrus.n.01 placental.n.01 +dugong.n.01 placental.n.01 +welsh_terrier.n.01 placental.n.01 +rat.n.01 rat.n.01 +west_highland_white_terrier.n.01 terrier.n.01 +water_dog.n.02 sporting_dog.n.01 +red_deer.n.01 red_deer.n.01 +hominid.n.01 primate.n.02 +takin.n.01 goat_antelope.n.01 +wildcat.n.03 carnivore.n.01 +rhodesian_ridgeback.n.01 placental.n.01 +blue_whale.n.01 baleen_whale.n.01 +hooded_seal.n.01 aquatic_mammal.n.01 +walrus.n.01 aquatic_mammal.n.01 +secretariat.n.02 racehorse.n.01 +taguan.n.01 placental.n.01 +cape_buffalo.n.01 bovid.n.01 +gnu.n.01 ruminant.n.01 +stone_marten.n.01 stone_marten.n.01 +cardigan.n.02 cardigan.n.02 +whippet.n.01 carnivore.n.01 +english_setter.n.01 carnivore.n.01 +kangaroo_rat.n.01 placental.n.01 +aoudad.n.01 placental.n.01 +yak.n.02 ox.n.02 +bottlenose_dolphin.n.01 aquatic_mammal.n.01 +lechwe.n.01 ungulate.n.01 +chow.n.03 mammal.n.01 +flickertail.n.01 placental.n.01 +burro.n.01 odd-toed_ungulate.n.01 +lion.n.01 carnivore.n.01 +hartebeest.n.01 mammal.n.01 +watchdog.n.02 dog.n.01 +finback.n.01 rorqual.n.01 +mexican_hairless.n.01 placental.n.01 +placental.n.01 mammal.n.01 +santa_gertrudis.n.01 placental.n.01 +pricket.n.02 ruminant.n.01 +staffordshire_bullterrier.n.01 mammal.n.01 +red_poll.n.01 bovid.n.01 +margay.n.01 feline.n.01 +eastern_cottontail.n.01 mammal.n.01 +colobus.n.01 mammal.n.01 +tabby.n.01 mammal.n.01 +european_wood_mouse.n.01 placental.n.01 +bull.n.01 placental.n.01 +ram.n.05 mammal.n.01 +rodent.n.01 mammal.n.01 +murine.n.01 placental.n.01 +welsh.n.03 placental.n.01 +margay.n.01 mammal.n.01 +sussex_spaniel.n.01 sussex_spaniel.n.01 +leopard_cat.n.01 placental.n.01 +citation.n.06 citation.n.06 +coydog.n.01 carnivore.n.01 +war_admiral.n.01 racehorse.n.01 +big-eared_bat.n.01 mammal.n.01 +java_man.n.01 mammal.n.01 +milking_shorthorn.n.01 mammal.n.01 +bezoar_goat.n.01 ruminant.n.01 +grade.n.09 bovine.n.01 +coydog.n.01 coyote.n.01 +great_dane.n.01 working_dog.n.01 +grey.n.07 saddle_horse.n.01 +asian_wild_ox.n.01 ox.n.02 +macaque.n.01 placental.n.01 +american_harvest_mouse.n.01 rodent.n.01 +toy_dog.n.01 mammal.n.01 +malinois.n.01 belgian_sheepdog.n.01 +grade.n.09 ruminant.n.01 +cocker_spaniel.n.01 dog.n.01 +digitigrade_mammal.n.01 digitigrade_mammal.n.01 +brown_rat.n.01 placental.n.01 +tamarisk_gerbil.n.01 tamarisk_gerbil.n.01 +mexican_pocket_mouse.n.01 mexican_pocket_mouse.n.01 +hog.n.03 mammal.n.01 +eohippus.n.01 mammal.n.01 +grey_fox.n.01 placental.n.01 +bovine.n.01 ruminant.n.01 +eland.n.01 placental.n.01 +walker_hound.n.01 hound.n.01 +ibex.n.01 ruminant.n.01 +beef.n.01 beef.n.01 +longwool.n.01 bovid.n.01 +nilgai.n.01 ruminant.n.01 +pygmy_chimpanzee.n.01 mammal.n.01 +quarter_horse.n.01 horse.n.01 +equine.n.01 equine.n.01 +africander.n.01 ungulate.n.01 +coati.n.01 coati.n.01 +solo_man.n.01 homo.n.02 +belgian_sheepdog.n.01 placental.n.01 +short-tailed_shrew.n.01 placental.n.01 +american_foxhound.n.01 canine.n.02 +japanese_deer.n.01 ruminant.n.01 +stalking-horse.n.04 horse.n.01 +tabby.n.01 domestic_cat.n.01 +wild_sheep.n.01 ruminant.n.01 +common_eland.n.01 antelope.n.01 +hereford.n.01 bovine.n.01 +apar.n.01 placental.n.01 +three-toed_sloth.n.01 placental.n.01 +kangaroo_rat.n.01 rat.n.01 +blue_point_siamese.n.01 carnivore.n.01 +mare.n.01 equine.n.01 +white_elephant.n.02 indian_elephant.n.01 +silky_pocket_mouse.n.01 rodent.n.01 +gayal.n.01 placental.n.01 +earless_seal.n.01 aquatic_mammal.n.01 +malayan_tapir.n.01 odd-toed_ungulate.n.01 +curly-coated_retriever.n.01 carnivore.n.01 +cairn.n.02 placental.n.01 +pacific_bottlenose_dolphin.n.01 cetacean.n.01 +chiacoan_peccary.n.01 placental.n.01 +guernsey.n.02 guernsey.n.02 +basset.n.01 hunting_dog.n.01 +beef.n.01 cattle.n.01 +rhinoceros.n.01 odd-toed_ungulate.n.01 +greater_pichiciego.n.01 edentate.n.01 +two-year-old_horse.n.01 equine.n.01 +cocker_spaniel.n.01 placental.n.01 +naked_mole_rat.n.01 mammal.n.01 +omaha.n.04 placental.n.01 +loir.n.01 mammal.n.01 +hack.n.08 placental.n.01 +mantled_ground_squirrel.n.01 squirrel.n.01 +clumber.n.01 mammal.n.01 +eskimo_dog.n.01 working_dog.n.01 +belgian_sheepdog.n.01 carnivore.n.01 +queen.n.09 queen.n.09 +south_american_sea_lion.n.01 placental.n.01 +lippizan.n.01 placental.n.01 +gelding.n.01 odd-toed_ungulate.n.01 +arabian.n.02 arabian.n.02 +insectivore.n.01 placental.n.01 +smiledon_californicus.n.01 placental.n.01 +water_buffalo.n.01 ungulate.n.01 +bluetick.n.01 canine.n.02 +norwegian_elkhound.n.01 hunting_dog.n.01 +stirk.n.01 placental.n.01 +mustang.n.01 ungulate.n.01 +red_fox.n.03 fox.n.01 +cayuse.n.01 cayuse.n.01 +courser.n.03 carnivore.n.01 +ermine.n.02 ermine.n.02 +hack.n.06 hack.n.06 +paranthropus.n.01 paranthropus.n.01 +hominoid.n.01 primate.n.02 +napu.n.01 even-toed_ungulate.n.01 +bushbuck.n.01 bushbuck.n.01 +northern_pocket_gopher.n.01 northern_pocket_gopher.n.01 +malayan_tapir.n.01 malayan_tapir.n.01 +guernsey.n.02 cattle.n.01 +atlantic_bottlenose_dolphin.n.01 whale.n.02 +liver_chestnut.n.01 liver_chestnut.n.01 +ayrshire.n.01 bovid.n.01 +border_collie.n.01 mammal.n.01 +blue_fox.n.01 mammal.n.01 +norwich_terrier.n.01 hunting_dog.n.01 +german_short-haired_pointer.n.01 mammal.n.01 +liger.n.01 carnivore.n.01 +irish_water_spaniel.n.01 water_spaniel.n.01 +american_harvest_mouse.n.01 new_world_mouse.n.01 +oryx.n.01 oryx.n.01 +devon.n.02 cattle.n.01 +hartebeest.n.01 even-toed_ungulate.n.01 +pine_vole.n.01 wood_rat.n.01 +wood_mouse.n.01 mouse.n.01 +whippet.n.01 greyhound.n.01 +arabian.n.02 mammal.n.01 +cairn.n.02 dog.n.01 +carabao.n.01 ruminant.n.01 +european_water_shrew.n.01 water_shrew.n.01 +two-toed_sloth.n.02 sloth.n.02 +langur.n.01 langur.n.01 +jack.n.12 equine.n.01 +fawn.n.02 even-toed_ungulate.n.01 +bison.n.01 placental.n.01 +gemsbok.n.01 even-toed_ungulate.n.01 +kudu.n.01 ruminant.n.01 +woodland_caribou.n.01 mammal.n.01 +burmese_cat.n.01 cat.n.01 +wolverine.n.03 placental.n.01 +gayal.n.01 mammal.n.01 +billy.n.02 even-toed_ungulate.n.01 +indri.n.01 primate.n.02 +warhorse.n.03 odd-toed_ungulate.n.01 +greater_swiss_mountain_dog.n.01 carnivore.n.01 +lemur.n.01 mammal.n.01 +stirk.n.01 bovid.n.01 +prairie_dog.n.01 mammal.n.01 +bunny.n.02 placental.n.01 +aye-aye.n.01 placental.n.01 +airedale.n.01 hunting_dog.n.01 +puku.n.01 even-toed_ungulate.n.01 +antelope.n.01 bovid.n.01 +slender_loris.n.01 mammal.n.01 +grivet.n.01 primate.n.02 +mastiff.n.01 mastiff.n.01 +farm_horse.n.01 horse.n.01 +starnose_mole.n.01 mammal.n.01 +big-eared_bat.n.01 leafnose_bat.n.01 +saddle_horse.n.01 horse.n.01 +lesser_rorqual.n.01 lesser_rorqual.n.01 +civet.n.01 civet.n.01 +common_opossum.n.01 common_opossum.n.01 +potto.n.02 potto.n.02 +typical_jerboa.n.01 typical_jerboa.n.01 +house_mouse.n.01 house_mouse.n.01 +tarsius_glis.n.01 tarsier.n.01 +hazel_mouse.n.01 rodent.n.01 +yorkshire_terrier.n.01 yorkshire_terrier.n.01 +pinscher.n.01 carnivore.n.01 +brocket.n.02 placental.n.01 +bull_mastiff.n.01 carnivore.n.01 +mountain_goat.n.01 ungulate.n.01 +slender-tailed_meerkat.n.01 viverrine.n.01 +cow_pony.n.01 odd-toed_ungulate.n.01 +golden_retriever.n.01 hunting_dog.n.01 +whirlaway.n.01 ungulate.n.01 +bison.n.01 bovid.n.01 +fox_squirrel.n.01 rodent.n.01 +bay.n.07 odd-toed_ungulate.n.01 +european_rabbit.n.01 placental.n.01 +cinnamon_bear.n.01 bear.n.01 +bull.n.01 ruminant.n.01 +south_american_sea_lion.n.01 aquatic_mammal.n.01 +madagascar_cat.n.01 primate.n.02 +australopithecus_afarensis.n.01 australopithecine.n.01 +marten.n.01 mammal.n.01 +false_vampire.n.01 placental.n.01 +livestock.n.01 placental.n.01 +boxer.n.04 canine.n.02 +field_spaniel.n.01 sporting_dog.n.01 +redbone.n.01 carnivore.n.01 +lerot.n.01 lerot.n.01 +java_man.n.01 java_man.n.01 +bedlington_terrier.n.01 carnivore.n.01 +pole_horse.n.01 ungulate.n.01 +curly-coated_retriever.n.01 hunting_dog.n.01 +banded_palm_civet.n.01 placental.n.01 +rodent.n.01 rodent.n.01 +exmoor.n.02 exmoor.n.02 +woodland_caribou.n.01 placental.n.01 +roan.n.02 horse.n.01 +american_red_squirrel.n.01 placental.n.01 +mara.n.02 mammal.n.01 +desmodus_rotundus.n.01 carnivorous_bat.n.01 +stepper.n.03 ungulate.n.01 +trotting_horse.n.01 equine.n.01 +uakari.n.01 primate.n.02 +pteropus_hypomelanus.n.01 mammal.n.01 +ewe.n.03 mammal.n.01 +meerkat.n.01 viverrine.n.01 +bernese_mountain_dog.n.01 working_dog.n.01 +seizure-alert_dog.n.01 dog.n.01 +przewalski's_horse.n.01 ungulate.n.01 +sea_lion.n.01 aquatic_mammal.n.01 +black_rhinoceros.n.01 black_rhinoceros.n.01 +tiger_cat.n.01 placental.n.01 +lechwe.n.01 antelope.n.01 +onager.n.02 equine.n.01 +griffon.n.03 griffon.n.03 +common_zebra.n.01 common_zebra.n.01 +ayrshire.n.01 mammal.n.01 +bucking_bronco.n.01 odd-toed_ungulate.n.01 +ewe.n.03 sheep.n.01 +keeshond.n.01 spitz.n.01 +hind.n.02 ungulate.n.01 +narwhal.n.01 narwhal.n.01 +cavalry_horse.n.01 placental.n.01 +harbor_porpoise.n.01 dolphin.n.02 +forest_goat.n.01 even-toed_ungulate.n.01 +banded_palm_civet.n.01 carnivore.n.01 +bunny.n.02 rabbit.n.01 +pouched_mole.n.01 metatherian.n.01 +grampus.n.02 whale.n.02 +anoa.n.01 placental.n.01 +madagascar_cat.n.01 mammal.n.01 +crab-eating_opossum.n.01 marsupial.n.01 +eskimo_dog.n.01 placental.n.01 +serval.n.01 wildcat.n.03 +pollard.n.02 mammal.n.01 +norfolk_terrier.n.01 dog.n.01 +sable_antelope.n.01 ruminant.n.01 +vaquita.n.01 porpoise.n.01 +quagga.n.01 quagga.n.01 +langur.n.01 monkey.n.01 +dark_horse.n.02 odd-toed_ungulate.n.01 +brush-tailed_phalanger.n.01 mammal.n.01 +arabian_camel.n.01 camel.n.01 +nyala.n.02 even-toed_ungulate.n.01 +white_wolf.n.01 mammal.n.01 +saiga.n.01 even-toed_ungulate.n.01 +sei_whale.n.01 baleen_whale.n.01 +jack.n.12 placental.n.01 +sassaby.n.01 ruminant.n.01 +field_mouse.n.02 placental.n.01 +mule_deer.n.01 mammal.n.01 +elk.n.01 ruminant.n.01 +packhorse.n.01 packhorse.n.01 +welsh_terrier.n.01 canine.n.02 +eastern_chimpanzee.n.01 anthropoid_ape.n.01 +bovid.n.01 mammal.n.01 +lapin.n.02 lagomorph.n.01 +palomino.n.01 horse.n.01 +prosimian.n.01 placental.n.01 +elephant.n.01 elephant.n.01 +short-tailed_shrew.n.01 short-tailed_shrew.n.01 +domestic_ass.n.01 equine.n.01 +mare.n.01 mare.n.01 +bongo.n.02 antelope.n.01 +eskimo_dog.n.01 eskimo_dog.n.01 +greater_kudu.n.01 mammal.n.01 +macrotus.n.01 carnivorous_bat.n.01 +odd-toed_ungulate.n.01 odd-toed_ungulate.n.01 +vizsla.n.01 placental.n.01 +lerot.n.01 placental.n.01 +harbor_seal.n.01 harbor_seal.n.01 +pole_horse.n.01 equine.n.01 +black-tailed_deer.n.01 even-toed_ungulate.n.01 +horseshoe_bat.n.02 leafnose_bat.n.01 +mastiff.n.01 mammal.n.01 +mouse-eared_bat.n.01 bat.n.01 +pademelon.n.01 marsupial.n.01 +indian_buffalo.n.01 mammal.n.01 +pygmy_chimpanzee.n.01 placental.n.01 +coydog.n.01 canine.n.02 +madagascar_cat.n.01 placental.n.01 +new_world_beaver.n.01 mammal.n.01 +charger.n.01 warhorse.n.03 +leveret.n.01 hare.n.01 +deer.n.01 ruminant.n.01 +european_hare.n.01 hare.n.01 +pacer.n.02 odd-toed_ungulate.n.01 +primate.n.02 primate.n.02 +jackass_bat.n.01 mammal.n.01 +zoril.n.01 muishond.n.01 +irish_setter.n.01 irish_setter.n.01 +hog-nosed_skunk.n.01 hog-nosed_skunk.n.01 +mouse-eared_bat.n.01 mouse-eared_bat.n.01 +broodmare.n.01 odd-toed_ungulate.n.01 +cow.n.01 even-toed_ungulate.n.01 +ox.n.01 ox.n.01 +coach_horse.n.01 workhorse.n.02 +common_wallaby.n.01 common_wallaby.n.01 +tree_wallaby.n.01 tree_wallaby.n.01 +wirehair.n.01 wirehair.n.01 +pygmy_mouse.n.01 wood_mouse.n.01 +sausage_dog.n.01 mammal.n.01 +jaguar.n.01 feline.n.01 +female_mammal.n.01 mammal.n.01 +harpy.n.03 mammal.n.01 +longhorn.n.01 ruminant.n.01 +bearded_seal.n.01 earless_seal.n.01 +friesian.n.01 friesian.n.01 +wild_ass.n.01 equine.n.01 +talapoin.n.01 guenon.n.01 +brood_bitch.n.01 canine.n.02 +stallion.n.01 placental.n.01 +masked_shrew.n.01 shrew.n.02 +homo_soloensis.n.01 homo_soloensis.n.01 +english_toy_spaniel.n.01 canine.n.02 +sir_barton.n.01 horse.n.01 +harbor_seal.n.01 earless_seal.n.01 +springer.n.02 bovid.n.01 +cheetah.n.01 carnivore.n.01 +australian_sea_lion.n.01 aquatic_mammal.n.01 +chihuahua.n.03 canine.n.02 +columbian_mammoth.n.01 elephant.n.01 +harness_horse.n.01 placental.n.01 +post_horse.n.01 horse.n.01 +hispid_pocket_mouse.n.01 placental.n.01 +giant_panda.n.01 giant_panda.n.01 +genet.n.03 genet.n.03 +american_bison.n.01 bison.n.01 +smiledon_californicus.n.01 carnivore.n.01 +musk_kangaroo.n.01 marsupial.n.01 +kerry_blue_terrier.n.01 carnivore.n.01 +red_bat.n.01 vespertilian_bat.n.01 +african_elephant.n.01 elephant.n.01 +musk_kangaroo.n.01 metatherian.n.01 +round-tailed_muskrat.n.01 placental.n.01 +indri.n.01 placental.n.01 +draft_horse.n.01 draft_horse.n.01 +sivapithecus.n.01 sivapithecus.n.01 +gerenuk.n.01 placental.n.01 +hereford.n.01 bovid.n.01 +dun.n.01 placental.n.01 +smooth-haired_fox_terrier.n.01 canine.n.02 +warhorse.n.03 horse.n.01 +new_world_monkey.n.01 mammal.n.01 +takin.n.01 ruminant.n.01 +tiglon.n.01 placental.n.01 +starnose_mole.n.01 placental.n.01 +wether.n.01 placental.n.01 +platypus.n.01 monotreme.n.01 +bearded_seal.n.01 aquatic_mammal.n.01 +angora.n.03 placental.n.01 +feist.n.01 dog.n.01 +jaculus_jaculus.n.01 jaculus_jaculus.n.01 +mangabey.n.01 primate.n.02 +charger.n.01 odd-toed_ungulate.n.01 +wolf.n.01 carnivore.n.01 +puku.n.01 placental.n.01 +cocker_spaniel.n.01 mammal.n.01 +coypu.n.01 rodent.n.01 +norfolk_terrier.n.01 placental.n.01 +tibetan_terrier.n.01 placental.n.01 +harbor_porpoise.n.01 porpoise.n.01 +house_mouse.n.01 placental.n.01 +prairie_vole.n.01 wood_rat.n.01 +nude_mouse.n.01 rodent.n.01 +hooded_skunk.n.01 carnivore.n.01 +baronduki.n.01 baronduki.n.01 +border_collie.n.01 border_collie.n.01 +saber-toothed_tiger.n.01 feline.n.01 +lincoln.n.03 domestic_sheep.n.01 +raccoon_dog.n.01 raccoon_dog.n.01 +remount.n.01 placental.n.01 +pole_horse.n.01 trotting_horse.n.01 +meerkat.n.01 meerkat.n.01 +longwool.n.01 domestic_sheep.n.01 +kit_fox.n.02 placental.n.01 +italian_greyhound.n.01 hound.n.01 +jaguarundi.n.01 carnivore.n.01 +american_mink.n.01 placental.n.01 +arctic_ground_squirrel.n.01 squirrel.n.01 +schnauzer.n.01 canine.n.02 +aberdeen_angus.n.01 even-toed_ungulate.n.01 +cheetah.n.01 cheetah.n.01 +secretariat.n.02 secretariat.n.02 +hack.n.08 hack.n.08 +indian_elephant.n.01 pachyderm.n.01 +count_fleet.n.01 equine.n.01 +weasel.n.02 musteline_mammal.n.01 +abrocome.n.01 rodent.n.01 +chihuahua.n.03 mammal.n.01 +jaculus_jaculus.n.01 rodent.n.01 +pteropus_capestratus.n.01 bat.n.01 +fissiped_mammal.n.01 mammal.n.01 +irish_setter.n.01 placental.n.01 +timber_wolf.n.01 wolf.n.01 +wheel_horse.n.01 mammal.n.01 +eurasian_badger.n.01 carnivore.n.01 +scottish_deerhound.n.01 mammal.n.01 +old_english_sheepdog.n.01 working_dog.n.01 +little_chief_hare.n.01 lagomorph.n.01 +queen.n.09 fossorial_mammal.n.01 +wether.n.01 even-toed_ungulate.n.01 +griffon.n.03 sporting_dog.n.01 +phenacomys.n.01 vole.n.01 +gee-gee.n.01 odd-toed_ungulate.n.01 +blacktail_prairie_dog.n.01 mammal.n.01 +cocker_spaniel.n.01 hunting_dog.n.01 +stoat.n.01 placental.n.01 +affirmed.n.01 racehorse.n.01 +gordon_setter.n.01 mammal.n.01 +blenheim_spaniel.n.01 blenheim_spaniel.n.01 +bronco.n.01 placental.n.01 +prairie_dog.n.01 prairie_dog.n.01 +eastern_cottontail.n.01 placental.n.01 +friesian.n.01 mammal.n.01 +ayrshire.n.01 ayrshire.n.01 +slender-tailed_meerkat.n.01 mammal.n.01 +hominid.n.01 mammal.n.01 +soft-coated_wheaten_terrier.n.01 canine.n.02 +bonnet_macaque.n.01 macaque.n.01 +ermine.n.02 placental.n.01 +little_brown_bat.n.01 mammal.n.01 +bloodhound.n.01 carnivore.n.01 +hog_badger.n.01 placental.n.01 +chigetai.n.01 onager.n.02 +milking_shorthorn.n.01 cattle.n.01 +pointer.n.04 canine.n.02 +sei_whale.n.01 mammal.n.01 +assault.n.03 racehorse.n.01 +large_civet.n.01 placental.n.01 +homo_soloensis.n.01 mammal.n.01 +old_world_buffalo.n.01 bovid.n.01 +roebuck.n.01 even-toed_ungulate.n.01 +siamang.n.01 placental.n.01 +borzoi.n.01 placental.n.01 +toy_manchester.n.01 placental.n.01 +entellus.n.01 placental.n.01 +large_poodle.n.01 large_poodle.n.01 +swamp_rabbit.n.02 rabbit.n.01 +kudu.n.01 ungulate.n.01 +bird_dog.n.01 mammal.n.01 +bandicoot_rat.n.01 rat.n.01 +courser.n.03 canine.n.02 +reynard.n.01 fox.n.01 +retriever.n.01 hunting_dog.n.01 +cotswold.n.01 mammal.n.01 +egyptian_cat.n.01 placental.n.01 +waterbuck.n.01 ungulate.n.01 +common_zebra.n.01 placental.n.01 +elk.n.01 ungulate.n.01 +kitty.n.04 placental.n.01 +imperial_mammoth.n.01 proboscidean.n.01 +civet.n.01 placental.n.01 +addax.n.01 addax.n.01 +american_shrew_mole.n.01 american_shrew_mole.n.01 +golden_retriever.n.01 sporting_dog.n.01 +doberman.n.01 pinscher.n.01 +common_lynx.n.01 cat.n.01 +ram.n.05 ruminant.n.01 +razorback.n.01 ungulate.n.01 +foxhound.n.01 dog.n.01 +baboon.n.01 placental.n.01 +great_ape.n.01 ape.n.01 +redbone.n.01 placental.n.01 +puppy.n.01 canine.n.02 +mandrill.n.01 baboon.n.01 +pricket.n.02 mammal.n.01 +gibbon.n.02 placental.n.01 +kelpie.n.02 canine.n.02 +manchester_terrier.n.01 rat_terrier.n.01 +pipistrelle.n.01 mammal.n.01 +brahman.n.04 bovid.n.01 +sable.n.05 sable.n.05 +pacer.n.01 equine.n.01 +eurasian_otter.n.01 mammal.n.01 +lagomorph.n.01 placental.n.01 +bullterrier.n.01 canine.n.02 +coonhound.n.01 placental.n.01 +lechwe.n.01 mammal.n.01 +brocket.n.01 ruminant.n.01 +foxhound.n.01 carnivore.n.01 +alaska_fur_seal.n.01 alaska_fur_seal.n.01 +eland.n.01 even-toed_ungulate.n.01 +grizzly.n.01 bear.n.01 +feline.n.01 placental.n.01 +hoary_marmot.n.01 marmot.n.01 +alpaca.n.03 even-toed_ungulate.n.01 +talapoin.n.01 primate.n.02 +sussex_spaniel.n.01 dog.n.01 +longwool.n.01 even-toed_ungulate.n.01 +white-footed_mouse.n.01 white-footed_mouse.n.01 +groenendael.n.01 belgian_sheepdog.n.01 +chickeree.n.01 squirrel.n.01 +soft-coated_wheaten_terrier.n.01 dog.n.01 +jennet.n.01 mammal.n.01 +lippizan.n.01 mammal.n.01 +jaguar.n.01 jaguar.n.01 +cattalo.n.01 ruminant.n.01 +large_poodle.n.01 canine.n.02 +serotine.n.01 carnivorous_bat.n.01 +mountain_nyala.n.01 antelope.n.01 +bullock.n.01 bull.n.01 +spotted_lynx.n.01 placental.n.01 +common_lynx.n.01 common_lynx.n.01 +hare.n.01 hare.n.01 +water_dog.n.02 water_dog.n.02 +arctic_ground_squirrel.n.01 rodent.n.01 +mountain_sheep.n.01 ungulate.n.01 +false_vampire.n.01 carnivorous_bat.n.01 +gordon_setter.n.01 setter.n.02 +staffordshire_bullterrier.n.01 terrier.n.01 +dusky-footed_woodrat.n.01 dusky-footed_woodrat.n.01 +flying_mouse.n.01 metatherian.n.01 +central_chimpanzee.n.01 central_chimpanzee.n.01 +hart.n.03 deer.n.01 +post_horse.n.01 post_horse.n.01 +marten.n.01 marten.n.01 +affirmed.n.01 horse.n.01 +stag.n.02 placental.n.01 +red_fox.n.03 red_fox.n.03 +black-tailed_deer.n.01 ruminant.n.01 +tennessee_walker.n.01 mammal.n.01 +dik-dik.n.01 even-toed_ungulate.n.01 +hippopotamus.n.01 even-toed_ungulate.n.01 +mountain_beaver.n.01 placental.n.01 +porker.n.01 swine.n.01 +yorkshire_terrier.n.01 hunting_dog.n.01 +argali.n.01 wild_sheep.n.01 +antelope.n.01 ruminant.n.01 +sow.n.01 placental.n.01 +sennenhunde.n.01 canine.n.02 +pacer.n.01 ungulate.n.01 +virginia_deer.n.01 virginia_deer.n.01 +cavalry_horse.n.01 cavalry_horse.n.01 +impala.n.01 impala.n.01 +rogue_elephant.n.01 pachyderm.n.01 +mastodon.n.01 mastodon.n.01 +homo_habilis.n.01 primate.n.02 +spaniel.n.01 carnivore.n.01 +dryopithecine.n.01 mammal.n.01 +wirehair.n.01 dog.n.01 +pole_horse.n.02 horse.n.01 +water_buffalo.n.01 placental.n.01 +pony.n.02 odd-toed_ungulate.n.01 +true_marmoset.n.01 marmoset.n.01 +beef.n.01 even-toed_ungulate.n.01 +serow.n.01 ruminant.n.01 +nyala.n.02 ruminant.n.01 +new_world_beaver.n.01 placental.n.01 +billy.n.02 ungulate.n.01 +cayuse.n.01 horse.n.01 +cotton_mouse.n.01 cotton_mouse.n.01 +saki.n.03 saki.n.03 +royal.n.02 royal.n.02 +dormouse.n.01 placental.n.01 +peba.n.01 mammal.n.01 +hooded_seal.n.01 pinniped_mammal.n.01 +charger.n.01 horse.n.01 +common_zebra.n.01 equine.n.01 +plains_pocket_gopher.n.01 mammal.n.01 +potoroo.n.01 rat_kangaroo.n.01 +banteng.n.01 ox.n.02 +plains_pocket_mouse.n.01 pocket_mouse.n.01 +rorqual.n.01 aquatic_mammal.n.01 +harbor_seal.n.01 aquatic_mammal.n.01 +ferret.n.02 musteline_mammal.n.01 +australopithecus_robustus.n.01 hominid.n.01 +river_dolphin.n.01 whale.n.02 +patas.n.01 monkey.n.01 +orange_bat.n.01 placental.n.01 +ox.n.02 bovid.n.01 +harvest_mouse.n.02 placental.n.01 +bonnet_macaque.n.01 mammal.n.01 +slender_loris.n.01 slender_loris.n.01 +dinoceras.n.01 dinoceras.n.01 +buckskin.n.01 mammal.n.01 +siberian_husky.n.01 sled_dog.n.01 +water_vole.n.01 wood_rat.n.01 +killer_whale.n.01 aquatic_mammal.n.01 +wolf_pup.n.01 carnivore.n.01 +lechwe.n.01 lechwe.n.01 +collie.n.01 carnivore.n.01 +briard.n.01 briard.n.01 +plow_horse.n.01 ungulate.n.01 +jersey.n.05 bovine.n.01 +pilot_whale.n.01 mammal.n.01 +exmoor.n.01 ruminant.n.01 +seeing_eye_dog.n.01 canine.n.02 +devon.n.02 even-toed_ungulate.n.01 +bay.n.07 horse.n.01 +crab-eating_opossum.n.01 crab-eating_opossum.n.01 +sussex_spaniel.n.01 carnivore.n.01 +ice_bear.n.01 ice_bear.n.01 +llama.n.01 ungulate.n.01 +silky_anteater.n.01 edentate.n.01 +siamese_cat.n.01 placental.n.01 +southeastern_pocket_gopher.n.01 rat.n.01 +kaffir_cat.n.01 cat.n.01 +saddle_horse.n.01 odd-toed_ungulate.n.01 +grey_lemming.n.01 lemming.n.01 +tree_squirrel.n.01 placental.n.01 +schnauzer.n.01 placental.n.01 +belgian_sheepdog.n.01 dog.n.01 +baboon.n.01 primate.n.02 +canada_lynx.n.01 canada_lynx.n.01 +roebuck.n.01 placental.n.01 +cob.n.02 equine.n.01 +harrier.n.02 canine.n.02 +entlebucher.n.01 carnivore.n.01 +bloodhound.n.01 bloodhound.n.01 +kit_fox.n.02 carnivore.n.01 +rambouillet.n.01 ruminant.n.01 +alpaca.n.03 alpaca.n.03 +wisent.n.01 mammal.n.01 +white_whale.n.01 aquatic_mammal.n.01 +sloth.n.02 edentate.n.01 +sussex_spaniel.n.01 placental.n.01 +american_water_spaniel.n.01 placental.n.01 +leopardess.n.01 leopard.n.02 +tailless_tenrec.n.01 mammal.n.01 +atlantic_bottlenose_dolphin.n.01 dolphin.n.02 +sloth.n.02 mammal.n.01 +tamandua.n.01 mammal.n.01 +vixen.n.02 mammal.n.01 +longtail_weasel.n.01 weasel.n.02 +hooded_seal.n.01 seal.n.09 +fruit_bat.n.01 bat.n.01 +springer_spaniel.n.01 dog.n.01 +sable_antelope.n.01 placental.n.01 +musteline_mammal.n.01 musteline_mammal.n.01 +water_buffalo.n.01 water_buffalo.n.01 +spider_monkey.n.01 monkey.n.01 +carthorse.n.01 odd-toed_ungulate.n.01 +australopithecine.n.01 mammal.n.01 +skunk.n.04 mammal.n.01 +brush-tailed_porcupine.n.01 placental.n.01 +schnauzer.n.01 carnivore.n.01 +fallow_deer.n.01 even-toed_ungulate.n.01 +siamese_cat.n.01 feline.n.01 +cheviot.n.01 bovid.n.01 +hack.n.07 equine.n.01 +white_rhinoceros.n.01 placental.n.01 +jack.n.12 jack.n.12 +mountain_sheep.n.01 mountain_sheep.n.01 +crowbait.n.01 saddle_horse.n.01 +bactrian_camel.n.01 even-toed_ungulate.n.01 +boxer.n.04 dog.n.01 +milking_shorthorn.n.01 milking_shorthorn.n.01 +rhodesian_ridgeback.n.01 hunting_dog.n.01 +brown_hyena.n.01 carnivore.n.01 +cynocephalus_variegatus.n.01 flying_lemur.n.01 +indian_buffalo.n.01 water_buffalo.n.01 +galloway.n.02 ungulate.n.01 +bengal_tiger.n.01 tiger.n.02 +welsh_springer_spaniel.n.01 carnivore.n.01 +packhorse.n.01 equine.n.01 +remount.n.01 equine.n.01 +valley_pocket_gopher.n.01 rat.n.01 +mountain_beaver.n.01 mountain_beaver.n.01 +fur_seal.n.01 pinniped_mammal.n.01 +sealyham_terrier.n.01 welsh_terrier.n.01 +wolf.n.01 placental.n.01 +schipperke.n.01 watchdog.n.02 +mesohippus.n.01 placental.n.01 +tibetan_terrier.n.01 carnivore.n.01 +domestic_cat.n.01 cat.n.01 +mammoth.n.01 pachyderm.n.01 +syrian_bear.n.01 mammal.n.01 +tarsius_glis.n.01 primate.n.02 +blacktail_prairie_dog.n.01 rodent.n.01 +seeing_eye_dog.n.01 mammal.n.01 +dik-dik.n.01 ungulate.n.01 +little_chief_hare.n.01 mammal.n.01 +spaniel.n.01 canine.n.02 +okapi.n.01 ungulate.n.01 +moke.n.01 equine.n.01 +woolly_rhinoceros.n.01 odd-toed_ungulate.n.01 +pollard.n.02 placental.n.01 +angora.n.04 carnivore.n.01 +rock_hyrax.n.01 mammal.n.01 +cougar.n.01 cat.n.01 +common_raccoon.n.01 procyonid.n.01 +pygmy_sperm_whale.n.01 pygmy_sperm_whale.n.01 +even-toed_ungulate.n.01 even-toed_ungulate.n.01 +durham.n.02 even-toed_ungulate.n.01 +buckskin.n.01 buckskin.n.01 +humpback.n.03 humpback.n.03 +sea_cow.n.01 aquatic_mammal.n.01 +mountain_sheep.n.01 placental.n.01 +belgian_hare.n.01 lagomorph.n.01 +ruminant.n.01 ungulate.n.01 +river_otter.n.01 otter.n.02 +abrocome.n.01 mammal.n.01 +yak.n.02 yak.n.02 +shire.n.02 workhorse.n.02 +kuvasz.n.01 carnivore.n.01 +bitch.n.04 carnivore.n.01 +yorkshire_terrier.n.01 placental.n.01 +blue_whale.n.01 cetacean.n.01 +pinche.n.01 placental.n.01 +maltese_dog.n.01 carnivore.n.01 +hoary_marmot.n.01 mammal.n.01 +mole.n.06 mammal.n.01 +white_whale.n.01 cetacean.n.01 +yellowbelly_marmot.n.01 rodent.n.01 +jaguarundi.n.01 wildcat.n.03 +saber-toothed_tiger.n.01 mammal.n.01 +pony.n.05 pony.n.05 +housedog.n.01 housedog.n.01 +puppy.n.01 placental.n.01 +chow.n.03 spitz.n.01 +american_foxhound.n.01 hound.n.01 +alaska_fur_seal.n.01 pinniped_mammal.n.01 +brahman.n.04 mammal.n.01 +old_english_sheepdog.n.01 mammal.n.01 +count_fleet.n.01 odd-toed_ungulate.n.01 +slender-tailed_meerkat.n.01 placental.n.01 +pachyderm.n.01 mammal.n.01 +manatee.n.01 mammal.n.01 +miniature_schnauzer.n.01 miniature_schnauzer.n.01 +tiglon.n.01 big_cat.n.01 +wolf.n.01 canine.n.02 +english_setter.n.01 mammal.n.01 +homo_soloensis.n.01 homo.n.02 +aurochs.n.02 even-toed_ungulate.n.01 +nude_mouse.n.01 mammal.n.01 +whitetail_prairie_dog.n.01 mammal.n.01 +old_world_porcupine.n.01 mammal.n.01 +northern_flying_squirrel.n.01 american_flying_squirrel.n.01 +ass.n.03 odd-toed_ungulate.n.01 +guadalupe_fur_seal.n.01 mammal.n.01 +cow.n.01 placental.n.01 +porpoise.n.01 mammal.n.01 +suricate.n.01 viverrine.n.01 +dasyure.n.01 dasyure.n.01 +ground_sloth.n.01 megatherian.n.01 +oryx.n.01 ungulate.n.01 +wood_rabbit.n.01 lagomorph.n.01 +american_water_shrew.n.01 american_water_shrew.n.01 +puppy.n.01 carnivore.n.01 +affirmed.n.01 mammal.n.01 +narwhal.n.01 aquatic_mammal.n.01 +kudu.n.01 placental.n.01 +mantled_ground_squirrel.n.01 rodent.n.01 +dinoceras.n.01 placental.n.01 +old_world_least_weasel.n.01 musteline_mammal.n.01 +dolphin.n.02 whale.n.02 +agouti.n.01 placental.n.01 +elephant_seal.n.01 seal.n.09 +welsh_pony.n.01 ungulate.n.01 +ram.n.05 placental.n.01 +hound.n.01 placental.n.01 +indian_mongoose.n.01 mammal.n.01 +asian_wild_ox.n.01 ruminant.n.01 +milking_shorthorn.n.01 bovid.n.01 +lakeland_terrier.n.01 hunting_dog.n.01 +little_brown_bat.n.01 little_brown_bat.n.01 +harness_horse.n.01 harness_horse.n.01 +gazelle.n.01 bovid.n.01 +fisher.n.02 musteline_mammal.n.01 +new_world_tapir.n.01 new_world_tapir.n.01 +golden_hamster.n.01 mammal.n.01 +carabao.n.01 old_world_buffalo.n.01 +housedog.n.01 dog.n.01 +mule.n.01 mammal.n.01 +white-footed_mouse.n.01 mammal.n.01 +stalking-horse.n.04 placental.n.01 +rabbit-eared_bandicoot.n.01 bandicoot.n.01 +mountain_nyala.n.01 placental.n.01 +eurasian_badger.n.01 eurasian_badger.n.01 +humpback.n.03 baleen_whale.n.01 +hog.n.03 ungulate.n.01 +leporid.n.01 mammal.n.01 +lakeland_terrier.n.01 terrier.n.01 +deer_mouse.n.01 placental.n.01 +pole_horse.n.02 pole_horse.n.02 +entellus.n.01 langur.n.01 +mouser.n.01 cat.n.01 +aurochs.n.02 ox.n.02 +alaska_fur_seal.n.01 seal.n.09 +draft_horse.n.01 ungulate.n.01 +crab-eating_dog.n.01 mammal.n.01 +tusker.n.01 mammal.n.01 +sporting_dog.n.01 dog.n.01 +american_flying_squirrel.n.01 american_flying_squirrel.n.01 +kit_fox.n.01 placental.n.01 +griffon.n.03 dog.n.01 +pere_david's_deer.n.01 even-toed_ungulate.n.01 +fur_seal.n.02 eared_seal.n.01 +american_staffordshire_terrier.n.01 american_staffordshire_terrier.n.01 +tiger.n.02 carnivore.n.01 +earless_seal.n.01 earless_seal.n.01 +coonhound.n.01 carnivore.n.01 +jaguarundi.n.01 jaguarundi.n.01 +green_monkey.n.01 guenon.n.01 +fox.n.01 mammal.n.01 +hamster.n.01 placental.n.01 +prancer.n.01 saddle_horse.n.01 +impala.n.01 bovid.n.01 +english_springer.n.01 hunting_dog.n.01 +saluki.n.01 mammal.n.01 +mongoose.n.01 carnivore.n.01 +tarsius_glis.n.01 placental.n.01 +homo_sapiens_sapiens.n.01 primate.n.02 +terrier.n.01 dog.n.01 +guereza.n.01 colobus.n.01 +bear_cub.n.01 placental.n.01 +true_marmoset.n.01 new_world_monkey.n.01 +lion.n.01 lion.n.01 +alley_cat.n.01 alley_cat.n.01 +new_world_porcupine.n.01 rodent.n.01 +sorrel.n.05 sorrel.n.05 +border_terrier.n.01 dog.n.01 +tatouay.n.01 tatouay.n.01 +feist.n.01 feist.n.01 +bellwether.n.02 placental.n.01 +palfrey.n.01 horse.n.01 +lapdog.n.01 dog.n.01 +big-eared_bat.n.01 placental.n.01 +pacific_bottlenose_dolphin.n.01 mammal.n.01 +aquatic_mammal.n.01 aquatic_mammal.n.01 +leopard_cat.n.01 cat.n.01 +red_poll.n.01 red_poll.n.01 +corgi.n.01 placental.n.01 +bonnet_macaque.n.01 bonnet_macaque.n.01 +capuchin.n.02 new_world_monkey.n.01 +native_cat.n.01 marsupial.n.01 +scottish_deerhound.n.01 dog.n.01 +feist.n.01 canine.n.02 +sperm_whale.n.01 sperm_whale.n.01 +kitty.n.04 domestic_cat.n.01 +western_chimpanzee.n.01 placental.n.01 +bottle-nosed_whale.n.01 placental.n.01 +false_saber-toothed_tiger.n.01 carnivore.n.01 +elk.n.01 even-toed_ungulate.n.01 +muntjac.n.01 deer.n.01 +male_horse.n.01 ungulate.n.01 +markhor.n.01 goat.n.01 +vespertilian_bat.n.01 bat.n.01 +cro-magnon.n.01 mammal.n.01 +talapoin.n.01 placental.n.01 +wood_rat.n.01 mammal.n.01 +seizure-alert_dog.n.01 placental.n.01 +longwool.n.01 ruminant.n.01 +polo_pony.n.01 ungulate.n.01 +wether.n.01 ungulate.n.01 +pinniped_mammal.n.01 pinniped_mammal.n.01 +deer.n.01 deer.n.01 +mandrill.n.01 monkey.n.01 +corgi.n.01 carnivore.n.01 +woolly_indris.n.01 mammal.n.01 +friesian.n.01 placental.n.01 +seal.n.09 pinniped_mammal.n.01 +pekinese.n.01 carnivore.n.01 +springbok.n.01 antelope.n.01 +eurasian_hamster.n.01 mammal.n.01 +mouse.n.01 placental.n.01 +monkey.n.01 mammal.n.01 +meadow_vole.n.01 rodent.n.01 +lhasa.n.02 dog.n.01 +italian_greyhound.n.01 dog.n.01 +steenbok.n.01 mammal.n.01 +war_admiral.n.01 mammal.n.01 +starnose_mole.n.01 insectivore.n.01 +corgi.n.01 dog.n.01 +pekinese.n.01 mammal.n.01 +lagomorph.n.01 lagomorph.n.01 +coonhound.n.01 coonhound.n.01 +kangaroo_mouse.n.02 kangaroo_mouse.n.02 +farm_horse.n.01 mammal.n.01 +freetail.n.01 mammal.n.01 +longwool.n.01 ungulate.n.01 +sei_whale.n.01 sei_whale.n.01 +sassaby.n.01 mammal.n.01 +kit_fox.n.01 mammal.n.01 +fur_seal.n.02 mammal.n.01 +musk_ox.n.01 bovid.n.01 +american_mastodon.n.01 mastodon.n.01 +western_lowland_gorilla.n.01 placental.n.01 +mustang.n.01 pony.n.01 +rat_kangaroo.n.01 marsupial.n.01 +great_ape.n.01 placental.n.01 +woolly_mammoth.n.01 elephant.n.01 +stallion.n.01 ungulate.n.01 +steeplechaser.n.01 horse.n.01 +boston_bull.n.01 hunting_dog.n.01 +woolly_mammoth.n.01 proboscidean.n.01 +field_spaniel.n.01 mammal.n.01 +potto.n.02 primate.n.02 +striped_hyena.n.01 hyena.n.01 +manchester_terrier.n.01 carnivore.n.01 +uakari.n.01 placental.n.01 +chamois.n.02 even-toed_ungulate.n.01 +field_spaniel.n.01 dog.n.01 +american_water_spaniel.n.01 mammal.n.01 +chamois.n.02 chamois.n.02 +doberman.n.01 dog.n.01 +appenzeller.n.01 placental.n.01 +steed.n.01 warhorse.n.03 +manchester_terrier.n.01 terrier.n.01 +ferret.n.02 ferret.n.02 +wild_sheep.n.01 placental.n.01 +secretariat.n.02 mammal.n.01 +apar.n.01 apar.n.01 +three-toed_sloth.n.01 three-toed_sloth.n.01 +snake_muishond.n.01 snake_muishond.n.01 +springer_spaniel.n.01 carnivore.n.01 +clumber.n.01 sporting_dog.n.01 +sand_rat.n.02 rodent.n.01 +flying_phalanger.n.01 flying_phalanger.n.01 +afghan_hound.n.01 hound.n.01 +palomino.n.01 mammal.n.01 +cattle.n.01 bovid.n.01 +spouter.n.03 mammal.n.01 +patas.n.01 patas.n.01 +mink.n.03 musteline_mammal.n.01 +central_chimpanzee.n.01 ape.n.01 +merino.n.01 even-toed_ungulate.n.01 +war_admiral.n.01 equine.n.01 +macrotus.n.01 leafnose_bat.n.01 +silky_tamarin.n.01 marmoset.n.01 +shetland_pony.n.01 horse.n.01 +impala.n.01 ruminant.n.01 +anthropoid.n.02 placental.n.01 +meerkat.n.01 carnivore.n.01 +dik-dik.n.01 ruminant.n.01 +red_deer.n.01 ruminant.n.01 +norfolk_terrier.n.01 mammal.n.01 +marco_polo_sheep.n.01 mammal.n.01 +tom.n.02 feline.n.01 +green_monkey.n.01 placental.n.01 +great_pyrenees.n.01 great_pyrenees.n.01 +alpaca.n.03 ungulate.n.01 +blackbuck.n.01 antelope.n.01 +rhesus.n.01 monkey.n.01 +elephant_seal.n.01 earless_seal.n.01 +gemsbok.n.01 oryx.n.01 +sewer_rat.n.01 mammal.n.01 +sand_cat.n.01 wildcat.n.03 +hazel_mouse.n.01 mammal.n.01 +stallion.n.01 male_horse.n.01 +ibex.n.01 even-toed_ungulate.n.01 +red_deer.n.01 even-toed_ungulate.n.01 +meadow_jumping_mouse.n.01 rodent.n.01 +pipistrelle.n.01 bat.n.01 +jungle_cat.n.01 placental.n.01 +neandertal_man.n.01 homo.n.02 +brittany_spaniel.n.01 spaniel.n.01 +lion_cub.n.01 mammal.n.01 +field_spaniel.n.01 placental.n.01 +round-tailed_muskrat.n.01 mammal.n.01 +palm_cat.n.01 carnivore.n.01 +lhasa.n.02 mammal.n.01 +italian_greyhound.n.01 mammal.n.01 +vampire_bat.n.01 vampire_bat.n.01 +blue_fox.n.01 blue_fox.n.01 +seal.n.09 mammal.n.01 +red-backed_mouse.n.01 mammal.n.01 +stepper.n.03 equine.n.01 +howler_monkey.n.01 primate.n.02 +dairy_cattle.n.01 bovid.n.01 +appenzeller.n.01 canine.n.02 +common_raccoon.n.01 common_raccoon.n.01 +slender-tailed_meerkat.n.01 carnivore.n.01 +masked_shrew.n.01 masked_shrew.n.01 +cat.n.01 cat.n.01 +mouflon.n.01 ungulate.n.01 +tigress.n.01 tigress.n.01 +peking_man.n.01 homo_erectus.n.01 +sewer_rat.n.01 rodent.n.01 +guernsey.n.02 ruminant.n.01 +onager.n.02 ungulate.n.01 +great_ape.n.01 primate.n.02 +howler_monkey.n.01 mammal.n.01 +african_elephant.n.01 placental.n.01 +pocketed_bat.n.01 placental.n.01 +cavalry_horse.n.01 saddle_horse.n.01 +flying_fox.n.01 fruit_bat.n.01 +gazella_subgutturosa.n.01 even-toed_ungulate.n.01 +giant_schnauzer.n.01 carnivore.n.01 +true_marmoset.n.01 true_marmoset.n.01 +eared_seal.n.01 eared_seal.n.01 +dryopithecine.n.01 placental.n.01 +beaver_rat.n.01 rodent.n.01 +hunting_dog.n.01 carnivore.n.01 +blacktail_jackrabbit.n.01 placental.n.01 +draft_horse.n.01 equine.n.01 +kangaroo_mouse.n.01 pocket_rat.n.01 +guide_dog.n.01 working_dog.n.01 +ibizan_hound.n.01 hound.n.01 +griffon.n.02 mammal.n.01 +wire-haired_fox_terrier.n.01 hunting_dog.n.01 +echidna.n.02 monotreme.n.01 +angora.n.04 placental.n.01 +brown_swiss.n.01 ungulate.n.01 +australopithecine.n.01 australopithecine.n.01 +skunk.n.04 skunk.n.04 +gazelle.n.01 gazelle.n.01 +large_poodle.n.01 dog.n.01 +nilgai.n.01 bovid.n.01 +water_vole.n.02 rodent.n.01 +pocketed_bat.n.01 pocketed_bat.n.01 +bottlenose_dolphin.n.01 bottlenose_dolphin.n.01 +carthorse.n.01 workhorse.n.02 +equine.n.01 ungulate.n.01 +bellwether.n.02 bovid.n.01 +argali.n.01 argali.n.01 +fallow_deer.n.01 ruminant.n.01 +new_world_least_weasel.n.01 new_world_least_weasel.n.01 +lion_cub.n.01 placental.n.01 +tibetan_mastiff.n.01 placental.n.01 +eurasian_otter.n.01 carnivore.n.01 +whippet.n.01 dog.n.01 +hooded_skunk.n.01 hooded_skunk.n.01 +tiger_cat.n.02 cat.n.01 +kelpie.n.02 working_dog.n.01 +bellwether.n.02 ruminant.n.01 +domestic_cat.n.01 placental.n.01 +attack_dog.n.01 carnivore.n.01 +rhodesian_ridgeback.n.01 dog.n.01 +hominid.n.01 placental.n.01 +pygmy_sperm_whale.n.01 toothed_whale.n.01 +bellwether.n.02 bellwether.n.02 +fox_terrier.n.01 fox_terrier.n.01 +gnu.n.01 even-toed_ungulate.n.01 +bongo.n.02 ungulate.n.01 +rudapithecus.n.01 dryopithecine.n.01 +western_big-eared_bat.n.01 mammal.n.01 +coondog.n.01 hunting_dog.n.01 +bottlenose_dolphin.n.01 dolphin.n.02 +waterbuck.n.01 waterbuck.n.01 +hartebeest.n.01 ruminant.n.01 +least_shrew.n.01 insectivore.n.01 +harvest_mouse.n.02 mammal.n.01 +vervet.n.01 placental.n.01 +orange_bat.n.01 mammal.n.01 +cattalo.n.01 beef.n.01 +aardwolf.n.01 aardwolf.n.01 +tibetan_terrier.n.01 tibetan_terrier.n.01 +irish_wolfhound.n.01 canine.n.02 +mountain_nyala.n.01 ungulate.n.01 +margay.n.01 margay.n.01 +toy_manchester.n.01 dog.n.01 +lhasa.n.02 lhasa.n.02 +italian_greyhound.n.01 italian_greyhound.n.01 +loir.n.01 rodent.n.01 +groenendael.n.01 working_dog.n.01 +whirlaway.n.01 mammal.n.01 +toy_dog.n.01 carnivore.n.01 +cape_buffalo.n.01 ungulate.n.01 +spitz.n.01 dog.n.01 +manchester_terrier.n.01 mammal.n.01 +retriever.n.01 sporting_dog.n.01 +river_dolphin.n.01 cetacean.n.01 +pied_lemming.n.01 placental.n.01 +border_collie.n.01 working_dog.n.01 +foxhound.n.01 hound.n.01 +keeshond.n.01 dog.n.01 +hampshire.n.02 mammal.n.01 +welsh_springer_spaniel.n.01 springer_spaniel.n.01 +pere_david's_deer.n.01 deer.n.01 +imperial_mammoth.n.01 mammoth.n.01 +papillon.n.01 toy_spaniel.n.01 +rice_rat.n.01 placental.n.01 +australopithecus_robustus.n.01 australopithecine.n.01 +appenzeller.n.01 dog.n.01 +oryx.n.01 mammal.n.01 +mapinguari.n.01 edentate.n.01 +kangaroo_mouse.n.01 placental.n.01 +appenzeller.n.01 mammal.n.01 +addax.n.01 ungulate.n.01 +angwantibo.n.01 lemur.n.01 +welsh_springer_spaniel.n.01 sporting_dog.n.01 +plains_pocket_mouse.n.01 plains_pocket_mouse.n.01 +eastern_chimpanzee.n.01 primate.n.02 +soft-coated_wheaten_terrier.n.01 hunting_dog.n.01 +tasmanian_devil.n.01 dasyurid_marsupial.n.01 +wild_boar.n.01 placental.n.01 +american_red_squirrel.n.01 tree_squirrel.n.01 +heifer.n.01 cattle.n.01 +african_hunting_dog.n.01 canine.n.02 +brocket.n.02 ungulate.n.01 +goat_antelope.n.01 goat_antelope.n.01 +workhorse.n.02 ungulate.n.01 +toothed_whale.n.01 cetacean.n.01 +schipperke.n.01 canine.n.02 +field_mouse.n.02 mouse.n.01 +markhor.n.01 even-toed_ungulate.n.01 +typical_jerboa.n.01 placental.n.01 +silky_anteater.n.01 mammal.n.01 +echidna.n.02 prototherian.n.01 +protohippus.n.01 equine.n.01 +giant_kangaroo.n.01 kangaroo.n.01 +greater_kudu.n.01 bovid.n.01 +sea_lion.n.01 pinniped_mammal.n.01 +goat.n.01 bovid.n.01 +western_big-eared_bat.n.01 vespertilian_bat.n.01 +dairy_cattle.n.01 mammal.n.01 +american_foxhound.n.01 hunting_dog.n.01 +grasshopper_mouse.n.01 vole.n.01 +genet.n.03 mammal.n.01 +eastern_pipistrel.n.01 eastern_pipistrel.n.01 +flickertail.n.01 ground_squirrel.n.02 +heifer.n.01 ruminant.n.01 +bruin.n.01 bear.n.01 +earless_seal.n.01 placental.n.01 +warrigal.n.01 wild_horse.n.01 +pygmy_sperm_whale.n.01 whale.n.02 +hound.n.01 canine.n.02 +european_lemming.n.01 lemming.n.01 +proboscis_monkey.n.01 placental.n.01 +mule_deer.n.01 ungulate.n.01 +bassarisk.n.01 placental.n.01 +tabby.n.02 feline.n.01 +cheviot.n.01 sheep.n.01 +buck.n.05 mammal.n.01 +welsh_springer_spaniel.n.01 spaniel.n.01 +hare_wallaby.n.01 kangaroo.n.01 +cotton_mouse.n.01 wood_mouse.n.01 +river_otter.n.01 river_otter.n.01 +kanchil.n.01 kanchil.n.01 +mara.n.02 placental.n.01 +plains_pocket_gopher.n.01 plains_pocket_gopher.n.01 +long-tailed_porcupine.n.01 long-tailed_porcupine.n.01 +english_foxhound.n.01 foxhound.n.01 +bighorn.n.02 bovid.n.01 +lionet.n.01 feline.n.01 +brown_bear.n.01 brown_bear.n.01 +zebu.n.01 placental.n.01 +bezoar_goat.n.01 even-toed_ungulate.n.01 +dandie_dinmont.n.01 dandie_dinmont.n.01 +rudapithecus.n.01 placental.n.01 +takin.n.01 placental.n.01 +yearling.n.03 yearling.n.03 +pteropus_capestratus.n.01 pteropus_capestratus.n.01 +rice_rat.n.01 rat.n.01 +musk_deer.n.01 ruminant.n.01 +cuscus.n.01 marsupial.n.01 +gelding.n.01 male_horse.n.01 +frosted_bat.n.01 placental.n.01 +asian_wild_ox.n.01 even-toed_ungulate.n.01 +roe_deer.n.01 placental.n.01 +anoa.n.01 even-toed_ungulate.n.01 +watchdog.n.02 carnivore.n.01 +paca.n.01 placental.n.01 +sambar.n.01 even-toed_ungulate.n.01 +retriever.n.01 canine.n.02 +orangutan.n.01 ape.n.01 +american_black_bear.n.01 mammal.n.01 +european_rabbit.n.01 mammal.n.01 +dingo.n.01 canine.n.02 +clumber.n.01 dog.n.01 +chinchilla.n.03 placental.n.01 +aardwolf.n.01 placental.n.01 +stud.n.04 mammal.n.01 +aoudad.n.01 even-toed_ungulate.n.01 +chigetai.n.01 odd-toed_ungulate.n.01 +vizsla.n.01 sporting_dog.n.01 +black-and-tan_coonhound.n.01 hound.n.01 +grey_fox.n.01 mammal.n.01 +atlantic_bottlenose_dolphin.n.01 toothed_whale.n.01 +lion_cub.n.01 lion.n.01 +leonberg.n.01 placental.n.01 +oryx.n.01 ruminant.n.01 +wolf_pup.n.01 wolf.n.01 +ruminant.n.01 even-toed_ungulate.n.01 +small_civet.n.01 carnivore.n.01 +jaculus_jaculus.n.01 jerboa.n.01 +lesser_kudu.n.01 even-toed_ungulate.n.01 +koala.n.01 metatherian.n.01 +cow_pony.n.01 placental.n.01 +columbian_mammoth.n.01 proboscidean.n.01 +gerenuk.n.01 ruminant.n.01 +mink.n.03 mammal.n.01 +packrat.n.02 wood_rat.n.01 +gaur.n.01 ruminant.n.01 +jerboa_kangaroo.n.01 jerboa_kangaroo.n.01 +kit_fox.n.01 kit_fox.n.01 +skye_terrier.n.01 skye_terrier.n.01 +woodland_caribou.n.01 woodland_caribou.n.01 +leopardess.n.01 feline.n.01 +american_mastodon.n.01 mammal.n.01 +watchdog.n.02 placental.n.01 +lerot.n.01 dormouse.n.01 +false_vampire.n.01 bat.n.01 +hack.n.07 mammal.n.01 +brabancon_griffon.n.01 dog.n.01 +airedale.n.01 airedale.n.01 +bedlington_terrier.n.01 terrier.n.01 +toy_dog.n.01 canine.n.02 +common_dolphin.n.01 dolphin.n.02 +seizure-alert_dog.n.01 working_dog.n.01 +argali.n.01 mammal.n.01 +imperial_mammoth.n.01 placental.n.01 +labrador_retriever.n.01 placental.n.01 +liger.n.01 big_cat.n.01 +wild_ass.n.01 odd-toed_ungulate.n.01 +orangutan.n.01 mammal.n.01 +white_whale.n.01 white_whale.n.01 +welsh_pony.n.01 welsh_pony.n.01 +guanaco.n.01 llama.n.01 +arctic_ground_squirrel.n.01 arctic_ground_squirrel.n.01 +giraffe.n.01 ruminant.n.01 +mantled_ground_squirrel.n.01 mammal.n.01 +hack.n.08 ungulate.n.01 +lion.n.01 feline.n.01 +ox.n.02 ungulate.n.01 +bettong.n.01 mammal.n.01 +blackbuck.n.01 mammal.n.01 +slow_loris.n.01 lemur.n.01 +border_terrier.n.01 mammal.n.01 +bronco.n.01 mammal.n.01 +hispid_pocket_mouse.n.01 pocket_rat.n.01 +hare_wallaby.n.01 wallaby.n.01 +doberman.n.01 mammal.n.01 +tiger.n.02 big_cat.n.01 +buckskin.n.01 ungulate.n.01 +peking_man.n.01 hominid.n.01 +big-eared_bat.n.01 big-eared_bat.n.01 +golden_hamster.n.01 golden_hamster.n.01 +wirehair.n.01 terrier.n.01 +brewer's_mole.n.01 mammal.n.01 +okapi.n.01 ruminant.n.01 +silverback.n.01 great_ape.n.01 +kangaroo.n.01 mammal.n.01 +mule_deer.n.01 placental.n.01 +new_world_tapir.n.01 ungulate.n.01 +clumber.n.01 canine.n.02 +indian_elephant.n.01 mammal.n.01 +chamois.n.02 bovid.n.01 +bottlenose_dolphin.n.01 toothed_whale.n.01 +welsh.n.03 ungulate.n.01 +squirrel.n.01 placental.n.01 +zinjanthropus.n.01 mammal.n.01 +alaskan_brown_bear.n.01 brown_bear.n.01 +american_saddle_horse.n.01 odd-toed_ungulate.n.01 +ord_kangaroo_rat.n.01 rat.n.01 +hack.n.06 horse.n.01 +forest_goat.n.01 bovid.n.01 +entlebucher.n.01 entlebucher.n.01 +santa_gertrudis.n.01 ungulate.n.01 +egyptian_cat.n.01 cat.n.01 +barren_ground_caribou.n.01 placental.n.01 +serval.n.01 placental.n.01 +hunting_dog.n.01 hunting_dog.n.01 +lesser_kudu.n.01 mammal.n.01 +kob.n.01 waterbuck.n.01 +indian_buffalo.n.01 ungulate.n.01 +groenendael.n.01 mammal.n.01 +elephant_seal.n.01 placental.n.01 +brittany_spaniel.n.01 dog.n.01 +common_zebra.n.01 mammal.n.01 +guanaco.n.01 even-toed_ungulate.n.01 +aegyptopithecus.n.01 hominoid.n.01 +asiatic_black_bear.n.01 placental.n.01 +okapi.n.01 okapi.n.01 +phyllostomus_hastatus.n.01 placental.n.01 +seeing_eye_dog.n.01 seeing_eye_dog.n.01 +old_world_porcupine.n.01 old_world_porcupine.n.01 +tamarin.n.01 marmoset.n.01 +shetland_pony.n.01 pony.n.05 +wapiti.n.01 even-toed_ungulate.n.01 +bird_dog.n.01 hunting_dog.n.01 +dusky-footed_woodrat.n.01 mammal.n.01 +brewer's_mole.n.01 mole.n.06 +northern_pocket_gopher.n.01 placental.n.01 +wolfhound.n.01 dog.n.01 +stalking-horse.n.04 mammal.n.01 +silverback.n.01 primate.n.02 +meadow_jumping_mouse.n.01 meadow_jumping_mouse.n.01 +malamute.n.01 canine.n.02 +plains_pocket_mouse.n.01 rat.n.01 +tarpan.n.01 horse.n.01 +grey_lemming.n.01 placental.n.01 +komondor.n.01 dog.n.01 +harbor_seal.n.01 seal.n.09 +jird.n.01 placental.n.01 +world.n.08 world.n.08 +grey_lemming.n.01 grey_lemming.n.01 +damaraland_mole_rat.n.01 damaraland_mole_rat.n.01 +welsh_springer_spaniel.n.01 mammal.n.01 +spearnose_bat.n.01 bat.n.01 +jungle_cat.n.01 carnivore.n.01 +common_eland.n.01 even-toed_ungulate.n.01 +charolais.n.01 even-toed_ungulate.n.01 +dairy_cattle.n.01 bovine.n.01 +new_world_monkey.n.01 placental.n.01 +broadtail.n.02 even-toed_ungulate.n.01 +housedog.n.01 canine.n.02 +wisent.n.01 bovid.n.01 +horse.n.01 mammal.n.01 +malayan_tapir.n.01 ungulate.n.01 +harrier.n.02 hound.n.01 +marten.n.01 placental.n.01 +clydesdale.n.01 draft_horse.n.01 +broodmare.n.01 placental.n.01 +stone_marten.n.01 placental.n.01 +marsh_hare.n.01 rabbit.n.01 +sheep.n.01 sheep.n.01 +plott_hound.n.01 hound.n.01 +samoyed.n.03 samoyed.n.03 +blacktail_jackrabbit.n.01 mammal.n.01 +thomson's_gazelle.n.01 gazelle.n.01 +black-and-tan_coonhound.n.01 canine.n.02 +mexican_hairless.n.01 mexican_hairless.n.01 +metatherian.n.01 metatherian.n.01 +wolf.n.01 mammal.n.01 +mesohippus.n.01 mammal.n.01 +red_poll.n.01 mammal.n.01 +bowhead.n.01 baleen_whale.n.01 +silver_fox.n.01 fox.n.01 +cardigan.n.02 canine.n.02 +lincoln.n.03 ruminant.n.01 +pachyderm.n.01 placental.n.01 +watchdog.n.02 working_dog.n.01 +whirlaway.n.01 equine.n.01 +red-backed_mouse.n.01 rodent.n.01 +weimaraner.n.01 mammal.n.01 +bernese_mountain_dog.n.01 dog.n.01 +arabian_camel.n.01 placental.n.01 +pinche.n.01 primate.n.02 +pekinese.n.01 canine.n.02 +viscacha.n.01 rodent.n.01 +australopithecus_robustus.n.01 australopithecus_robustus.n.01 +ord_kangaroo_rat.n.01 ord_kangaroo_rat.n.01 +rambouillet.n.01 rambouillet.n.01 +lippizan.n.01 horse.n.01 +pug.n.01 placental.n.01 +kelpie.n.02 placental.n.01 +harp_seal.n.01 aquatic_mammal.n.01 +boxer.n.04 placental.n.01 +tamarau.n.01 mammal.n.01 +eastern_grey_squirrel.n.01 placental.n.01 +gemsbok.n.01 ruminant.n.01 +cattalo.n.01 bovid.n.01 +wether.n.01 sheep.n.01 +standard_poodle.n.01 standard_poodle.n.01 +mouflon.n.01 placental.n.01 +german_shepherd.n.01 canine.n.02 +old_world_beaver.n.01 rodent.n.01 +plott_hound.n.01 dog.n.01 +wire-haired_fox_terrier.n.01 placental.n.01 +pinche.n.01 mammal.n.01 +woodland_caribou.n.01 deer.n.01 +eastern_pipistrel.n.01 mammal.n.01 +american_bison.n.01 even-toed_ungulate.n.01 +poodle.n.01 placental.n.01 +indian_mongoose.n.01 viverrine.n.01 +neandertal_man.n.01 neandertal_man.n.01 +lapdog.n.01 carnivore.n.01 +mountain_gorilla.n.01 ape.n.01 +tasmanian_devil.n.01 tasmanian_devil.n.01 +cinnamon_bear.n.01 cinnamon_bear.n.01 +porpoise.n.01 dolphin.n.02 +raccoon_dog.n.01 carnivore.n.01 +rat_terrier.n.01 placental.n.01 +african_elephant.n.01 proboscidean.n.01 +field_spaniel.n.01 spaniel.n.01 +white_whale.n.01 toothed_whale.n.01 +wheel_horse.n.01 workhorse.n.02 +warhorse.n.03 equine.n.01 +agouti.n.01 agouti.n.01 +grivet.n.01 placental.n.01 +orangutan.n.01 orangutan.n.01 +pacer.n.02 ungulate.n.01 +retriever.n.01 mammal.n.01 +gnu.n.01 mammal.n.01 +king_charles_spaniel.n.01 mammal.n.01 +cob.n.02 harness_horse.n.01 +jennet.n.01 placental.n.01 +pomeranian.n.01 carnivore.n.01 +remount.n.01 odd-toed_ungulate.n.01 +oryx.n.01 antelope.n.01 +tamarin.n.01 monkey.n.01 +yorkshire_terrier.n.01 dog.n.01 +galago.n.01 primate.n.02 +heifer.n.01 placental.n.01 +hippopotamus.n.01 hippopotamus.n.01 +red-backed_mouse.n.01 red-backed_mouse.n.01 +indian_rhinoceros.n.01 rhinoceros.n.01 +friesian.n.01 bovid.n.01 +crab-eating_raccoon.n.01 procyonid.n.01 +wallaby.n.01 mammal.n.01 +nonstarter.n.02 mammal.n.01 +goat_antelope.n.01 even-toed_ungulate.n.01 +mountain_sheep.n.01 bovid.n.01 +bouvier_des_flandres.n.01 dog.n.01 +toy_manchester.n.01 hunting_dog.n.01 +longtail_weasel.n.01 musteline_mammal.n.01 +aquatic_mammal.n.01 placental.n.01 +macrotus.n.01 mammal.n.01 +kanchil.n.01 ungulate.n.01 +sheep.n.01 mammal.n.01 +macaque.n.01 monkey.n.01 +red_fox.n.02 canine.n.02 +thoroughbred.n.02 horse.n.01 +caracal.n.01 placental.n.01 +hinny.n.01 placental.n.01 +blenheim_spaniel.n.01 dog.n.01 +welsh_springer_spaniel.n.01 canine.n.02 +american_flying_squirrel.n.01 rodent.n.01 +appaloosa.n.01 saddle_horse.n.01 +barren_ground_caribou.n.01 ruminant.n.01 +bactrian_camel.n.01 bactrian_camel.n.01 +snowshoe_hare.n.01 leporid.n.01 +irish_water_spaniel.n.01 sporting_dog.n.01 +marsupial.n.01 mammal.n.01 +lincoln.n.03 mammal.n.01 +chiacoan_peccary.n.01 chiacoan_peccary.n.01 +miniature_schnauzer.n.01 dog.n.01 +american_water_spaniel.n.01 hunting_dog.n.01 +ape.n.01 placental.n.01 +eastern_cottontail.n.01 eastern_cottontail.n.01 +sea_lion.n.01 sea_lion.n.01 +spotted_hyena.n.01 mammal.n.01 +durham.n.02 durham.n.02 +ord_kangaroo_rat.n.01 rodent.n.01 +galloway.n.02 beef.n.01 +silky_pocket_mouse.n.01 pocket_mouse.n.01 +chestnut.n.06 ungulate.n.01 +tibetan_terrier.n.01 dog.n.01 +toy_terrier.n.01 mammal.n.01 +gee-gee.n.01 placental.n.01 +longwool.n.01 placental.n.01 +banteng.n.01 placental.n.01 +bovine.n.01 even-toed_ungulate.n.01 +borzoi.n.01 mammal.n.01 +three-year-old_horse.n.01 placental.n.01 +water_chevrotain.n.01 placental.n.01 +java_man.n.01 homo.n.02 +ibex.n.01 mammal.n.01 +miniature_pinscher.n.01 pinscher.n.01 +zebu.n.01 brahman.n.04 +muishond.n.01 weasel.n.02 +borzoi.n.01 wolfhound.n.01 +tigress.n.01 big_cat.n.01 +carabao.n.01 water_buffalo.n.01 +hare_wallaby.n.01 metatherian.n.01 +indian_rhinoceros.n.01 ungulate.n.01 +rabbit_ears.n.02 lagomorph.n.01 +tiger_cub.n.01 feline.n.01 +shire.n.02 ungulate.n.01 +bandicoot.n.01 bandicoot.n.01 +guinea_pig.n.02 guinea_pig.n.02 +wolverine.n.03 mammal.n.01 +soft-coated_wheaten_terrier.n.01 carnivore.n.01 +duplicidentata.n.01 duplicidentata.n.01 +cairn.n.02 hunting_dog.n.01 +sloth_bear.n.01 mammal.n.01 +shrew.n.02 mammal.n.01 +american_mink.n.01 mink.n.03 +wild_dog.n.01 canine.n.02 +sheep.n.01 placental.n.01 +neandertal_man.n.01 placental.n.01 +eurasian_badger.n.01 musteline_mammal.n.01 +pinscher.n.01 mammal.n.01 +bull_mastiff.n.01 mammal.n.01 +lapin.n.02 lapin.n.02 +mountain_goat.n.01 mountain_goat.n.01 +hack.n.06 mammal.n.01 +paranthropus.n.01 mammal.n.01 +cur.n.01 placental.n.01 +galloway.n.02 cattle.n.01 +lioness.n.01 carnivore.n.01 +pteropus_hypomelanus.n.01 fruit_bat.n.01 +old_world_least_weasel.n.01 carnivore.n.01 +merino.n.01 mammal.n.01 +hoary_marmot.n.01 placental.n.01 +remount.n.01 ungulate.n.01 +cynocephalus_variegatus.n.01 placental.n.01 +red_fox.n.02 placental.n.01 +bowhead.n.01 mammal.n.01 +small_civet.n.01 small_civet.n.01 +capuchin.n.02 placental.n.01 +giant_eland.n.01 giant_eland.n.01 +farm_horse.n.01 equine.n.01 +dark_horse.n.02 horse.n.01 +wolf_pup.n.01 canine.n.02 +seeing_eye_dog.n.01 placental.n.01 +bushbuck.n.01 antelope.n.01 +grevy's_zebra.n.01 ungulate.n.01 +fallow_deer.n.01 fallow_deer.n.01 +saiga.n.01 saiga.n.01 +spearnose_bat.n.01 carnivorous_bat.n.01 +eastern_chimpanzee.n.01 placental.n.01 +coati.n.01 procyonid.n.01 +horseshoe_bat.n.01 bat.n.01 +sable.n.05 carnivore.n.01 +shih-tzu.n.01 placental.n.01 +vaquita.n.01 dolphin.n.02 +maltese_dog.n.01 canine.n.02 +welsh_terrier.n.01 carnivore.n.01 +prairie_vole.n.01 vole.n.01 +cow.n.01 cattle.n.01 +malamute.n.01 mammal.n.01 +tigress.n.01 tiger.n.02 +zebra.n.01 zebra.n.01 +european_rabbit.n.01 european_rabbit.n.01 +rorqual.n.01 mammal.n.01 +sausage_dog.n.01 dachshund.n.01 +eskimo_dog.n.01 dog.n.01 +greater_kudu.n.01 kudu.n.01 +wapiti.n.01 deer.n.01 +virginia_deer.n.01 even-toed_ungulate.n.01 +border_terrier.n.01 placental.n.01 +pony.n.05 mammal.n.01 +mangabey.n.01 monkey.n.01 +killer_whale.n.01 placental.n.01 +boar.n.02 boar.n.02 +south_american_sea_lion.n.01 eared_seal.n.01 +gerenuk.n.01 antelope.n.01 +roe_deer.n.01 roe_deer.n.01 +whirlaway.n.01 whirlaway.n.01 +golden_mole.n.01 insectivore.n.01 +pygmy_marmoset.n.01 pygmy_marmoset.n.01 +cotswold.n.01 cotswold.n.01 +broadtail.n.02 placental.n.01 +black_sheep.n.02 sheep.n.01 +beaver.n.07 beaver.n.07 +gee-gee.n.01 ungulate.n.01 +rock_squirrel.n.01 mammal.n.01 +giant_schnauzer.n.01 hunting_dog.n.01 +japanese_spaniel.n.01 toy_dog.n.01 +stag.n.02 mammal.n.01 +jerboa.n.01 rodent.n.01 +hog-nosed_skunk.n.01 skunk.n.04 +bengal_tiger.n.01 carnivore.n.01 +new_world_least_weasel.n.01 musteline_mammal.n.01 +guenon.n.01 monkey.n.01 +toy_dog.n.01 dog.n.01 +domestic_ass.n.01 placental.n.01 +sei_whale.n.01 cetacean.n.01 +spitz.n.01 carnivore.n.01 +desmodus_rotundus.n.01 bat.n.01 +woolly_monkey.n.01 monkey.n.01 +walker_hound.n.01 carnivore.n.01 +grevy's_zebra.n.01 odd-toed_ungulate.n.01 +domestic_sheep.n.01 mammal.n.01 +police_dog.n.01 working_dog.n.01 +american_staffordshire_terrier.n.01 canine.n.02 +pallid_bat.n.01 pallid_bat.n.01 +irish_wolfhound.n.01 wolfhound.n.01 +silver_fox.n.01 carnivore.n.01 +clydesdale_terrier.n.01 terrier.n.01 +western_big-eared_bat.n.01 carnivorous_bat.n.01 +black_rhinoceros.n.01 rhinoceros.n.01 +war_admiral.n.01 thoroughbred.n.02 +indian_elephant.n.01 indian_elephant.n.01 +liver_chestnut.n.01 ungulate.n.01 +irish_wolfhound.n.01 mammal.n.01 +lynx.n.02 lynx.n.02 +bengal_tiger.n.01 feline.n.01 +brabancon_griffon.n.01 mammal.n.01 +kudu.n.01 mammal.n.01 +mountain_sheep.n.01 wild_sheep.n.01 +capuchin.n.02 monkey.n.01 +cattle.n.01 bovine.n.01 +mountain_gorilla.n.01 gorilla.n.01 +crowbait.n.01 odd-toed_ungulate.n.01 +manul.n.01 cat.n.01 +western_pipistrel.n.01 mammal.n.01 +secretariat.n.02 horse.n.01 +procyonid.n.01 procyonid.n.01 +mole_rat.n.01 placental.n.01 +black_rhinoceros.n.01 mammal.n.01 +kanchil.n.01 mammal.n.01 +english_setter.n.01 setter.n.02 +european_hare.n.01 mammal.n.01 +welsh_pony.n.01 placental.n.01 +shetland_sheepdog.n.01 carnivore.n.01 +whitetail_prairie_dog.n.01 rodent.n.01 +coati.n.01 placental.n.01 +pocket_rat.n.01 mammal.n.01 +tigress.n.01 feline.n.01 +civet.n.01 viverrine.n.01 +maltese_dog.n.01 dog.n.01 +green_monkey.n.01 monkey.n.01 +chickeree.n.01 mammal.n.01 +frosted_bat.n.01 mammal.n.01 +bat.n.01 bat.n.01 +swine.n.01 swine.n.01 +bongo.n.02 bovid.n.01 +bullock.n.02 ruminant.n.01 +tree_squirrel.n.01 tree_squirrel.n.01 +bloodhound.n.01 hound.n.01 +otter.n.02 mammal.n.01 +pole_horse.n.01 odd-toed_ungulate.n.01 +chiacoan_peccary.n.01 mammal.n.01 +kangaroo_mouse.n.02 mammal.n.01 +water_shrew.n.01 placental.n.01 +cryptoprocta.n.01 viverrine.n.01 +pony.n.01 odd-toed_ungulate.n.01 +pine_vole.n.01 pine_vole.n.01 +saki.n.03 monkey.n.01 +jersey.n.05 cattle.n.01 +peccary.n.01 peccary.n.01 +white_wolf.n.01 white_wolf.n.01 +cow.n.01 ungulate.n.01 +dinocerate.n.01 dinocerate.n.01 +marco_polo_sheep.n.01 wild_sheep.n.01 +cardigan.n.02 carnivore.n.01 +pere_david's_deer.n.01 mammal.n.01 +colobus.n.01 primate.n.02 +palfrey.n.01 placental.n.01 +jerboa_rat.n.01 placental.n.01 +pug.n.01 mammal.n.01 +java_man.n.01 primate.n.02 +asiatic_shrew_mole.n.01 mole.n.06 +onager.n.02 wild_ass.n.01 +rogue_elephant.n.01 rogue_elephant.n.01 +racehorse.n.01 racehorse.n.01 +omaha.n.04 horse.n.01 +ibizan_hound.n.01 mammal.n.01 +chacma.n.01 primate.n.02 +eastern_lowland_gorilla.n.01 primate.n.02 +wildcat.n.03 mammal.n.01 +guinea_pig.n.02 mammal.n.01 +king_charles_spaniel.n.01 canine.n.02 +setter.n.02 mammal.n.01 +jerboa_rat.n.01 jerboa_rat.n.01 +urial.n.01 ungulate.n.01 +echidna.n.01 prototherian.n.01 +borzoi.n.01 hunting_dog.n.01 +narwhal.n.01 cetacean.n.01 +red_poll.n.01 placental.n.01 +crab-eating_macaque.n.01 mammal.n.01 +hedgehog.n.02 insectivore.n.01 +fur_seal.n.02 seal.n.09 +badger.n.02 placental.n.01 +jaguar.n.01 carnivore.n.01 +welsh.n.03 even-toed_ungulate.n.01 +chihuahua.n.03 carnivore.n.01 +malayan_tapir.n.01 tapir.n.01 +welsh_terrier.n.01 hunting_dog.n.01 +tarsius_syrichta.n.01 tarsier.n.01 +affenpinscher.n.01 canine.n.02 +white_elephant.n.02 placental.n.01 +proconsul.n.03 hominoid.n.01 +bernese_mountain_dog.n.01 bernese_mountain_dog.n.01 +lakeland_terrier.n.01 lakeland_terrier.n.01 +rat_terrier.n.01 canine.n.02 +indian_mongoose.n.01 mongoose.n.01 +gayal.n.01 bovid.n.01 +large_civet.n.01 civet.n.01 +fox_terrier.n.01 placental.n.01 +fox.n.01 placental.n.01 +sussex_spaniel.n.01 hunting_dog.n.01 +appenzeller.n.01 sennenhunde.n.01 +smiledon_californicus.n.01 mammal.n.01 +sheep.n.01 bovid.n.01 +sinanthropus.n.01 placental.n.01 +toothed_whale.n.01 placental.n.01 +okapi.n.01 placental.n.01 +western_lowland_gorilla.n.01 primate.n.02 +liger.n.01 placental.n.01 +carabao.n.01 mammal.n.01 +wire-haired_fox_terrier.n.01 canine.n.02 +ratel.n.01 mammal.n.01 +brown_swiss.n.01 mammal.n.01 +sir_barton.n.01 odd-toed_ungulate.n.01 +afghan_hound.n.01 placental.n.01 +kob.n.01 even-toed_ungulate.n.01 +foxhound.n.01 mammal.n.01 +staffordshire_bullterrier.n.01 placental.n.01 +cocker_spaniel.n.01 sporting_dog.n.01 +mare.n.01 horse.n.01 +bellwether.n.02 wether.n.01 +boxer.n.04 working_dog.n.01 +cro-magnon.n.01 homo.n.02 +old_world_buffalo.n.01 even-toed_ungulate.n.01 +mesohippus.n.01 ungulate.n.01 +right_whale.n.01 aquatic_mammal.n.01 +vervet.n.01 monkey.n.01 +vixen.n.02 fox.n.01 +pembroke.n.01 corgi.n.01 +hog-nosed_skunk.n.01 mammal.n.01 +procyonid.n.01 carnivore.n.01 +hoary_marmot.n.01 hoary_marmot.n.01 +impala.n.01 even-toed_ungulate.n.01 +carthorse.n.01 placental.n.01 +patas.n.01 placental.n.01 +cairn.n.02 carnivore.n.01 +beaver_rat.n.01 water_rat.n.03 +capybara.n.01 rodent.n.01 +white_rhinoceros.n.01 odd-toed_ungulate.n.01 +sausage_dog.n.01 hunting_dog.n.01 +cuscus.n.01 metatherian.n.01 +spider_monkey.n.01 spider_monkey.n.01 +rabbit_ears.n.02 mammal.n.01 +eurasian_badger.n.01 placental.n.01 +sir_barton.n.01 mammal.n.01 +sporting_dog.n.01 carnivore.n.01 +percheron.n.01 equine.n.01 +thylacine.n.01 thylacine.n.01 +german_short-haired_pointer.n.01 dog.n.01 +tailless_tenrec.n.01 tenrec.n.01 +french_bulldog.n.01 bulldog.n.01 +brown_lemming.n.01 mammal.n.01 +dairy_cattle.n.01 placental.n.01 +grey_whale.n.01 cetacean.n.01 +hartebeest.n.01 ungulate.n.01 +large_poodle.n.01 placental.n.01 +gallant_fox.n.01 mammal.n.01 +pentail.n.01 pentail.n.01 +yellowbelly_marmot.n.01 marmot.n.01 +pouched_mouse.n.01 marsupial.n.01 +koala.n.01 marsupial.n.01 +red_wolf.n.01 carnivore.n.01 +sheep.n.01 even-toed_ungulate.n.01 +affirmed.n.01 placental.n.01 +fox.n.01 canine.n.02 +true_marmoset.n.01 mammal.n.01 +dormouse.n.01 dormouse.n.01 +staghound.n.01 hunting_dog.n.01 +bronco.n.01 equine.n.01 +common_wallaby.n.01 kangaroo.n.01 +irish_terrier.n.01 terrier.n.01 +weasel.n.02 mammal.n.01 +remount.n.01 remount.n.01 +black_fox.n.01 red_fox.n.03 +goat_antelope.n.01 mammal.n.01 +pronghorn.n.01 pronghorn.n.01 +spotted_lynx.n.01 spotted_lynx.n.01 +cattle.n.01 mammal.n.01 +american_water_spaniel.n.01 dog.n.01 +seizure-alert_dog.n.01 canine.n.02 +whitetail_prairie_dog.n.01 placental.n.01 +old_world_monkey.n.01 monkey.n.01 +wapiti.n.01 placental.n.01 +kitty.n.04 kitty.n.04 +persian_cat.n.01 placental.n.01 +gordon_setter.n.01 sporting_dog.n.01 +toy_manchester.n.01 carnivore.n.01 +indian_rhinoceros.n.01 indian_rhinoceros.n.01 +gerbil.n.01 placental.n.01 +indri.n.01 indri.n.01 +exmoor.n.01 bovid.n.01 +guano_bat.n.01 placental.n.01 +chevrotain.n.01 ruminant.n.01 +rudapithecus.n.01 mammal.n.01 +takin.n.01 mammal.n.01 +brown_hyena.n.01 hyena.n.01 +rabbit.n.01 lagomorph.n.01 +proboscis_monkey.n.01 monkey.n.01 +devon.n.02 bovine.n.01 +plains_pocket_gopher.n.01 placental.n.01 +meadow_jumping_mouse.n.01 jumping_mouse.n.01 +greyhound.n.01 dog.n.01 +aurochs.n.02 ungulate.n.01 +collared_pika.n.01 mammal.n.01 +wild_dog.n.01 wild_dog.n.01 +working_dog.n.01 dog.n.01 +sei_whale.n.01 placental.n.01 +american_badger.n.01 musteline_mammal.n.01 +gaur.n.01 bovine.n.01 +whale.n.02 cetacean.n.01 +count_fleet.n.01 placental.n.01 +urial.n.01 urial.n.01 +canada_lynx.n.01 carnivore.n.01 +bengal_tiger.n.01 bengal_tiger.n.01 +ferret_badger.n.01 ferret_badger.n.01 +merino.n.01 ruminant.n.01 +scotch_terrier.n.01 scotch_terrier.n.01 +crowbait.n.01 crowbait.n.01 +dwarf_sperm_whale.n.01 aquatic_mammal.n.01 +black-and-tan_coonhound.n.01 mammal.n.01 +nail-tailed_wallaby.n.01 wallaby.n.01 +brittany_spaniel.n.01 canine.n.02 +sewer_rat.n.01 placental.n.01 +sambar.n.01 sambar.n.01 +newfoundland.n.01 placental.n.01 +mudder.n.01 mudder.n.01 +pole_horse.n.02 equine.n.01 +kangaroo.n.01 metatherian.n.01 +ass.n.03 placental.n.01 +ground_squirrel.n.02 mammal.n.01 +snake_muishond.n.01 muishond.n.01 +vaquita.n.01 placental.n.01 +yellow-throated_marten.n.01 mammal.n.01 +dusky-footed_woodrat.n.01 packrat.n.02 +waterbuck.n.01 even-toed_ungulate.n.01 +quagga.n.01 ungulate.n.01 +anthropoid.n.02 mammal.n.01 +grey_whale.n.01 aquatic_mammal.n.01 +cow_pony.n.01 mammal.n.01 +poodle.n.01 poodle.n.01 +pere_david's_deer.n.01 pere_david's_deer.n.01 +timber_wolf.n.01 timber_wolf.n.01 +terrier.n.01 terrier.n.01 +border_terrier.n.01 canine.n.02 +new_world_least_weasel.n.01 carnivore.n.01 +mastodon.n.01 mammal.n.01 +durham.n.02 cattle.n.01 +hairy-legged_vampire_bat.n.01 hairy-legged_vampire_bat.n.01 +takin.n.01 ungulate.n.01 +pacer.n.01 placental.n.01 +mastiff.n.01 dog.n.01 +jersey.n.05 dairy_cattle.n.01 +zebu.n.01 ungulate.n.01 +grade.n.09 bovid.n.01 +boston_bull.n.01 placental.n.01 +bison.n.01 even-toed_ungulate.n.01 +american_saddle_horse.n.01 ungulate.n.01 +cow_pony.n.01 ungulate.n.01 +thylacine.n.01 marsupial.n.01 +bear.n.01 placental.n.01 +cashmere_goat.n.01 goat.n.01 +shih-tzu.n.01 canine.n.02 +swine.n.01 mammal.n.01 +california_sea_lion.n.01 placental.n.01 +springer.n.02 cattle.n.01 +indian_elephant.n.01 elephant.n.01 +fox_squirrel.n.01 mammal.n.01 +red_deer.n.01 deer.n.01 +staghound.n.01 hound.n.01 +collared_pika.n.01 lagomorph.n.01 +mammoth.n.01 elephant.n.01 +pine_vole.n.01 mammal.n.01 +equine.n.01 mammal.n.01 +skunk.n.04 carnivore.n.01 +stalking-horse.n.04 odd-toed_ungulate.n.01 +skye_terrier.n.01 mammal.n.01 +grivet.n.01 guenon.n.01 +harbor_porpoise.n.01 toothed_whale.n.01 +dinocerate.n.01 placental.n.01 +grampus.n.02 aquatic_mammal.n.01 +pointer.n.04 pointer.n.04 +spitz.n.01 spitz.n.01 +killer_whale.n.01 dolphin.n.02 +crowbait.n.01 horse.n.01 +harness_horse.n.01 equine.n.01 +lesser_panda.n.01 placental.n.01 +equine.n.01 odd-toed_ungulate.n.01 +muskrat.n.02 mammal.n.01 +broadtail.n.02 mammal.n.01 +nude_mouse.n.01 mouse.n.01 +wild_sheep.n.01 bovid.n.01 +water_vole.n.01 rodent.n.01 +warrigal.n.01 ungulate.n.01 +eohippus.n.01 equine.n.01 +war_admiral.n.01 ungulate.n.01 +pollard.n.02 ruminant.n.01 +clumber.n.01 placental.n.01 +leopard.n.02 mammal.n.01 +potto.n.02 lemur.n.01 +mesohippus.n.01 horse.n.01 +longhorn.n.01 ungulate.n.01 +yellow-throated_marten.n.01 placental.n.01 +hinny.n.01 equine.n.01 +rat_terrier.n.01 terrier.n.01 +otterhound.n.01 otterhound.n.01 +long-eared_bat.n.01 carnivorous_bat.n.01 +weimaraner.n.01 canine.n.02 +european_lemming.n.01 european_lemming.n.01 +rabbit-eared_bandicoot.n.01 mammal.n.01 +black_rhinoceros.n.01 ungulate.n.01 +bernese_mountain_dog.n.01 sennenhunde.n.01 +wallaby.n.01 marsupial.n.01 +tiger_cub.n.01 mammal.n.01 +dusky-footed_wood_rat.n.01 wood_rat.n.01 +caribou.n.01 ungulate.n.01 +cactus_mouse.n.01 cactus_mouse.n.01 +steller_sea_lion.n.01 steller_sea_lion.n.01 +gibbon.n.02 gibbon.n.02 +opossum.n.02 opossum.n.02 +dhole.n.01 carnivore.n.01 +long-tailed_porcupine.n.01 old_world_porcupine.n.01 +saki.n.03 placental.n.01 +royal.n.02 placental.n.01 +typical_jerboa.n.01 mammal.n.01 +setter.n.02 canine.n.02 +takin.n.01 bovid.n.01 +black_fox.n.01 carnivore.n.01 +asiatic_shrew_mole.n.01 mammal.n.01 +pademelon.n.01 mammal.n.01 +basenji.n.01 mammal.n.01 +stag.n.02 buck.n.05 +eastern_woodrat.n.01 placental.n.01 +cro-magnon.n.01 placental.n.01 +razorback.n.01 placental.n.01 +cairn.n.02 terrier.n.01 +coydog.n.01 mammal.n.01 +shepherd_dog.n.01 placental.n.01 +humpback.n.03 aquatic_mammal.n.01 +water_shrew.n.01 water_shrew.n.01 +brown_swiss.n.01 dairy_cattle.n.01 +norwegian_elkhound.n.01 dog.n.01 +american_flying_squirrel.n.01 squirrel.n.01 +lippizan.n.01 equine.n.01 +sea_lion.n.01 mammal.n.01 +jennet.n.01 equine.n.01 +american_red_squirrel.n.01 american_red_squirrel.n.01 +beaver_rat.n.01 beaver_rat.n.01 +greyhound.n.01 hound.n.01 +bird_dog.n.01 carnivore.n.01 +serotine.n.01 bat.n.01 +exmoor.n.02 mammal.n.01 +wallaby.n.01 wallaby.n.01 +english_setter.n.01 placental.n.01 +steenbok.n.01 bovid.n.01 +appaloosa.n.01 ungulate.n.01 +mountain_zebra.n.01 odd-toed_ungulate.n.01 +manatee.n.01 placental.n.01 +longtail_weasel.n.01 placental.n.01 +horseshoe_bat.n.02 horseshoe_bat.n.02 +frosted_bat.n.01 carnivorous_bat.n.01 +stoat.n.01 ermine.n.02 +spotted_skunk.n.01 carnivore.n.01 +caracal.n.01 feline.n.01 +chipmunk.n.01 mammal.n.01 +mara.n.02 mara.n.02 +siamese_cat.n.01 carnivore.n.01 +english_springer.n.01 dog.n.01 +mastiff_bat.n.01 mastiff_bat.n.01 +toy_manchester.n.01 toy_manchester.n.01 +otter_shrew.n.01 mammal.n.01 +broadtail.n.02 domestic_sheep.n.01 +two-year-old_horse.n.01 horse.n.01 +blenheim_spaniel.n.01 toy_spaniel.n.01 +cheetah.n.01 feline.n.01 +giant_panda.n.01 placental.n.01 +right_whale.n.01 placental.n.01 +griffon.n.03 hunting_dog.n.01 +southern_bog_lemming.n.01 southern_bog_lemming.n.01 +syrian_bear.n.01 bear.n.01 +fanaloka.n.01 civet.n.01 +hampshire.n.02 sheep.n.01 +bullock.n.01 bovine.n.01 +arctic_ground_squirrel.n.01 ground_squirrel.n.02 +curly-coated_retriever.n.01 canine.n.02 +yellow-throated_marten.n.01 yellow-throated_marten.n.01 +hooded_seal.n.01 hooded_seal.n.01 +tarsier.n.01 mammal.n.01 +angora.n.04 domestic_cat.n.01 +pinscher.n.01 working_dog.n.01 +bull_mastiff.n.01 working_dog.n.01 +pomeranian.n.01 pomeranian.n.01 +markhor.n.01 markhor.n.01 +leonberg.n.01 leonberg.n.01 +beaver.n.07 mammal.n.01 +australopithecus_robustus.n.01 mammal.n.01 +citation.n.06 ungulate.n.01 +terrier.n.01 mammal.n.01 +saluki.n.01 dog.n.01 +hedgehog.n.02 placental.n.01 +draft_horse.n.01 mammal.n.01 +warrigal.n.01 warrigal.n.01 +clumber.n.01 hunting_dog.n.01 +brittany_spaniel.n.01 brittany_spaniel.n.01 +jaculus_jaculus.n.01 mammal.n.01 +charger.n.01 charger.n.01 +big_cat.n.01 big_cat.n.01 +peba.n.01 peba.n.01 +komondor.n.01 carnivore.n.01 +guide_dog.n.01 dog.n.01 +bullock.n.01 mammal.n.01 +gallant_fox.n.01 horse.n.01 +ocelot.n.01 carnivore.n.01 +porpoise.n.01 whale.n.02 +margay.n.01 cat.n.01 +baboon.n.01 old_world_monkey.n.01 +quarter_horse.n.01 equine.n.01 +queen.n.09 mammal.n.01 +afghan_hound.n.01 canine.n.02 +opossum.n.02 marsupial.n.01 +cotswold.n.01 sheep.n.01 +silverback.n.01 mammal.n.01 +leopardess.n.01 leopardess.n.01 +big_brown_bat.n.01 big_brown_bat.n.01 +secretariat.n.02 ungulate.n.01 +edentate.n.01 mammal.n.01 +homo_erectus.n.01 homo_erectus.n.01 +pine_vole.n.01 vole.n.01 +roan.n.02 placental.n.01 +zoril.n.01 placental.n.01 +red_squirrel.n.02 red_squirrel.n.02 +cheetah.n.01 placental.n.01 +murine.n.01 murine.n.01 +mink.n.03 carnivore.n.01 +fissiped_mammal.n.01 fissiped_mammal.n.01 +miniature_schnauzer.n.01 carnivore.n.01 +musk_deer.n.01 musk_deer.n.01 +bighorn.n.02 bighorn.n.02 +vixen.n.02 canine.n.02 +standard_schnauzer.n.01 hunting_dog.n.01 +domestic_sheep.n.01 sheep.n.01 +thomson's_gazelle.n.01 antelope.n.01 +kerry_blue_terrier.n.01 placental.n.01 +drill.n.02 drill.n.02 +american_water_shrew.n.01 placental.n.01 +spouter.n.03 spouter.n.03 +grey_whale.n.01 whale.n.02 +red-backed_mouse.n.01 placental.n.01 +plow_horse.n.01 plow_horse.n.01 +water_dog.n.02 hunting_dog.n.01 +lesser_panda.n.01 lesser_panda.n.01 +african_elephant.n.01 pachyderm.n.01 +jersey.n.05 bovid.n.01 +australopithecus_boisei.n.01 australopithecus_boisei.n.01 +komondor.n.01 komondor.n.01 +beef.n.01 placental.n.01 +lhasa.n.02 placental.n.01 +lynx.n.02 placental.n.01 +border_collie.n.01 dog.n.01 +porcupine.n.01 rodent.n.01 +harp_seal.n.01 pinniped_mammal.n.01 +italian_greyhound.n.01 placental.n.01 +water_shrew.n.01 shrew.n.02 +african_wild_ass.n.01 equine.n.01 +polar_hare.n.01 placental.n.01 +blue_whale.n.01 mammal.n.01 +asian_wild_ox.n.01 mammal.n.01 +spaniel.n.01 hunting_dog.n.01 +rabbit-eared_bandicoot.n.01 marsupial.n.01 +cynopterus_sphinx.n.01 mammal.n.01 +pricket.n.02 placental.n.01 +gibbon.n.02 mammal.n.01 +bronco.n.01 horse.n.01 +black_sheep.n.02 ungulate.n.01 +galloway.n.02 even-toed_ungulate.n.01 +slow_loris.n.01 mammal.n.01 +puku.n.01 ungulate.n.01 +gayal.n.01 ox.n.02 +indri.n.01 mammal.n.01 +palomino.n.01 equine.n.01 +briard.n.01 carnivore.n.01 +yorkshire_terrier.n.01 carnivore.n.01 +nilgai.n.01 mammal.n.01 +steller_sea_lion.n.01 aquatic_mammal.n.01 +secretariat.n.02 equine.n.01 +chevrotain.n.01 mammal.n.01 +wild_horse.n.01 horse.n.01 +kitty.n.04 mammal.n.01 +ox.n.01 even-toed_ungulate.n.01 +tree_squirrel.n.01 mammal.n.01 +post_horse.n.01 equine.n.01 +northern_bog_lemming.n.01 mammal.n.01 +colobus.n.01 old_world_monkey.n.01 +belgian_sheepdog.n.01 canine.n.02 +mexican_pocket_mouse.n.01 pocket_rat.n.01 +pacific_walrus.n.01 pinniped_mammal.n.01 +tayra.n.01 musteline_mammal.n.01 +peking_man.n.01 peking_man.n.01 +snowshoe_hare.n.01 snowshoe_hare.n.01 +ferret.n.02 placental.n.01 +common_opossum.n.01 marsupial.n.01 +horseshoe_bat.n.02 bat.n.01 +puppy.n.01 dog.n.01 +french_bulldog.n.01 mammal.n.01 +kelpie.n.02 dog.n.01 +dingo.n.01 mammal.n.01 +wood_mouse.n.01 wood_mouse.n.01 +remount.n.01 horse.n.01 +arabian_camel.n.01 arabian_camel.n.01 +racehorse.n.01 placental.n.01 +killer_whale.n.01 killer_whale.n.01 +markhor.n.01 mammal.n.01 +saint_bernard.n.01 dog.n.01 +miniature_pinscher.n.01 mammal.n.01 +fissipedia.n.01 placental.n.01 +toothed_whale.n.01 whale.n.02 +muntjac.n.01 muntjac.n.01 +gee-gee.n.01 gee-gee.n.01 +carabao.n.01 ungulate.n.01 +homo_sapiens.n.01 homo.n.02 +sussex_spaniel.n.01 canine.n.02 +packrat.n.02 placental.n.01 +kid.n.05 mammal.n.01 +border_collie.n.01 canine.n.02 +dall_sheep.n.01 placental.n.01 +spotted_hyena.n.01 placental.n.01 +tree_wallaby.n.01 mammal.n.01 +stalking-horse.n.04 stalking-horse.n.04 +bunny.n.02 mammal.n.01 +aye-aye.n.01 mammal.n.01 +maltese.n.03 feline.n.01 +gemsbok.n.01 bovid.n.01 +domestic_goat.n.01 ruminant.n.01 +cougar.n.01 cougar.n.01 +bruin.n.01 bruin.n.01 +western_big-eared_bat.n.01 bat.n.01 +cairn.n.02 cairn.n.02 +pacific_walrus.n.01 aquatic_mammal.n.01 +cardigan.n.02 corgi.n.01 +pocketed_bat.n.01 freetail.n.01 +scottish_deerhound.n.01 placental.n.01 +narwhal.n.01 placental.n.01 +rottweiler.n.01 placental.n.01 +assault.n.03 odd-toed_ungulate.n.01 +addax.n.01 even-toed_ungulate.n.01 +pine_marten.n.01 marten.n.01 +homo_sapiens.n.01 mammal.n.01 +australopithecine.n.01 placental.n.01 +skunk.n.04 placental.n.01 +tamarin.n.01 primate.n.02 +brush-tailed_porcupine.n.01 mammal.n.01 +grizzly.n.01 grizzly.n.01 +proboscis_monkey.n.01 old_world_monkey.n.01 +leopard_cat.n.01 mammal.n.01 +pallid_bat.n.01 mammal.n.01 +american_water_spaniel.n.01 canine.n.02 +brocket.n.02 ruminant.n.01 +markhor.n.01 placental.n.01 +echidna.n.01 echidna.n.01 +murine.n.01 mammal.n.01 +mouflon.n.01 mountain_sheep.n.01 +griffon.n.02 griffon.n.02 +common_dolphin.n.01 placental.n.01 +gerenuk.n.01 gerenuk.n.01 +rhesus.n.01 rhesus.n.01 +kuvasz.n.01 kuvasz.n.01 +bitch.n.04 bitch.n.04 +alley_cat.n.01 cat.n.01 +miniature_pinscher.n.01 watchdog.n.02 +european_water_shrew.n.01 european_water_shrew.n.01 +charolais.n.01 charolais.n.01 +pilot_whale.n.01 cetacean.n.01 +entellus.n.01 monkey.n.01 +nyala.n.02 ungulate.n.01 +sperm_whale.n.01 whale.n.02 +tasmanian_devil.n.01 metatherian.n.01 +mouser.n.01 placental.n.01 +indian_elephant.n.01 proboscidean.n.01 +homo.n.02 hominid.n.01 +miniature_schnauzer.n.01 terrier.n.01 +mastodon.n.01 placental.n.01 +remount.n.01 saddle_horse.n.01 +cotton_rat.n.01 rodent.n.01 +simian.n.01 mammal.n.01 +two-toed_sloth.n.02 placental.n.01 +steller's_sea_cow.n.01 sea_cow.n.01 +clydesdale.n.01 placental.n.01 +saint_bernard.n.01 canine.n.02 +hart.n.03 even-toed_ungulate.n.01 +whippet.n.01 placental.n.01 +tamarin.n.01 new_world_monkey.n.01 +red_squirrel.n.02 placental.n.01 +lion.n.01 mammal.n.01 +tiger_cub.n.01 placental.n.01 +gopher.n.04 rat.n.01 +plains_pocket_mouse.n.01 rodent.n.01 +pocket_mouse.n.01 rat.n.01 +doe.n.02 mammal.n.01 +peccary.n.01 mammal.n.01 +welsh.n.03 bovid.n.01 +bunny.n.02 lagomorph.n.01 +koala.n.01 mammal.n.01 +ferret_badger.n.01 musteline_mammal.n.01 +pacer.n.02 horse.n.01 +sei_whale.n.01 whale.n.02 +english_toy_spaniel.n.01 dog.n.01 +ungulate.n.01 ungulate.n.01 +wombat.n.01 wombat.n.01 +panther.n.02 carnivore.n.01 +durham.n.02 bovid.n.01 +hog.n.03 swine.n.01 +maltese_dog.n.01 maltese_dog.n.01 +ratel.n.01 carnivore.n.01 +brittany_spaniel.n.01 carnivore.n.01 +black_sheep.n.02 even-toed_ungulate.n.01 +pacific_walrus.n.01 mammal.n.01 +cow.n.01 mammal.n.01 +springbok.n.01 ungulate.n.01 +basset.n.01 hound.n.01 +mule.n.01 equine.n.01 +raccoon.n.02 mammal.n.01 +eastern_grey_squirrel.n.01 eastern_grey_squirrel.n.01 +australian_terrier.n.01 hunting_dog.n.01 +great_dane.n.01 carnivore.n.01 +algeripithecus_minutus.n.01 hominoid.n.01 +squirrel_monkey.n.01 primate.n.02 +forest_goat.n.01 placental.n.01 +western_lowland_gorilla.n.01 mammal.n.01 +howler_monkey.n.01 howler_monkey.n.01 +jennet.n.01 jennet.n.01 +anthropoid_ape.n.01 placental.n.01 +boskop_man.n.01 boskop_man.n.01 +zinjanthropus.n.01 zinjanthropus.n.01 +otterhound.n.01 mammal.n.01 +manchester_terrier.n.01 manchester_terrier.n.01 +mylodontid.n.01 mammal.n.01 +saiga.n.01 ungulate.n.01 +vervet.n.01 guenon.n.01 +silky_terrier.n.01 carnivore.n.01 +malinois.n.01 malinois.n.01 +mountain_gorilla.n.01 primate.n.02 +dingo.n.01 carnivore.n.01 +walker_hound.n.01 placental.n.01 +toy_spaniel.n.01 toy_spaniel.n.01 +flat-coated_retriever.n.01 carnivore.n.01 +australopithecine.n.01 primate.n.02 +imperial_mammoth.n.01 pachyderm.n.01 +squirrel_monkey.n.01 mammal.n.01 +kitty.n.04 cat.n.01 +skunk.n.04 musteline_mammal.n.01 +harvest_mouse.n.02 harvest_mouse.n.02 +raccoon.n.02 raccoon.n.02 +guano_bat.n.01 carnivorous_bat.n.01 +ferret_badger.n.01 mammal.n.01 +atlantic_walrus.n.01 aquatic_mammal.n.01 +boarhound.n.01 hunting_dog.n.01 +dhole.n.01 placental.n.01 +billy.n.02 goat.n.01 +barren_ground_caribou.n.01 caribou.n.01 +horse.n.01 equine.n.01 +elephant_seal.n.01 aquatic_mammal.n.01 +nonstarter.n.02 ungulate.n.01 +goral.n.01 even-toed_ungulate.n.01 +hog_badger.n.01 mammal.n.01 +mule_deer.n.01 even-toed_ungulate.n.01 +blue_point_siamese.n.01 mammal.n.01 +shepherd_dog.n.01 working_dog.n.01 +guadalupe_fur_seal.n.01 eared_seal.n.01 +nyala.n.02 mammal.n.01 +friesian.n.01 cattle.n.01 +harnessed_antelope.n.01 placental.n.01 +roebuck.n.01 deer.n.01 +brown_lemming.n.01 placental.n.01 +lincoln.n.03 lincoln.n.03 +water_spaniel.n.01 carnivore.n.01 +phalanger.n.01 mammal.n.01 +bottle-nosed_whale.n.01 beaked_whale.n.01 +japanese_deer.n.01 mammal.n.01 +tree_shrew.n.01 placental.n.01 +aardwolf.n.01 mammal.n.01 +eastern_chimpanzee.n.01 great_ape.n.01 +blue_point_siamese.n.01 domestic_cat.n.01 +stalking-horse.n.04 equine.n.01 +zoril.n.01 carnivore.n.01 +woolly_indris.n.01 woolly_indris.n.01 +goral.n.01 goat_antelope.n.01 +greater_swiss_mountain_dog.n.01 canine.n.02 +water_spaniel.n.01 mammal.n.01 +basset.n.01 carnivore.n.01 +english_foxhound.n.01 dog.n.01 +jackal.n.01 placental.n.01 +housedog.n.01 carnivore.n.01 +nyala.n.02 nyala.n.02 +tabby.n.02 cat.n.01 +pouched_mole.n.01 marsupial.n.01 +blackbuck.n.01 ungulate.n.01 +giant_eland.n.01 ruminant.n.01 +cattle.n.01 ruminant.n.01 +mylodontid.n.01 placental.n.01 +border_terrier.n.01 border_terrier.n.01 +gelding.n.01 gelding.n.01 +domestic_goat.n.01 domestic_goat.n.01 +badger.n.02 badger.n.02 +shrew_mole.n.01 mammal.n.01 +douroucouli.n.01 primate.n.02 +american_mink.n.01 american_mink.n.01 +maltese_dog.n.01 mammal.n.01 +giant_kangaroo.n.01 mammal.n.01 +cryptoprocta.n.01 mammal.n.01 +horseshoe_bat.n.02 carnivorous_bat.n.01 +swamp_rabbit.n.02 placental.n.01 +stud.n.04 ungulate.n.01 +apar.n.01 edentate.n.01 +three-toed_sloth.n.01 edentate.n.01 +warrigal.n.01 placental.n.01 +tayra.n.01 placental.n.01 +brown_hyena.n.01 brown_hyena.n.01 +sloth.n.02 placental.n.01 +warthog.n.01 mammal.n.01 +dandie_dinmont.n.01 terrier.n.01 +african_hunting_dog.n.01 african_hunting_dog.n.01 +japanese_spaniel.n.01 japanese_spaniel.n.01 +wild_goat.n.01 mammal.n.01 +redbone.n.01 dog.n.01 +field_mouse.n.02 mammal.n.01 +bucking_bronco.n.01 mustang.n.01 +liver-spotted_dalmatian.n.01 dalmatian.n.02 +boar.n.02 mammal.n.01 +komondor.n.01 canine.n.02 +pied_lemming.n.01 rodent.n.01 +atlantic_walrus.n.01 mammal.n.01 +english_springer.n.01 mammal.n.01 +thoroughbred.n.02 mammal.n.01 +alpaca.n.03 llama.n.01 +mapinguari.n.01 mapinguari.n.01 +american_water_spaniel.n.01 american_water_spaniel.n.01 +striped_muishond.n.01 weasel.n.02 +guinea_pig.n.02 cavy.n.01 +silver_fox.n.01 canine.n.02 +remount.n.01 mammal.n.01 +gazelle.n.01 placental.n.01 +common_raccoon.n.01 placental.n.01 +springer.n.02 ruminant.n.01 +house_mouse.n.01 mammal.n.01 +grevy's_zebra.n.01 equine.n.01 +sassaby.n.01 antelope.n.01 +american_saddle_horse.n.01 placental.n.01 +english_foxhound.n.01 placental.n.01 +springer_spaniel.n.01 springer_spaniel.n.01 +toy_poodle.n.01 mammal.n.01 +hack.n.06 ungulate.n.01 +pygmy_mouse.n.01 placental.n.01 +echidna.n.02 mammal.n.01 +mongoose.n.01 viverrine.n.01 +siberian_husky.n.01 placental.n.01 +stablemate.n.01 odd-toed_ungulate.n.01 +stirk.n.01 bovine.n.01 +boskop_man.n.01 hominid.n.01 +mudder.n.01 racehorse.n.01 +caracal.n.01 cat.n.01 +protohippus.n.01 ungulate.n.01 +bongo.n.02 bongo.n.02 +musk_kangaroo.n.01 musk_kangaroo.n.01 +gerbil.n.01 rodent.n.01 +kaffir_cat.n.01 mammal.n.01 +wild_ass.n.01 ungulate.n.01 +norfolk_terrier.n.01 carnivore.n.01 +basenji.n.01 dog.n.01 +lion_cub.n.01 feline.n.01 +blacktail_jackrabbit.n.01 leporid.n.01 +corgi.n.01 canine.n.02 +chihuahua.n.03 dog.n.01 +plott_hound.n.01 canine.n.02 +antelope_squirrel.n.01 antelope_squirrel.n.01 +gnu.n.01 antelope.n.01 +little_brown_bat.n.01 placental.n.01 +drill.n.02 monkey.n.01 +spotted_hyena.n.01 canine.n.02 +beaver_rat.n.01 placental.n.01 +galago.n.01 placental.n.01 +crab-eating_macaque.n.01 primate.n.02 +hog_badger.n.01 hog_badger.n.01 +great_dane.n.01 canine.n.02 +fossa.n.03 placental.n.01 +okapi.n.01 even-toed_ungulate.n.01 +kob.n.01 bovid.n.01 +ice_bear.n.01 carnivore.n.01 +horseshoe_bat.n.01 leafnose_bat.n.01 +pygmy_chimpanzee.n.01 chimpanzee.n.01 +pinto.n.01 ungulate.n.01 +markhor.n.01 wild_goat.n.01 +ayrshire.n.01 ruminant.n.01 +chickeree.n.01 chickeree.n.01 +jerboa.n.01 jerboa.n.01 +lion_cub.n.01 carnivore.n.01 +billy.n.02 mammal.n.01 +bedlington_terrier.n.01 canine.n.02 +cavy.n.01 rodent.n.01 +southeastern_pocket_gopher.n.01 southeastern_pocket_gopher.n.01 +bucking_bronco.n.01 bucking_bronco.n.01 +tarsier.n.01 tarsier.n.01 +moke.n.01 placental.n.01 +roebuck.n.01 ungulate.n.01 +lemming.n.01 rodent.n.01 +chinchilla.n.03 rodent.n.01 +norwegian_elkhound.n.01 mammal.n.01 +dingo.n.01 dingo.n.01 +chacma.n.01 old_world_monkey.n.01 +greyhound.n.01 greyhound.n.01 +tiger_cat.n.01 tiger_cat.n.01 +irish_terrier.n.01 hunting_dog.n.01 +tiger.n.02 mammal.n.01 +titi.n.03 mammal.n.01 +broodmare.n.01 broodmare.n.01 +true_marmoset.n.01 monkey.n.01 +slender_loris.n.01 lemur.n.01 +steller_sea_lion.n.01 mammal.n.01 +schnauzer.n.01 mammal.n.01 +black_fox.n.01 mammal.n.01 +appaloosa.n.01 horse.n.01 +white_wolf.n.01 wolf.n.01 +africander.n.01 africander.n.01 +unguiculate.n.01 mammal.n.01 +ichneumon.n.01 carnivore.n.01 +pointer.n.04 mammal.n.01 +dasyure.n.01 mammal.n.01 +three-year-old_horse.n.01 racehorse.n.01 +police_dog.n.01 canine.n.02 +lynx.n.02 cat.n.01 +working_dog.n.01 placental.n.01 +red_fox.n.02 fox.n.01 +tabby.n.01 placental.n.01 +pilot_whale.n.01 placental.n.01 +tiger_cat.n.01 carnivore.n.01 +chigetai.n.01 chigetai.n.01 +french_bulldog.n.01 working_dog.n.01 +abyssinian.n.01 abyssinian.n.01 +loir.n.01 loir.n.01 +american_water_shrew.n.01 shrew.n.02 +stone_marten.n.01 musteline_mammal.n.01 +rogue_elephant.n.01 placental.n.01 +packrat.n.02 rodent.n.01 +kangaroo_mouse.n.02 rodent.n.01 +papillon.n.01 mammal.n.01 +english_toy_spaniel.n.01 toy_spaniel.n.01 +galloway.n.02 ruminant.n.01 +irish_water_spaniel.n.01 dog.n.01 +mountain_gorilla.n.01 mammal.n.01 +nilgai.n.01 antelope.n.01 +war_admiral.n.01 war_admiral.n.01 +white_wolf.n.01 carnivore.n.01 +belgian_hare.n.01 rabbit.n.01 +hartebeest.n.01 placental.n.01 +feline.n.01 carnivore.n.01 +shih-tzu.n.01 shih-tzu.n.01 +warthog.n.01 even-toed_ungulate.n.01 +silky_pocket_mouse.n.01 silky_pocket_mouse.n.01 +persian_cat.n.01 persian_cat.n.01 +affirmed.n.01 thoroughbred.n.02 +bluetick.n.01 hound.n.01 +cape_buffalo.n.01 even-toed_ungulate.n.01 +old_world_least_weasel.n.01 weasel.n.02 +fur_seal.n.01 placental.n.01 +jumping_mouse.n.01 placental.n.01 +snow_leopard.n.01 mammal.n.01 +mammoth.n.01 placental.n.01 +arctic_fox.n.01 placental.n.01 +pocket_rat.n.01 pocket_rat.n.01 +bassarisk.n.01 bassarisk.n.01 +wirehair.n.01 canine.n.02 +border_terrier.n.01 hunting_dog.n.01 +goat.n.01 ruminant.n.01 +royal.n.02 stag.n.02 +japanese_spaniel.n.01 mammal.n.01 +horse.n.01 horse.n.01 +war_admiral.n.01 horse.n.01 +crab-eating_raccoon.n.01 carnivore.n.01 +lechwe.n.01 placental.n.01 +toy_spaniel.n.01 dog.n.01 +warrigal.n.01 horse.n.01 +tamarau.n.01 ruminant.n.01 +staghound.n.01 dog.n.01 +gerenuk.n.01 mammal.n.01 +fawn.n.02 fawn.n.02 +toy_poodle.n.01 carnivore.n.01 +vole.n.01 rodent.n.01 +quarter_horse.n.01 placental.n.01 +mongoose.n.01 placental.n.01 +warhorse.n.03 warhorse.n.03 +dark_horse.n.02 racehorse.n.01 +black_squirrel.n.01 black_squirrel.n.01 +true_marmoset.n.01 placental.n.01 +rabbit.n.01 mammal.n.01 +manatee.n.01 manatee.n.01 +razorback.n.01 even-toed_ungulate.n.01 +sow.n.01 mammal.n.01 +malinois.n.01 placental.n.01 +old_english_sheepdog.n.01 carnivore.n.01 +hartebeest.n.01 bovid.n.01 +male_horse.n.01 mammal.n.01 +ant_bear.n.01 placental.n.01 +whippet.n.01 canine.n.02 +ord_kangaroo_rat.n.01 placental.n.01 +marmot.n.01 rodent.n.01 +crab-eating_macaque.n.01 monkey.n.01 +great_pyrenees.n.01 mammal.n.01 +secretariat.n.02 odd-toed_ungulate.n.01 +beagle.n.01 canine.n.02 +common_lynx.n.01 lynx.n.02 +hack.n.06 placental.n.01 +paranthropus.n.01 placental.n.01 +workhorse.n.02 horse.n.01 +american_mink.n.01 mammal.n.01 +musteline_mammal.n.01 carnivore.n.01 +homo.n.02 primate.n.02 +collared_pika.n.01 collared_pika.n.01 +african_hunting_dog.n.01 wild_dog.n.01 +puku.n.01 puku.n.01 +silky_terrier.n.01 hunting_dog.n.01 +irish_wolfhound.n.01 irish_wolfhound.n.01 +nyala.n.02 bovid.n.01 +snake_muishond.n.01 mammal.n.01 +appenzeller.n.01 working_dog.n.01 +thomson's_gazelle.n.01 bovid.n.01 +ichneumon.n.01 mongoose.n.01 +african_wild_ass.n.01 odd-toed_ungulate.n.01 +hackney.n.02 placental.n.01 +toy_manchester.n.01 canine.n.02 +caribou.n.01 caribou.n.01 +carthorse.n.01 mammal.n.01 +ibex.n.01 bovid.n.01 +woolly_mammoth.n.01 pachyderm.n.01 +cryptoprocta.n.01 placental.n.01 +australian_terrier.n.01 carnivore.n.01 +three-year-old_horse.n.01 mammal.n.01 +water_chevrotain.n.01 mammal.n.01 +chinchilla.n.03 chinchilla.n.03 +old_world_buffalo.n.01 old_world_buffalo.n.01 +przewalski's_horse.n.01 odd-toed_ungulate.n.01 +yearling.n.02 odd-toed_ungulate.n.01 +woodland_caribou.n.01 caribou.n.01 +jackass_bat.n.01 bat.n.01 +entlebucher.n.01 working_dog.n.01 +common_shrew.n.01 insectivore.n.01 +stud.n.04 placental.n.01 +pika.n.01 lagomorph.n.01 +harnessed_antelope.n.01 antelope.n.01 +courser.n.03 hunting_dog.n.01 +pilot_whale.n.01 pilot_whale.n.01 +entellus.n.01 entellus.n.01 +lippizan.n.01 saddle_horse.n.01 +common_zebra.n.01 ungulate.n.01 +lapin.n.02 leporid.n.01 +capuchin.n.02 mammal.n.01 +marmot.n.01 mammal.n.01 +badger.n.02 mammal.n.01 +titi.n.03 new_world_monkey.n.01 +brahman.n.04 ruminant.n.01 +greater_pichiciego.n.01 placental.n.01 +boston_bull.n.01 dog.n.01 +angora.n.03 lagomorph.n.01 +giant_eland.n.01 ungulate.n.01 +fissiped_mammal.n.01 placental.n.01 +aardwolf.n.01 hyena.n.01 +barbary_ape.n.01 placental.n.01 +lemming.n.01 mammal.n.01 +schnauzer.n.01 hunting_dog.n.01 +crab-eating_raccoon.n.01 crab-eating_raccoon.n.01 +red_bat.n.01 placental.n.01 +wisent.n.01 even-toed_ungulate.n.01 +chow.n.03 chow.n.03 +american_badger.n.01 badger.n.02 +yak.n.02 ruminant.n.01 +cavy.n.01 mammal.n.01 +water_buffalo.n.01 mammal.n.01 +woolly_monkey.n.01 mammal.n.01 +shire.n.02 shire.n.02 +bull.n.01 cattle.n.01 +entellus.n.01 mammal.n.01 +old_english_sheepdog.n.01 old_english_sheepdog.n.01 +meadow_jumping_mouse.n.01 placental.n.01 +eastern_grey_squirrel.n.01 rodent.n.01 +long-eared_bat.n.01 bat.n.01 +spitz.n.01 mammal.n.01 +komondor.n.01 working_dog.n.01 +cave_myotis.n.01 cave_myotis.n.01 +chesapeake_bay_retriever.n.01 hunting_dog.n.01 +spider_monkey.n.01 new_world_monkey.n.01 +kit_fox.n.02 mammal.n.01 +urial.n.01 mammal.n.01 +silky_anteater.n.01 anteater.n.02 +big-eared_bat.n.01 false_vampire.n.01 +bovine.n.01 ungulate.n.01 +irish_setter.n.01 sporting_dog.n.01 +pangolin.n.01 mammal.n.01 +warthog.n.01 ungulate.n.01 +kangaroo_rat.n.01 mammal.n.01 +count_fleet.n.01 ungulate.n.01 +toy_poodle.n.01 poodle.n.01 +indian_buffalo.n.01 old_world_buffalo.n.01 +giant_panda.n.01 carnivore.n.01 +entellus.n.01 primate.n.02 +jackal.n.01 canine.n.02 +gelding.n.01 equine.n.01 +australopithecus_africanus.n.01 hominid.n.01 +coondog.n.01 canine.n.02 +taguan.n.01 squirrel.n.01 +horse.n.01 odd-toed_ungulate.n.01 +afghan_hound.n.01 hunting_dog.n.01 +mediterranean_water_shrew.n.01 mediterranean_water_shrew.n.01 +king_charles_spaniel.n.01 toy_dog.n.01 +mylodon.n.01 mammal.n.01 +arabian.n.02 placental.n.01 +spider_monkey.n.01 primate.n.02 +valley_pocket_gopher.n.01 mammal.n.01 +pomeranian.n.01 dog.n.01 +hereford.n.01 hereford.n.01 +bruin.n.01 carnivore.n.01 +gaur.n.01 bovid.n.01 +retriever.n.01 dog.n.01 +pacer.n.01 racehorse.n.01 +tasmanian_devil.n.01 mammal.n.01 +cinnamon_bear.n.01 mammal.n.01 +mouflon.n.01 mammal.n.01 +africander.n.01 bovine.n.01 +mudder.n.01 odd-toed_ungulate.n.01 +ferret.n.02 polecat.n.02 +water_vole.n.02 water_vole.n.02 +king_charles_spaniel.n.01 carnivore.n.01 +briard.n.01 mammal.n.01 +milking_shorthorn.n.01 bovine.n.01 +mare.n.01 ungulate.n.01 +cur.n.01 dog.n.01 +mountain_gorilla.n.01 mountain_gorilla.n.01 +pied_lemming.n.01 mammal.n.01 +wolfhound.n.01 hound.n.01 +pygmy_chimpanzee.n.01 pygmy_chimpanzee.n.01 +shetland_pony.n.01 ungulate.n.01 +whippet.n.01 mammal.n.01 +manchester_terrier.n.01 placental.n.01 +greater_swiss_mountain_dog.n.01 dog.n.01 +two-toed_sloth.n.02 two-toed_sloth.n.02 +domestic_goat.n.01 goat.n.01 +common_wallaby.n.01 metatherian.n.01 +eastern_grey_squirrel.n.01 squirrel.n.01 +american_saddle_horse.n.01 equine.n.01 +vicuna.n.03 placental.n.01 +grevy's_zebra.n.01 placental.n.01 +ermine.n.02 weasel.n.02 +jumping_mouse.n.01 rodent.n.01 +south_american_sea_lion.n.01 seal.n.09 +boskop_man.n.01 placental.n.01 +gayal.n.01 bovine.n.01 +seeing_eye_dog.n.01 dog.n.01 +aperea.n.01 mammal.n.01 +bay.n.07 equine.n.01 +shetland_pony.n.01 mammal.n.01 +quagga.n.01 odd-toed_ungulate.n.01 +brown_bat.n.01 placental.n.01 +hispid_pocket_mouse.n.01 rat.n.01 +komondor.n.01 shepherd_dog.n.01 +fur_seal.n.01 seal.n.09 +bullterrier.n.01 mammal.n.01 +greater_swiss_mountain_dog.n.01 sennenhunde.n.01 +miniature_poodle.n.01 miniature_poodle.n.01 +wood_mouse.n.01 placental.n.01 +american_mink.n.01 musteline_mammal.n.01 +opossum_rat.n.01 mammal.n.01 +persian_cat.n.01 cat.n.01 +pithecanthropus.n.01 primate.n.02 +saluki.n.01 hound.n.01 +bactrian_camel.n.01 ungulate.n.01 +packhorse.n.01 placental.n.01 +european_wildcat.n.01 cat.n.01 +aurochs.n.02 aurochs.n.02 +cat.n.01 feline.n.01 +devon.n.02 bovid.n.01 +homo_erectus.n.01 primate.n.02 +large_poodle.n.01 poodle.n.01 +gerenuk.n.01 ungulate.n.01 +chevrotain.n.01 even-toed_ungulate.n.01 +striped_muishond.n.01 carnivore.n.01 +shire.n.02 placental.n.01 +tamandua.n.01 edentate.n.01 +mouflon.n.01 wild_sheep.n.01 +bighorn.n.02 wild_sheep.n.01 +nilgai.n.01 even-toed_ungulate.n.01 +kid.n.05 goat.n.01 +toy_terrier.n.01 carnivore.n.01 +skye_terrier.n.01 canine.n.02 +killer_whale.n.01 whale.n.02 +red_squirrel.n.02 squirrel.n.01 +babirusa.n.01 babirusa.n.01 +western_chimpanzee.n.01 ape.n.01 +squirrel_monkey.n.01 placental.n.01 +water_dog.n.02 carnivore.n.01 +gemsbok.n.01 gemsbok.n.01 +lincoln.n.03 placental.n.01 +unguiculata.n.01 placental.n.01 +giant_armadillo.n.01 giant_armadillo.n.01 +palomino.n.01 palomino.n.01 +smiledon_californicus.n.01 smiledon_californicus.n.01 +ground_sloth.n.01 ground_sloth.n.01 +suslik.n.01 suslik.n.01 +scottish_deerhound.n.01 scottish_deerhound.n.01 +seeing_eye_dog.n.01 guide_dog.n.01 +long-eared_bat.n.01 long-eared_bat.n.01 +wisent.n.01 bison.n.01 +northern_pocket_gopher.n.01 mammal.n.01 +sealyham_terrier.n.01 canine.n.02 +ice_bear.n.01 placental.n.01 +talapoin.n.01 old_world_monkey.n.01 +mountain_zebra.n.01 mammal.n.01 +toy_dog.n.01 placental.n.01 +exmoor.n.01 exmoor.n.01 +bandicoot_rat.n.01 mammal.n.01 +smiledon_californicus.n.01 feline.n.01 +otterhound.n.01 placental.n.01 +java_man.n.01 placental.n.01 +atlantic_bottlenose_dolphin.n.01 placental.n.01 +wild_ass.n.01 mammal.n.01 +western_lowland_gorilla.n.01 western_lowland_gorilla.n.01 +hound.n.01 carnivore.n.01 +mylodontid.n.01 edentate.n.01 +raccoon.n.02 placental.n.01 +glutton.n.02 musteline_mammal.n.01 +pine_marten.n.01 mammal.n.01 +sausage_dog.n.01 dog.n.01 +bowhead.n.01 whale.n.02 +peking_man.n.01 homo.n.02 +toy_poodle.n.01 canine.n.02 +dik-dik.n.01 antelope.n.01 +hominoid.n.01 mammal.n.01 +peludo.n.01 mammal.n.01 +brush-tailed_phalanger.n.01 marsupial.n.01 +mouser.n.01 feline.n.01 +livestock.n.01 mammal.n.01 +plains_pocket_mouse.n.01 pocket_rat.n.01 +crab-eating_raccoon.n.01 placental.n.01 +spouter.n.03 whale.n.02 +hinny.n.01 ungulate.n.01 +barren_ground_caribou.n.01 mammal.n.01 +tailless_tenrec.n.01 insectivore.n.01 +angora.n.04 angora.n.04 +zebu.n.01 mammal.n.01 +workhorse.n.02 odd-toed_ungulate.n.01 +carabao.n.01 bovid.n.01 +abyssinian.n.01 placental.n.01 +tom.n.02 carnivore.n.01 +wirehair.n.01 carnivore.n.01 +brown_lemming.n.01 brown_lemming.n.01 +pariah_dog.n.01 mammal.n.01 +clumber.n.01 clumber.n.01 +sussex_spaniel.n.01 spaniel.n.01 +grasshopper_mouse.n.01 mammal.n.01 +hog_badger.n.01 carnivore.n.01 +asiatic_shrew_mole.n.01 placental.n.01 +stone_marten.n.01 mammal.n.01 +groundhog.n.01 groundhog.n.01 +western_chimpanzee.n.01 primate.n.02 +napu.n.01 ruminant.n.01 +heifer.n.01 ungulate.n.01 +malamute.n.01 dog.n.01 +western_pipistrel.n.01 vespertilian_bat.n.01 +sable.n.05 musteline_mammal.n.01 +palfrey.n.01 ungulate.n.01 +spotted_lynx.n.01 carnivore.n.01 +dwarf_sperm_whale.n.01 toothed_whale.n.01 +pomeranian.n.01 placental.n.01 +bighorn.n.02 mammal.n.01 +scottish_deerhound.n.01 canine.n.02 +tree_wallaby.n.01 wallaby.n.01 +shire.n.02 mammal.n.01 +eared_seal.n.01 pinniped_mammal.n.01 +blacktail_jackrabbit.n.01 jackrabbit.n.01 +griffon.n.03 carnivore.n.01 +viverrine.n.01 carnivore.n.01 +pentail.n.01 mammal.n.01 +homo_sapiens.n.01 homo_sapiens.n.01 +big-eared_bat.n.01 carnivorous_bat.n.01 +lemming.n.01 lemming.n.01 +pollard.n.02 pollard.n.02 +aberdeen_angus.n.01 aberdeen_angus.n.01 +hyena.n.01 hyena.n.01 +manx.n.02 carnivore.n.01 +sir_barton.n.01 placental.n.01 +schipperke.n.01 working_dog.n.01 +smiledon_californicus.n.01 saber-toothed_tiger.n.01 +civet.n.01 carnivore.n.01 +plow_horse.n.01 workhorse.n.02 +elephant.n.01 mammal.n.01 +pinche.n.01 monkey.n.01 +rhodesian_man.n.01 homo.n.02 +suslik.n.01 placental.n.01 +harbor_porpoise.n.01 mammal.n.01 +hyrax.n.01 placental.n.01 +scottish_deerhound.n.01 hunting_dog.n.01 +fossorial_mammal.n.01 fossorial_mammal.n.01 +percheron.n.01 draft_horse.n.01 +french_bulldog.n.01 french_bulldog.n.01 +borzoi.n.01 dog.n.01 +farm_horse.n.01 workhorse.n.02 +valley_pocket_gopher.n.01 gopher.n.04 +addax.n.01 ruminant.n.01 +aberdeen_angus.n.01 bovid.n.01 +puku.n.01 antelope.n.01 +sable_antelope.n.01 antelope.n.01 +new_world_porcupine.n.01 porcupine.n.01 +lesser_kudu.n.01 antelope.n.01 +spaniel.n.01 placental.n.01 +sennenhunde.n.01 mammal.n.01 +canada_porcupine.n.01 rodent.n.01 +omaha.n.04 thoroughbred.n.02 +papillon.n.01 dog.n.01 +wether.n.01 mammal.n.01 +sausage_dog.n.01 canine.n.02 +toy_poodle.n.01 dog.n.01 +marsh_hare.n.01 placental.n.01 +right_whale.n.01 baleen_whale.n.01 +valley_pocket_gopher.n.01 rodent.n.01 +southeastern_pocket_gopher.n.01 gopher.n.04 +irish_terrier.n.01 canine.n.02 +pygmy_marmoset.n.01 marmoset.n.01 +porpoise.n.01 toothed_whale.n.01 +black-and-tan_coonhound.n.01 carnivore.n.01 +arabian_camel.n.01 ungulate.n.01 +antelope_squirrel.n.01 mammal.n.01 +beagle.n.01 placental.n.01 +australopithecine.n.01 hominid.n.01 +dormouse.n.01 rodent.n.01 +tortoiseshell.n.03 carnivore.n.01 +exmoor.n.01 domestic_sheep.n.01 +milking_shorthorn.n.01 ungulate.n.01 +onager.n.02 mammal.n.01 +south_american_sea_lion.n.01 pinniped_mammal.n.01 +leafnose_bat.n.01 leafnose_bat.n.01 +charger.n.01 mammal.n.01 +quarter_horse.n.01 quarter_horse.n.01 +sand_rat.n.01 sand_rat.n.01 +basset.n.01 mammal.n.01 +new_world_tapir.n.01 odd-toed_ungulate.n.01 +jaguarundi.n.01 mammal.n.01 +coyote.n.01 placental.n.01 +american_red_squirrel.n.01 squirrel.n.01 +miniature_schnauzer.n.01 schnauzer.n.01 +hedgehog.n.02 mammal.n.01 +woolly_mammoth.n.01 mammal.n.01 +cob.n.02 ungulate.n.01 +rottweiler.n.01 dog.n.01 +otterhound.n.01 hound.n.01 +fisher.n.02 fisher.n.02 +buckskin.n.01 odd-toed_ungulate.n.01 +kangaroo.n.01 kangaroo.n.01 +lesser_ape.n.01 placental.n.01 +roebuck.n.01 ruminant.n.01 +black-and-tan_coonhound.n.01 placental.n.01 +yearling.n.03 mammal.n.01 +pteropus_capestratus.n.01 mammal.n.01 +secretariat.n.02 thoroughbred.n.02 +pony.n.05 horse.n.01 +shire.n.02 horse.n.01 +tibetan_mastiff.n.01 mammal.n.01 +tortoiseshell.n.03 domestic_cat.n.01 +rat_kangaroo.n.01 rat_kangaroo.n.01 +cetacean.n.01 mammal.n.01 +gordon_setter.n.01 gordon_setter.n.01 +labrador_retriever.n.01 carnivore.n.01 +american_foxhound.n.01 foxhound.n.01 +asian_wild_ox.n.01 bovid.n.01 +jerboa_rat.n.01 mammal.n.01 +kelpie.n.02 mammal.n.01 +pole_horse.n.02 draft_horse.n.01 +bull.n.01 bovine.n.01 +tamarisk_gerbil.n.01 rodent.n.01 +packhorse.n.01 workhorse.n.02 +kob.n.01 antelope.n.01 +mole.n.06 placental.n.01 +guenon.n.01 placental.n.01 +beagle.n.01 dog.n.01 +baronduki.n.01 squirrel.n.01 +brood_bitch.n.01 mammal.n.01 +sled_dog.n.01 canine.n.02 +sloth_bear.n.01 sloth_bear.n.01 +griffon.n.02 carnivore.n.01 +guano_bat.n.01 mammal.n.01 +bighorn.n.02 even-toed_ungulate.n.01 +sable.n.05 placental.n.01 +cheviot.n.01 placental.n.01 +deer.n.01 even-toed_ungulate.n.01 +lesser_kudu.n.01 bovid.n.01 +stablemate.n.01 mammal.n.01 +common_lynx.n.01 carnivore.n.01 +sassaby.n.01 ungulate.n.01 +bulldog.n.01 mammal.n.01 +spotted_lynx.n.01 feline.n.01 +three-toed_sloth.n.01 sloth.n.02 +swamp_rabbit.n.02 swamp_rabbit.n.02 +samoyed.n.03 dog.n.01 +forest_goat.n.01 forest_goat.n.01 +muntjac.n.01 even-toed_ungulate.n.01 +paca.n.01 paca.n.01 +long-eared_bat.n.01 placental.n.01 +ape.n.01 primate.n.02 +broodmare.n.01 mare.n.01 +zebu.n.01 even-toed_ungulate.n.01 +aoudad.n.01 bovid.n.01 +smooth-haired_fox_terrier.n.01 fox_terrier.n.01 +lechwe.n.01 waterbuck.n.01 +tabby.n.02 placental.n.01 +weimaraner.n.01 dog.n.01 +gib.n.02 placental.n.01 +broodmare.n.01 mammal.n.01 +mountain_gorilla.n.01 great_ape.n.01 +angora.n.02 ruminant.n.01 +brush-tailed_porcupine.n.01 rodent.n.01 +australopithecus_africanus.n.01 placental.n.01 +bonnet_macaque.n.01 old_world_monkey.n.01 +pygmy_chimpanzee.n.01 ape.n.01 +echidna.n.01 monotreme.n.01 +pacer.n.02 mammal.n.01 +trotting_horse.n.01 placental.n.01 +old_english_sheepdog.n.01 canine.n.02 +scotch_terrier.n.01 hunting_dog.n.01 +wheel_horse.n.01 wheel_horse.n.01 +woolly_indris.n.01 lemur.n.01 +eurasian_hamster.n.01 eurasian_hamster.n.01 +dachshund.n.01 placental.n.01 +cheetah.n.01 mammal.n.01 +tailless_tenrec.n.01 tailless_tenrec.n.01 +arctic_fox.n.01 mammal.n.01 +jack.n.12 mammal.n.01 +tom.n.02 tom.n.02 +english_springer.n.01 canine.n.02 +rabbit_ears.n.02 placental.n.01 +eurasian_badger.n.01 mammal.n.01 +norwegian_elkhound.n.01 canine.n.02 +guadalupe_fur_seal.n.01 pinniped_mammal.n.01 +red_squirrel.n.02 rodent.n.01 +southern_flying_squirrel.n.01 squirrel.n.01 +california_sea_lion.n.01 pinniped_mammal.n.01 +aye-aye.n.01 lemur.n.01 +red_bat.n.01 carnivorous_bat.n.01 +citation.n.06 odd-toed_ungulate.n.01 +liver-spotted_dalmatian.n.01 carnivore.n.01 +longhorn.n.01 placental.n.01 +longwool.n.01 sheep.n.01 +mountain_paca.n.01 mountain_paca.n.01 +steed.n.01 horse.n.01 +entlebucher.n.01 placental.n.01 +tabby.n.01 cat.n.01 +atlantic_bottlenose_dolphin.n.01 bottlenose_dolphin.n.01 +rhesus.n.01 macaque.n.01 +bovine.n.01 placental.n.01 +bernese_mountain_dog.n.01 mammal.n.01 +collared_peccary.n.01 mammal.n.01 +crowbait.n.01 equine.n.01 +attack_dog.n.01 attack_dog.n.01 +old_world_monkey.n.01 mammal.n.01 +ungulata.n.01 ungulata.n.01 +hog_badger.n.01 musteline_mammal.n.01 +lagomorph.n.01 mammal.n.01 +coonhound.n.01 mammal.n.01 +liver-spotted_dalmatian.n.01 mammal.n.01 +takin.n.01 even-toed_ungulate.n.01 +cynopterus_sphinx.n.01 placental.n.01 +ord_kangaroo_rat.n.01 mammal.n.01 +chihuahua.n.03 toy_dog.n.01 +common_lynx.n.01 mammal.n.01 +dinocerate.n.01 ungulate.n.01 +indian_buffalo.n.01 even-toed_ungulate.n.01 +boarhound.n.01 canine.n.02 +dark_horse.n.02 mammal.n.01 +pointer.n.04 carnivore.n.01 +west_highland_white_terrier.n.01 dog.n.01 +afghan_hound.n.01 dog.n.01 +lippizan.n.01 ungulate.n.01 +red_wolf.n.01 mammal.n.01 +southeastern_pocket_gopher.n.01 placental.n.01 +australopithecus_boisei.n.01 mammal.n.01 +common_eland.n.01 bovid.n.01 +wildcat.n.03 cat.n.01 +arabian_camel.n.01 mammal.n.01 +polecat.n.02 musteline_mammal.n.01 +big-eared_bat.n.01 bat.n.01 +bovid.n.01 even-toed_ungulate.n.01 +guide_dog.n.01 canine.n.02 +hyena.n.01 placental.n.01 +longtail_weasel.n.01 mammal.n.01 +chamois.n.02 placental.n.01 +striped_hyena.n.01 canine.n.02 +pocketed_bat.n.01 mammal.n.01 +attack_dog.n.01 dog.n.01 +leopard_cat.n.01 wildcat.n.03 +cotswold.n.01 placental.n.01 +pine_marten.n.01 placental.n.01 +hominoid.n.01 placental.n.01 +suricate.n.01 meerkat.n.01 +stirk.n.01 ungulate.n.01 +mediterranean_water_shrew.n.01 water_shrew.n.01 +rice_rat.n.01 rice_rat.n.01 +homo_erectus.n.01 homo.n.02 +sea_otter.n.01 carnivore.n.01 +indian_mongoose.n.01 carnivore.n.01 +banded_palm_civet.n.01 civet.n.01 +cape_buffalo.n.01 ruminant.n.01 +razorback.n.01 mammal.n.01 +sow.n.01 even-toed_ungulate.n.01 +mountain_zebra.n.01 placental.n.01 +hunting_dog.n.01 dog.n.01 +proconsul.n.03 proconsul.n.03 +mylodon.n.01 mylodon.n.01 +slender-tailed_meerkat.n.01 meerkat.n.01 +sambar.n.01 deer.n.01 +hog-nosed_skunk.n.01 carnivore.n.01 +rock_wallaby.n.01 wallaby.n.01 +mountain_nyala.n.01 mountain_nyala.n.01 +polo_pony.n.01 equine.n.01 +ox.n.02 bovine.n.01 +wood_rabbit.n.01 leporid.n.01 +lippizan.n.01 lippizan.n.01 +sir_barton.n.01 thoroughbred.n.02 +burmese_cat.n.01 domestic_cat.n.01 +burro.n.01 burro.n.01 +angwantibo.n.01 primate.n.02 +miniature_pinscher.n.01 working_dog.n.01 +sporting_dog.n.01 sporting_dog.n.01 +blue_whale.n.01 aquatic_mammal.n.01 +australopithecus_africanus.n.01 australopithecine.n.01 +sealyham_terrier.n.01 mammal.n.01 +simian.n.01 primate.n.02 +pine_marten.n.01 carnivore.n.01 +fox_terrier.n.01 carnivore.n.01 +mandrill.n.01 old_world_monkey.n.01 +steller's_sea_cow.n.01 mammal.n.01 +opossum.n.02 mammal.n.01 +shetland_sheepdog.n.01 shepherd_dog.n.01 +california_sea_lion.n.01 sea_lion.n.01 +silverback.n.01 ape.n.01 +old_world_buffalo.n.01 mammal.n.01 +snowshoe_hare.n.01 mammal.n.01 +brown_swiss.n.01 even-toed_ungulate.n.01 +urial.n.01 even-toed_ungulate.n.01 +rat_terrier.n.01 carnivore.n.01 +afghan_hound.n.01 carnivore.n.01 +tarpan.n.01 ungulate.n.01 +snow_leopard.n.01 feline.n.01 +hack.n.08 equine.n.01 +hog_badger.n.01 badger.n.02 +west_highland_white_terrier.n.01 canine.n.02 +muntjac.n.01 ungulate.n.01 +palfrey.n.01 saddle_horse.n.01 +otterhound.n.01 carnivore.n.01 +arctic_ground_squirrel.n.01 placental.n.01 +alaska_fur_seal.n.01 eared_seal.n.01 +irish_water_spaniel.n.01 placental.n.01 +golden_retriever.n.01 mammal.n.01 +shepherd_dog.n.01 dog.n.01 +kudu.n.01 antelope.n.01 +golden_retriever.n.01 dog.n.01 +eastern_pipistrel.n.01 vespertilian_bat.n.01 +macrotus.n.01 placental.n.01 +borzoi.n.01 carnivore.n.01 +jackass_bat.n.01 carnivorous_bat.n.01 +chesapeake_bay_retriever.n.01 carnivore.n.01 +common_dolphin.n.01 toothed_whale.n.01 +south_american_sea_lion.n.01 sea_lion.n.01 +welsh.n.03 mammal.n.01 +goat.n.01 ungulate.n.01 +anoa.n.01 old_world_buffalo.n.01 +roan.n.02 odd-toed_ungulate.n.01 +guadalupe_fur_seal.n.01 guadalupe_fur_seal.n.01 +round-tailed_muskrat.n.01 rodent.n.01 +burmese_cat.n.01 mammal.n.01 +hudson_bay_collared_lemming.n.01 lemming.n.01 +drill.n.02 primate.n.02 +springer.n.02 bovine.n.01 +bettong.n.01 bettong.n.01 +african_wild_ass.n.01 african_wild_ass.n.01 +persian_cat.n.01 feline.n.01 +affirmed.n.01 ungulate.n.01 +american_flying_squirrel.n.01 placental.n.01 +ichneumon.n.01 ichneumon.n.01 +western_chimpanzee.n.01 western_chimpanzee.n.01 +courser.n.03 courser.n.03 +european_wildcat.n.01 placental.n.01 +great_pyrenees.n.01 carnivore.n.01 +shetland_sheepdog.n.01 shetland_sheepdog.n.01 +mule_deer.n.01 ruminant.n.01 +groundhog.n.01 marmot.n.01 +redbone.n.01 hunting_dog.n.01 +sassaby.n.01 placental.n.01 +nanny.n.02 goat.n.01 +flickertail.n.01 mammal.n.01 +milking_shorthorn.n.01 dairy_cattle.n.01 +farm_horse.n.01 placental.n.01 +springer_spaniel.n.01 mammal.n.01 +musk_ox.n.01 mammal.n.01 +thoroughbred.n.02 odd-toed_ungulate.n.01 +water_vole.n.02 placental.n.01 +striped_skunk.n.01 musteline_mammal.n.01 +black_sheep.n.02 ruminant.n.01 +fur_seal.n.01 eared_seal.n.01 +puku.n.01 mammal.n.01 +crab-eating_dog.n.01 wild_dog.n.01 +bobcat.n.01 feline.n.01 +green_monkey.n.01 mammal.n.01 +earless_seal.n.01 mammal.n.01 +marco_polo_sheep.n.01 placental.n.01 +chiacoan_peccary.n.01 even-toed_ungulate.n.01 +sand_rat.n.02 mammal.n.01 +phenacomys.n.01 placental.n.01 +carnivorous_bat.n.01 bat.n.01 +okapi.n.01 mammal.n.01 +shetland_sheepdog.n.01 working_dog.n.01 +seattle_slew.n.01 placental.n.01 +rabbit_ears.n.02 leporid.n.01 +false_saber-toothed_tiger.n.01 placental.n.01 +bull.n.01 even-toed_ungulate.n.01 +domestic_cat.n.01 feline.n.01 +clydesdale_terrier.n.01 skye_terrier.n.01 +gayal.n.01 even-toed_ungulate.n.01 +brown_bat.n.01 bat.n.01 +spouter.n.03 placental.n.01 +livestock.n.01 livestock.n.01 +harp_seal.n.01 harp_seal.n.01 +pooch.n.01 mammal.n.01 +seizure-alert_dog.n.01 carnivore.n.01 +pocket_mouse.n.01 mammal.n.01 +jerboa.n.01 placental.n.01 +australopithecus_afarensis.n.01 hominid.n.01 +mudder.n.01 horse.n.01 +alaskan_brown_bear.n.01 bear.n.01 +european_wildcat.n.01 mammal.n.01 +brush-tailed_phalanger.n.01 brush-tailed_phalanger.n.01 +cow_pony.n.01 saddle_horse.n.01 +cougar.n.01 feline.n.01 +bovid.n.01 ungulate.n.01 +naked_mole_rat.n.01 fossorial_mammal.n.01 +coyote.n.01 coyote.n.01 +domestic_ass.n.01 ass.n.03 +wild_goat.n.01 placental.n.01 +binturong.n.01 placental.n.01 +western_big-eared_bat.n.01 western_big-eared_bat.n.01 +little_brown_bat.n.01 carnivorous_bat.n.01 +thomson's_gazelle.n.01 ungulate.n.01 +jerboa_kangaroo.n.01 marsupial.n.01 +atlantic_bottlenose_dolphin.n.01 cetacean.n.01 +woolly_indris.n.01 primate.n.02 +ox.n.01 bovid.n.01 +setter.n.02 placental.n.01 +grizzly.n.01 placental.n.01 +babirusa.n.01 even-toed_ungulate.n.01 +deer_mouse.n.01 rodent.n.01 +western_lowland_gorilla.n.01 ape.n.01 +lakeland_terrier.n.01 wirehair.n.01 +bengal_tiger.n.01 mammal.n.01 +horseshoe_bat.n.02 mammal.n.01 +gordon_setter.n.01 dog.n.01 +racehorse.n.01 odd-toed_ungulate.n.01 +blue_fox.n.01 carnivore.n.01 +pygmy_sperm_whale.n.01 placental.n.01 +even-toed_ungulate.n.01 placental.n.01 +homo_sapiens.n.01 hominid.n.01 +crab-eating_opossum.n.01 opossum.n.02 +colobus.n.01 colobus.n.01 +gerenuk.n.01 even-toed_ungulate.n.01 +bovid.n.01 ruminant.n.01 +leonberg.n.01 mammal.n.01 +water_vole.n.01 mammal.n.01 +irish_setter.n.01 setter.n.02 +marsh_hare.n.01 wood_rabbit.n.01 +seal.n.09 placental.n.01 +rhesus.n.01 primate.n.02 +beagle.n.01 hunting_dog.n.01 +heifer.n.01 heifer.n.01 +wood_mouse.n.01 rodent.n.01 +toy_spaniel.n.01 placental.n.01 +brabancon_griffon.n.01 griffon.n.02 +mangabey.n.01 mammal.n.01 +peludo.n.01 armadillo.n.01 +paranthropus.n.01 hominid.n.01 +lioness.n.01 mammal.n.01 +tree_wallaby.n.01 marsupial.n.01 +aberdeen_angus.n.01 cattle.n.01 +silky_terrier.n.01 canine.n.02 +unguiculate.n.01 unguiculate.n.01 +shih-tzu.n.01 carnivore.n.01 +abrocome.n.01 placental.n.01 +eastern_grey_squirrel.n.01 tree_squirrel.n.01 +ibex.n.01 ibex.n.01 +barbary_ape.n.01 barbary_ape.n.01 +mole_rat.n.02 mole_rat.n.02 +ox.n.02 mammal.n.01 +western_big-eared_bat.n.01 placental.n.01 +rhesus.n.01 mammal.n.01 +kuvasz.n.01 mammal.n.01 +sand_rat.n.02 placental.n.01 +sled_dog.n.01 placental.n.01 +pony.n.02 mammal.n.01 +west_highland_white_terrier.n.01 carnivore.n.01 +bitch.n.04 mammal.n.01 +hearing_dog.n.01 working_dog.n.01 +eohippus.n.01 odd-toed_ungulate.n.01 +false_saber-toothed_tiger.n.01 saber-toothed_tiger.n.01 +roe_deer.n.01 ruminant.n.01 +border_terrier.n.01 carnivore.n.01 +wild_goat.n.01 ruminant.n.01 +airedale.n.01 dog.n.01 +count_fleet.n.01 mammal.n.01 +malinois.n.01 dog.n.01 +mastiff.n.01 placental.n.01 +plow_horse.n.01 mammal.n.01 +guernsey.n.02 ungulate.n.01 +coach_horse.n.01 equine.n.01 +chamois.n.02 ungulate.n.01 +coondog.n.01 mammal.n.01 +appaloosa.n.01 mammal.n.01 +housedog.n.01 working_dog.n.01 +spotted_lynx.n.01 lynx.n.02 +domestic_sheep.n.01 ruminant.n.01 +small_civet.n.01 civet.n.01 +warthog.n.01 warthog.n.01 +gazelle.n.01 ungulate.n.01 +collie.n.01 placental.n.01 +roan.n.02 roan.n.02 +hart.n.03 ungulate.n.01 +briard.n.01 working_dog.n.01 +tiger.n.02 feline.n.01 +miniature_pinscher.n.01 canine.n.02 +pipistrelle.n.01 pipistrelle.n.01 +river_otter.n.01 mammal.n.01 +napu.n.01 napu.n.01 +redbone.n.01 redbone.n.01 +otter.n.02 otter.n.02 +dugong.n.01 mammal.n.01 +tarsier.n.01 primate.n.02 +alley_cat.n.01 domestic_cat.n.01 +northern_pocket_gopher.n.01 rodent.n.01 +african_wild_ass.n.01 ass.n.03 +sled_dog.n.01 dog.n.01 +columbian_mammoth.n.01 mammal.n.01 +plow_horse.n.01 odd-toed_ungulate.n.01 +european_water_shrew.n.01 shrew.n.02 +milking_shorthorn.n.01 even-toed_ungulate.n.01 +anteater.n.02 mammal.n.01 +standard_poodle.n.01 poodle.n.01 +great_pyrenees.n.01 canine.n.02 +tamandua.n.01 placental.n.01 +grade.n.09 grade.n.09 +harbor_porpoise.n.01 placental.n.01 +right_whale.n.01 whale.n.02 +crab-eating_dog.n.01 canine.n.02 +muntjac.n.01 ruminant.n.01 +tiglon.n.01 mammal.n.01 +cotton_rat.n.01 mammal.n.01 +ibex.n.01 ungulate.n.01 +california_sea_lion.n.01 seal.n.09 +rhodesian_man.n.01 hominid.n.01 +bezoar_goat.n.01 placental.n.01 +stone_marten.n.01 marten.n.01 +exmoor.n.01 placental.n.01 +monkey.n.01 monkey.n.01 +pricket.n.02 deer.n.01 +field_mouse.n.02 field_mouse.n.02 +western_chimpanzee.n.01 anthropoid_ape.n.01 +pithecanthropus.n.01 mammal.n.01 +kaffir_cat.n.01 feline.n.01 +broadtail.n.02 ungulate.n.01 +siberian_husky.n.01 canine.n.02 +hamster.n.01 hamster.n.01 +wild_horse.n.01 placental.n.01 +harbor_porpoise.n.01 aquatic_mammal.n.01 +liver-spotted_dalmatian.n.01 canine.n.02 +rabbit_ears.n.02 rabbit_ears.n.02 +belgian_sheepdog.n.01 belgian_sheepdog.n.01 +aurochs.n.02 bovine.n.01 +drill.n.02 mammal.n.01 +hog-nosed_skunk.n.01 placental.n.01 +assault.n.03 mammal.n.01 +harnessed_antelope.n.01 ungulate.n.01 +aperea.n.01 rodent.n.01 +ewe.n.03 bovid.n.01 +drill.n.02 old_world_monkey.n.01 +racehorse.n.01 mammal.n.01 +pony.n.01 equine.n.01 +toy_manchester.n.01 terrier.n.01 +pocket_mouse.n.01 pocket_mouse.n.01 +abyssinian.n.01 cat.n.01 +kudu.n.01 even-toed_ungulate.n.01 +cat.n.01 mammal.n.01 +green_monkey.n.01 green_monkey.n.01 +gazella_subgutturosa.n.01 ungulate.n.01 +wild_sheep.n.01 mammal.n.01 +affenpinscher.n.01 dog.n.01 +musk_deer.n.01 mammal.n.01 +barren_ground_caribou.n.01 deer.n.01 +mangabey.n.01 mangabey.n.01 +cavy.n.01 placental.n.01 +tiger_cat.n.01 feline.n.01 +bulldog.n.01 bulldog.n.01 +hereford.n.01 placental.n.01 +japanese_deer.n.01 placental.n.01 +norfolk_terrier.n.01 hunting_dog.n.01 +citation.n.06 equine.n.01 +tree_squirrel.n.01 squirrel.n.01 +jennet.n.01 ass.n.03 +whippet.n.01 hunting_dog.n.01 +packhorse.n.01 ungulate.n.01 +phenacomys.n.01 rodent.n.01 +domestic_sheep.n.01 even-toed_ungulate.n.01 +gordon_setter.n.01 hunting_dog.n.01 +humpback.n.03 placental.n.01 +serval.n.01 feline.n.01 +water_chevrotain.n.01 chevrotain.n.01 +wire-haired_fox_terrier.n.01 dog.n.01 +saki.n.03 new_world_monkey.n.01 +old_world_porcupine.n.01 rodent.n.01 +hart.n.03 mammal.n.01 +hognose_bat.n.01 placental.n.01 +boar.n.02 even-toed_ungulate.n.01 +water_spaniel.n.01 spaniel.n.01 +nanny.n.02 even-toed_ungulate.n.01 +frosted_bat.n.01 frosted_bat.n.01 +kit_fox.n.02 kit_fox.n.02 +fox_squirrel.n.01 fox_squirrel.n.01 +borzoi.n.01 hound.n.01 +sporting_dog.n.01 canine.n.02 +vicuna.n.03 even-toed_ungulate.n.01 +great_ape.n.01 anthropoid_ape.n.01 +bearded_seal.n.01 bearded_seal.n.01 +southern_bog_lemming.n.01 lemming.n.01 +barbary_ape.n.01 primate.n.02 +groenendael.n.01 dog.n.01 +two-toed_sloth.n.01 placental.n.01 +rambouillet.n.01 mammal.n.01 +pole_horse.n.01 mammal.n.01 +common_eland.n.01 ungulate.n.01 +cape_buffalo.n.01 placental.n.01 +labrador_retriever.n.01 sporting_dog.n.01 +chesapeake_bay_retriever.n.01 placental.n.01 +swamp_rabbit.n.02 lagomorph.n.01 +pembroke.n.01 mammal.n.01 +pygmy_mouse.n.01 rodent.n.01 +eland.n.01 antelope.n.01 +mare.n.01 placental.n.01 +armadillo.n.01 mammal.n.01 +springbok.n.01 placental.n.01 +bruin.n.01 mammal.n.01 +indian_rhinoceros.n.01 placental.n.01 +sealyham_terrier.n.01 placental.n.01 +ox.n.01 placental.n.01 +greater_kudu.n.01 placental.n.01 +eurasian_otter.n.01 eurasian_otter.n.01 +saber-toothed_tiger.n.01 saber-toothed_tiger.n.01 +charger.n.01 saddle_horse.n.01 +wheel_horse.n.01 odd-toed_ungulate.n.01 +steller_sea_lion.n.01 seal.n.09 +lakeland_terrier.n.01 dog.n.01 +brown_swiss.n.01 bovine.n.01 +peludo.n.01 peludo.n.01 +pine_marten.n.01 pine_marten.n.01 +hominoid.n.01 hominoid.n.01 +javanthropus.n.01 primate.n.02 +prancer.n.01 equine.n.01 +giant_kangaroo.n.01 marsupial.n.01 +american_water_spaniel.n.01 water_spaniel.n.01 +mountain_sheep.n.01 ruminant.n.01 +bushbuck.n.01 ruminant.n.01 +river_otter.n.01 carnivore.n.01 +yearling.n.03 placental.n.01 +pteropus_capestratus.n.01 placental.n.01 +warrigal.n.01 odd-toed_ungulate.n.01 +springbok.n.01 gazelle.n.01 +fruit_bat.n.01 placental.n.01 +charolais.n.01 placental.n.01 +harvest_mouse.n.02 rodent.n.01 +grivet.n.01 grivet.n.01 +wild_goat.n.01 wild_goat.n.01 +western_chimpanzee.n.01 chimpanzee.n.01 +coondog.n.01 coonhound.n.01 +vampire_bat.n.01 bat.n.01 +vole.n.01 placental.n.01 +smooth-haired_fox_terrier.n.01 terrier.n.01 +kid.n.05 even-toed_ungulate.n.01 +palomino.n.01 ungulate.n.01 +groenendael.n.01 placental.n.01 +dachshund.n.01 mammal.n.01 +pomeranian.n.01 mammal.n.01 +bighorn.n.02 placental.n.01 +goat_antelope.n.01 ungulate.n.01 +red_squirrel.n.02 mammal.n.01 +border_collie.n.01 placental.n.01 +guereza.n.01 placental.n.01 +miniature_pinscher.n.01 carnivore.n.01 +bear_cub.n.01 bear_cub.n.01 +chow.n.03 carnivore.n.01 +dasyurid_marsupial.n.01 metatherian.n.01 +red_poll.n.01 even-toed_ungulate.n.01 +red_fox.n.03 placental.n.01 +guadalupe_fur_seal.n.01 fur_seal.n.02 +american_bison.n.01 ungulate.n.01 +gallant_fox.n.01 odd-toed_ungulate.n.01 +chesapeake_bay_retriever.n.01 canine.n.02 +red_wolf.n.01 placental.n.01 +bear_cub.n.01 mammal.n.01 +gnu.n.01 placental.n.01 +golden_hamster.n.01 hamster.n.01 +slow_loris.n.01 placental.n.01 +dalmatian.n.02 canine.n.02 +bullock.n.02 bovine.n.01 +irish_water_spaniel.n.01 canine.n.02 +vespertilian_bat.n.01 carnivorous_bat.n.01 +ram.n.05 ungulate.n.01 +cougar.n.01 wildcat.n.03 +black_fox.n.01 canine.n.02 +macaque.n.01 primate.n.02 +dhole.n.01 dhole.n.01 +steeplechaser.n.01 ungulate.n.01 +rhinoceros.n.01 mammal.n.01 +squirrel_monkey.n.01 monkey.n.01 +bouvier_des_flandres.n.01 mammal.n.01 +post_horse.n.01 odd-toed_ungulate.n.01 +giant_panda.n.01 mammal.n.01 +old_world_monkey.n.01 placental.n.01 +sand_rat.n.02 gerbil.n.01 +brown_rat.n.01 rodent.n.01 +typical_jerboa.n.01 rodent.n.01 +true_marmoset.n.01 primate.n.02 +bulldog.n.01 canine.n.02 +bettong.n.01 rat_kangaroo.n.01 +charolais.n.01 mammal.n.01 +alley_cat.n.01 carnivore.n.01 +manatee.n.01 sea_cow.n.01 +hampshire.n.02 placental.n.01 +zoril.n.01 weasel.n.02 +leonberg.n.01 carnivore.n.01 +dall_sheep.n.01 ungulate.n.01 +count_fleet.n.01 horse.n.01 +jaguarundi.n.01 cat.n.01 +black_sheep.n.02 mammal.n.01 +old_world_least_weasel.n.01 old_world_least_weasel.n.01 +elephant_seal.n.01 pinniped_mammal.n.01 +cheviot.n.01 domestic_sheep.n.01 +sausage_dog.n.01 placental.n.01 +bottle-nosed_whale.n.01 aquatic_mammal.n.01 +forest_goat.n.01 ruminant.n.01 +lincoln.n.03 bovid.n.01 +toy_manchester.n.01 rat_terrier.n.01 +southeastern_pocket_gopher.n.01 rodent.n.01 +cinnamon_bear.n.01 carnivore.n.01 +bullterrier.n.01 dog.n.01 +harrier.n.02 mammal.n.01 +bulldog.n.01 working_dog.n.01 +yak.n.02 placental.n.01 +tenrec.n.01 placental.n.01 +cro-magnon.n.01 cro-magnon.n.01 +red_deer.n.01 placental.n.01 +jackal.n.01 jackal.n.01 +meadow_jumping_mouse.n.01 mammal.n.01 +reynard.n.01 carnivore.n.01 +pichiciago.n.01 placental.n.01 +workhorse.n.02 workhorse.n.02 +norwich_terrier.n.01 norwich_terrier.n.01 +jungle_cat.n.01 wildcat.n.03 +least_shrew.n.01 mammal.n.01 +plott_hound.n.01 mammal.n.01 +jerboa_rat.n.01 rodent.n.01 +lemming.n.01 placental.n.01 +harnessed_antelope.n.01 mammal.n.01 +african_hunting_dog.n.01 mammal.n.01 +polo_pony.n.01 horse.n.01 +toy_spaniel.n.01 canine.n.02 +collared_peccary.n.01 peccary.n.01 +clydesdale.n.01 workhorse.n.02 +suricate.n.01 mammal.n.01 +bloodhound.n.01 mammal.n.01 +packhorse.n.01 horse.n.01 +male_horse.n.01 horse.n.01 +baboon.n.01 baboon.n.01 +brown_rat.n.01 rat.n.01 +platypus.n.01 prototherian.n.01 +plains_pocket_gopher.n.01 rodent.n.01 +leveret.n.01 leveret.n.01 +reynard.n.01 placental.n.01 +antelope_squirrel.n.01 placental.n.01 +ocelot.n.01 wildcat.n.03 +australopithecus_boisei.n.01 primate.n.02 +bezoar_goat.n.01 wild_goat.n.01 +hog-nosed_skunk.n.01 musteline_mammal.n.01 +great_ape.n.01 great_ape.n.01 +virginia_deer.n.01 ruminant.n.01 +pollard.n.02 ungulate.n.01 +merino.n.01 placental.n.01 +steller's_sea_cow.n.01 steller's_sea_cow.n.01 +working_dog.n.01 working_dog.n.01 +homo_habilis.n.01 mammal.n.01 +addax.n.01 mammal.n.01 +brown_hyena.n.01 canine.n.02 +wether.n.01 bovid.n.01 +serval.n.01 serval.n.01 +airedale.n.01 mammal.n.01 +cheetah.n.01 big_cat.n.01 +antelope_squirrel.n.01 rodent.n.01 +skye_terrier.n.01 hunting_dog.n.01 +groenendael.n.01 shepherd_dog.n.01 +dugong.n.01 dugong.n.01 +baleen_whale.n.01 baleen_whale.n.01 +burro.n.01 mammal.n.01 +malayan_tapir.n.01 placental.n.01 +bobcat.n.01 cat.n.01 +citation.n.06 mammal.n.01 +irish_setter.n.01 mammal.n.01 +tiglon.n.01 tiglon.n.01 +japanese_deer.n.01 japanese_deer.n.01 +gee-gee.n.01 equine.n.01 +devon.n.02 ungulate.n.01 +smiledon_californicus.n.01 big_cat.n.01 +harrier.n.02 hunting_dog.n.01 +american_shrew_mole.n.01 shrew_mole.n.01 +wolf.n.01 wolf.n.01 +mesohippus.n.01 mesohippus.n.01 +yellowbelly_marmot.n.01 yellowbelly_marmot.n.01 +guide_dog.n.01 guide_dog.n.01 +farm_horse.n.01 farm_horse.n.01 +samoyed.n.03 placental.n.01 +galloway.n.02 placental.n.01 +vixen.n.02 placental.n.01 +water_dog.n.02 mammal.n.01 +rhinoceros.n.01 placental.n.01 +old_world_beaver.n.01 beaver.n.07 +cur.n.01 carnivore.n.01 +brush-tailed_phalanger.n.01 metatherian.n.01 +attack_dog.n.01 working_dog.n.01 +jerboa_kangaroo.n.01 rat_kangaroo.n.01 +dusky-footed_woodrat.n.01 placental.n.01 +hack.n.08 odd-toed_ungulate.n.01 +boskop_man.n.01 homo.n.02 +new_world_least_weasel.n.01 weasel.n.02 +polar_hare.n.01 mammal.n.01 +megatherian.n.01 mammal.n.01 +homo_habilis.n.01 homo.n.02 +canine.n.02 placental.n.01 +eastern_chipmunk.n.01 mammal.n.01 +western_pipistrel.n.01 bat.n.01 +draft_horse.n.01 horse.n.01 +gelding.n.01 placental.n.01 +homo_sapiens_sapiens.n.01 placental.n.01 +beaked_whale.n.01 whale.n.02 +lesser_ape.n.01 lesser_ape.n.01 +standard_schnauzer.n.01 dog.n.01 +spearnose_bat.n.01 spearnose_bat.n.01 +american_saddle_horse.n.01 saddle_horse.n.01 +caribou.n.01 deer.n.01 +grison.n.01 placental.n.01 +stirk.n.01 mammal.n.01 +ass.n.03 equine.n.01 +red_fox.n.03 mammal.n.01 +hare_wallaby.n.01 marsupial.n.01 +protohippus.n.01 protohippus.n.01 +finback.n.01 whale.n.02 +ant_bear.n.01 ant_bear.n.01 +phalanger.n.01 phalanger.n.01 +appaloosa.n.01 appaloosa.n.01 +prototherian.n.01 prototherian.n.01 +peking_man.n.01 primate.n.02 +longhorn.n.01 cattle.n.01 +porpoise.n.01 aquatic_mammal.n.01 +capybara.n.01 placental.n.01 +big_cat.n.01 placental.n.01 +thomson's_gazelle.n.01 mammal.n.01 +fanaloka.n.01 placental.n.01 +caracal.n.01 mammal.n.01 +tamarisk_gerbil.n.01 placental.n.01 +pine_vole.n.01 rodent.n.01 +beaked_whale.n.01 aquatic_mammal.n.01 +columbian_mammoth.n.01 placental.n.01 +przewalski's_horse.n.01 wild_horse.n.01 +boar.n.02 placental.n.01 +mexican_hairless.n.01 carnivore.n.01 +porker.n.01 even-toed_ungulate.n.01 +abyssinian.n.01 mammal.n.01 +grampus.n.02 dolphin.n.02 +siamang.n.01 mammal.n.01 +springer_spaniel.n.01 placental.n.01 +hinny.n.01 hinny.n.01 +hind.n.02 deer.n.01 +lapin.n.02 mammal.n.01 +mountain_goat.n.01 mammal.n.01 +pug.n.01 pug.n.01 +coypu.n.01 coypu.n.01 +flying_lemur.n.01 placental.n.01 +bucking_bronco.n.01 mammal.n.01 +curly-coated_retriever.n.01 dog.n.01 +black-footed_ferret.n.01 black-footed_ferret.n.01 +llama.n.01 placental.n.01 +australopithecus_afarensis.n.01 mammal.n.01 +pekinese.n.01 toy_dog.n.01 +springbok.n.01 even-toed_ungulate.n.01 +pole_horse.n.02 placental.n.01 +abyssinian.n.01 domestic_cat.n.01 +jackrabbit.n.01 mammal.n.01 +stone_marten.n.01 carnivore.n.01 +grampus.n.02 cetacean.n.01 +fox_squirrel.n.01 tree_squirrel.n.01 +new_world_monkey.n.01 primate.n.02 +brown_lemming.n.01 rodent.n.01 +kiang.n.01 equine.n.01 +water_spaniel.n.01 dog.n.01 +eared_seal.n.01 seal.n.09 +draft_horse.n.01 placental.n.01 +fur_seal.n.02 placental.n.01 +rottweiler.n.01 mammal.n.01 +sable.n.05 marten.n.01 +clydesdale.n.01 equine.n.01 +springbok.n.01 mammal.n.01 +polar_hare.n.01 lagomorph.n.01 +dolphin.n.02 placental.n.01 +gerbil.n.01 mammal.n.01 +american_black_bear.n.01 bear.n.01 +santa_gertrudis.n.01 bovine.n.01 +mountain_paca.n.01 mammal.n.01 +kiang.n.01 kiang.n.01 +wapiti.n.01 mammal.n.01 +banteng.n.01 ruminant.n.01 +hearing_dog.n.01 hearing_dog.n.01 +malamute.n.01 malamute.n.01 +asiatic_black_bear.n.01 carnivore.n.01 +stalking-horse.n.04 ungulate.n.01 +rambouillet.n.01 placental.n.01 +silver_fox.n.01 placental.n.01 +grison.n.01 musteline_mammal.n.01 +asiatic_shrew_mole.n.01 shrew_mole.n.01 +cashmere_goat.n.01 cashmere_goat.n.01 +solo_man.n.01 solo_man.n.01 +wood_rabbit.n.01 placental.n.01 +snowshoe_hare.n.01 lagomorph.n.01 +odd-toed_ungulate.n.01 ungulate.n.01 +bandicoot_rat.n.01 rodent.n.01 +pronghorn.n.01 mammal.n.01 +muishond.n.01 carnivore.n.01 +steller_sea_lion.n.01 pinniped_mammal.n.01 +ox.n.02 placental.n.01 +dog.n.01 placental.n.01 +porker.n.01 mammal.n.01 +labrador_retriever.n.01 labrador_retriever.n.01 +house_mouse.n.01 rodent.n.01 +sealyham_terrier.n.01 carnivore.n.01 +dasyurid_marsupial.n.01 marsupial.n.01 +german_shepherd.n.01 shepherd_dog.n.01 +flat-coated_retriever.n.01 mammal.n.01 +pony.n.02 equine.n.01 +cayuse.n.01 pony.n.01 +chihuahua.n.03 placental.n.01 +waterbuck.n.01 ruminant.n.01 +large_civet.n.01 viverrine.n.01 +thomson's_gazelle.n.01 even-toed_ungulate.n.01 +golden_mole.n.01 placental.n.01 +bay.n.07 placental.n.01 +greyhound.n.01 placental.n.01 +cayuse.n.01 equine.n.01 +swine.n.01 even-toed_ungulate.n.01 +echidna.n.02 echidna.n.02 +springer_spaniel.n.01 canine.n.02 +java_man.n.01 hominid.n.01 +dalmatian.n.02 mammal.n.01 +common_zebra.n.01 zebra.n.01 +saint_bernard.n.01 working_dog.n.01 +gazelle.n.01 even-toed_ungulate.n.01 +aoudad.n.01 wild_sheep.n.01 +bearded_seal.n.01 pinniped_mammal.n.01 +finback.n.01 cetacean.n.01 +burmese_cat.n.01 feline.n.01 +giant_schnauzer.n.01 placental.n.01 +polecat.n.02 placental.n.01 +mudder.n.01 ungulate.n.01 +tasmanian_devil.n.01 marsupial.n.01 +proconsul.n.03 placental.n.01 +placental.n.01 placental.n.01 +mountain_nyala.n.01 even-toed_ungulate.n.01 +manul.n.01 feline.n.01 +bullock.n.01 even-toed_ungulate.n.01 +palm_cat.n.01 civet.n.01 +pinto.n.01 horse.n.01 +cattalo.n.01 placental.n.01 +fossa.n.03 mammal.n.01 +miniature_poodle.n.01 mammal.n.01 +german_short-haired_pointer.n.01 hunting_dog.n.01 +northern_pocket_gopher.n.01 rat.n.01 +blackbuck.n.01 even-toed_ungulate.n.01 +oryx.n.01 even-toed_ungulate.n.01 +cow.n.01 bovine.n.01 +plains_pocket_mouse.n.01 placental.n.01 +tortoiseshell.n.03 tortoiseshell.n.03 +bucking_bronco.n.01 placental.n.01 +polecat.n.02 carnivore.n.01 +tapir.n.01 placental.n.01 +horse.n.01 placental.n.01 +metatherian.n.01 mammal.n.01 +liger.n.01 mammal.n.01 +wolverine.n.03 musteline_mammal.n.01 +monotreme.n.01 mammal.n.01 +insectivore.n.01 mammal.n.01 +camel.n.01 mammal.n.01 +cotton_rat.n.01 placental.n.01 +tibetan_terrier.n.01 terrier.n.01 +arabian.n.02 odd-toed_ungulate.n.01 +protohippus.n.01 horse.n.01 +anthropoid_ape.n.01 primate.n.02 +mammoth.n.01 mammoth.n.01 +jaguar.n.01 placental.n.01 +bottle-nosed_whale.n.01 whale.n.02 +persian_cat.n.01 domestic_cat.n.01 +mammoth.n.01 mammal.n.01 +chimpanzee.n.01 great_ape.n.01 +sand_cat.n.01 cat.n.01 +affenpinscher.n.01 watchdog.n.02 +tamarau.n.01 ungulate.n.01 +arctic_fox.n.01 canine.n.02 +guernsey.n.02 mammal.n.01 +two-year-old_horse.n.01 placental.n.01 +woolly_rhinoceros.n.01 rhinoceros.n.01 +mudder.n.01 placental.n.01 +working_dog.n.01 canine.n.02 +red_wolf.n.01 red_wolf.n.01 +bushbuck.n.01 mammal.n.01 +river_otter.n.01 placental.n.01 +serow.n.01 goat_antelope.n.01 +common_opossum.n.01 mammal.n.01 +madagascar_cat.n.01 lemur.n.01 +jack.n.12 odd-toed_ungulate.n.01 +big_brown_bat.n.01 placental.n.01 +sussex_spaniel.n.01 mammal.n.01 +pika.n.01 placental.n.01 +eastern_cottontail.n.01 lagomorph.n.01 +redbone.n.01 hound.n.01 +cattalo.n.01 ungulate.n.01 +fur_seal.n.02 aquatic_mammal.n.01 +tabby.n.01 feline.n.01 +howler_monkey.n.01 monkey.n.01 +kiang.n.01 placental.n.01 +kerry_blue_terrier.n.01 dog.n.01 +airedale.n.01 canine.n.02 +smooth-haired_fox_terrier.n.01 carnivore.n.01 +lucy.n.01 primate.n.02 +gazella_subgutturosa.n.01 mammal.n.01 +appaloosa.n.01 odd-toed_ungulate.n.01 +woolly_mammoth.n.01 mammoth.n.01 +vole.n.01 vole.n.01 +canada_lynx.n.01 feline.n.01 +masked_shrew.n.01 mammal.n.01 +aurochs.n.02 ruminant.n.01 +odd-toed_ungulate.n.01 placental.n.01 +giant_schnauzer.n.01 terrier.n.01 +greater_kudu.n.01 greater_kudu.n.01 +wild_boar.n.01 ungulate.n.01 +bay.n.07 ungulate.n.01 +pipistrelle.n.01 vespertilian_bat.n.01 +duplicidentata.n.01 lagomorph.n.01 +white-tailed_jackrabbit.n.01 lagomorph.n.01 +ground_squirrel.n.02 placental.n.01 +plow_horse.n.01 horse.n.01 +manul.n.01 wildcat.n.03 +rat_terrier.n.01 dog.n.01 +addax.n.01 placental.n.01 +war_admiral.n.01 odd-toed_ungulate.n.01 +chesapeake_bay_retriever.n.01 sporting_dog.n.01 +broadtail.n.02 sheep.n.01 +pacific_bottlenose_dolphin.n.01 whale.n.02 +razorback.n.01 swine.n.01 +lioness.n.01 lioness.n.01 +bobcat.n.01 lynx.n.02 +common_eland.n.01 common_eland.n.01 +false_saber-toothed_tiger.n.01 false_saber-toothed_tiger.n.01 +agouti.n.01 rodent.n.01 +hare_wallaby.n.01 hare_wallaby.n.01 +hind.n.02 hind.n.02 +irish_water_spaniel.n.01 irish_water_spaniel.n.01 +toy_terrier.n.01 canine.n.02 +thylacine.n.01 mammal.n.01 +vizsla.n.01 mammal.n.01 +tarpan.n.01 wild_horse.n.01 +ungulate.n.01 mammal.n.01 +mouser.n.01 domestic_cat.n.01 +lesser_kudu.n.01 ruminant.n.01 +bulldog.n.01 placental.n.01 +durham.n.02 ruminant.n.01 +angora.n.02 placental.n.01 +cayuse.n.01 ungulate.n.01 +greater_swiss_mountain_dog.n.01 placental.n.01 +hognose_bat.n.01 bat.n.01 +mule.n.01 ungulate.n.01 +carabao.n.01 even-toed_ungulate.n.01 +hartebeest.n.01 antelope.n.01 +flying_fox.n.01 bat.n.01 +silky_tamarin.n.01 placental.n.01 +pole_horse.n.02 ungulate.n.01 +armadillo.n.01 armadillo.n.01 +ibizan_hound.n.01 placental.n.01 +bettong.n.01 metatherian.n.01 +chesapeake_bay_retriever.n.01 retriever.n.01 +anoa.n.01 ruminant.n.01 +manx.n.02 domestic_cat.n.01 +ord_kangaroo_rat.n.01 pocket_rat.n.01 +harness_horse.n.01 odd-toed_ungulate.n.01 +bettong.n.01 marsupial.n.01 +cave_myotis.n.01 carnivorous_bat.n.01 +sinanthropus.n.01 hominid.n.01 +musk_kangaroo.n.01 mammal.n.01 +gelding.n.01 ungulate.n.01 +two-year-old_horse.n.01 two-year-old_horse.n.01 +fossa.n.03 fossa.n.03 +lucy.n.01 australopithecine.n.01 +grison.n.01 carnivore.n.01 +chamois.n.02 mammal.n.01 +lhasa.n.02 hunting_dog.n.01 +italian_greyhound.n.01 hunting_dog.n.01 +steed.n.01 mammal.n.01 +caracal.n.01 lynx.n.02 +sea_otter.n.01 sea_otter.n.01 +anthropoid_ape.n.01 mammal.n.01 +kangaroo_mouse.n.02 placental.n.01 +titi.n.03 monkey.n.01 +dachshund.n.01 hunting_dog.n.01 +toy_terrier.n.01 toy_terrier.n.01 +gemsbok.n.01 antelope.n.01 +cavalry_horse.n.01 mammal.n.01 +wood_rat.n.01 wood_rat.n.01 +markhor.n.01 bovid.n.01 +racehorse.n.01 horse.n.01 +guereza.n.01 old_world_monkey.n.01 +steed.n.01 ungulate.n.01 +kid.n.05 ruminant.n.01 +new_world_monkey.n.01 monkey.n.01 +roe_deer.n.01 mammal.n.01 +billy.n.02 placental.n.01 +zebra.n.01 ungulate.n.01 +rambouillet.n.01 even-toed_ungulate.n.01 +dasyure.n.01 metatherian.n.01 +mexican_pocket_mouse.n.01 mammal.n.01 +rice_rat.n.01 mammal.n.01 +sambar.n.01 placental.n.01 +yearling.n.02 equine.n.01 +mustang.n.01 equine.n.01 +white_whale.n.01 placental.n.01 +big_brown_bat.n.01 carnivorous_bat.n.01 +collie.n.01 canine.n.02 +argali.n.01 ungulate.n.01 +serotine.n.01 mammal.n.01 +bowhead.n.01 placental.n.01 +stallion.n.01 stallion.n.01 +cattle.n.01 even-toed_ungulate.n.01 +ape.n.01 ape.n.01 +english_setter.n.01 dog.n.01 +bear.n.01 carnivore.n.01 +panther.n.02 mammal.n.01 +raccoon_dog.n.01 mammal.n.01 +boston_bull.n.01 mammal.n.01 +red_poll.n.01 ungulate.n.01 +tree_shrew.n.01 mammal.n.01 +new_world_monkey.n.01 new_world_monkey.n.01 +giant_eland.n.01 antelope.n.01 +genet.n.03 placental.n.01 +bullterrier.n.01 terrier.n.01 +musk_deer.n.01 even-toed_ungulate.n.01 +woolly_monkey.n.01 woolly_monkey.n.01 +giraffe.n.01 placental.n.01 +dryopithecine.n.01 primate.n.02 +canine.n.02 canine.n.02 +fanaloka.n.01 carnivore.n.01 +cardigan.n.02 mammal.n.01 +water_vole.n.02 vole.n.01 +red_deer.n.01 ungulate.n.01 +bouvier_des_flandres.n.01 shepherd_dog.n.01 +pacer.n.02 equine.n.01 +old_world_beaver.n.01 placental.n.01 +white-tailed_jackrabbit.n.01 hare.n.01 +doberman.n.01 canine.n.02 +bullock.n.02 ungulate.n.01 +english_springer.n.01 carnivore.n.01 +harp_seal.n.01 seal.n.09 +kangaroo_mouse.n.02 rat.n.01 +sennenhunde.n.01 carnivore.n.01 +heifer.n.01 bovid.n.01 +cougar.n.01 mammal.n.01 +eastern_lowland_gorilla.n.01 gorilla.n.01 +marco_polo_sheep.n.01 bovid.n.01 +red_deer.n.01 mammal.n.01 +guide_dog.n.01 placental.n.01 +bronco.n.01 odd-toed_ungulate.n.01 +hyena.n.01 canine.n.02 +saddle_horse.n.01 equine.n.01 +beef.n.01 ruminant.n.01 +grivet.n.01 old_world_monkey.n.01 +lucy.n.01 lucy.n.01 +potoroo.n.01 potoroo.n.01 +pony.n.05 ungulate.n.01 +vizsla.n.01 carnivore.n.01 +jackal.n.01 carnivore.n.01 +feist.n.01 placental.n.01 +marmot.n.01 placental.n.01 +smooth-haired_fox_terrier.n.01 smooth-haired_fox_terrier.n.01 +dryopithecine.n.01 dryopithecine.n.01 +cob.n.02 horse.n.01 +bottlenose_dolphin.n.01 whale.n.02 +cattalo.n.01 mammal.n.01 +eastern_woodrat.n.01 rodent.n.01 +grey.n.07 horse.n.01 +collie.n.01 dog.n.01 +dalmatian.n.02 dog.n.01 +pricket.n.02 ungulate.n.01 +beaver_rat.n.01 mammal.n.01 +shepherd_dog.n.01 carnivore.n.01 +virginia_deer.n.01 mammal.n.01 +beef.n.01 bovine.n.01 +hampshire.n.02 hampshire.n.02 +pacific_walrus.n.01 pacific_walrus.n.01 +longwool.n.01 longwool.n.01 +hyrax.n.01 hyrax.n.01 +serotine.n.01 serotine.n.01 +liver_chestnut.n.01 placental.n.01 +leopard.n.02 carnivore.n.01 +asiatic_black_bear.n.01 bear.n.01 +european_hare.n.01 european_hare.n.01 +jungle_cat.n.01 mammal.n.01 +common_zebra.n.01 odd-toed_ungulate.n.01 +harbor_seal.n.01 placental.n.01 +bongo.n.02 ruminant.n.01 +coydog.n.01 placental.n.01 +protohippus.n.01 odd-toed_ungulate.n.01 +bandicoot_rat.n.01 placental.n.01 +gazella_subgutturosa.n.01 gazelle.n.01 +ice_bear.n.01 mammal.n.01 +water_spaniel.n.01 canine.n.02 +mammal.n.01 mammal.n.01 +pariah_dog.n.01 carnivore.n.01 +wild_horse.n.01 wild_horse.n.01 +eared_seal.n.01 placental.n.01 +white-lipped_peccary.n.01 mammal.n.01 +dun.n.01 dun.n.01 +pacific_bottlenose_dolphin.n.01 dolphin.n.02 +desmodus_rotundus.n.01 placental.n.01 +harpy.n.03 harpy.n.03 +lynx.n.02 feline.n.01 +pinche.n.01 tamarin.n.01 +quagga.n.01 mammal.n.01 +brown_swiss.n.01 ruminant.n.01 +mountain_nyala.n.01 bovid.n.01 +water_buffalo.n.01 bovid.n.01 +neandertal_man.n.01 primate.n.02 +australopithecus_robustus.n.01 primate.n.02 +hairy-legged_vampire_bat.n.01 bat.n.01 +bouvier_des_flandres.n.01 working_dog.n.01 +lesser_rorqual.n.01 aquatic_mammal.n.01 +pariah_dog.n.01 dog.n.01 +black-tailed_deer.n.01 black-tailed_deer.n.01 +porker.n.01 ungulate.n.01 +bottlenose_dolphin.n.01 mammal.n.01 +mudder.n.01 equine.n.01 +toy_manchester.n.01 manchester_terrier.n.01 +monotreme.n.01 monotreme.n.01 +insectivore.n.01 insectivore.n.01 +tibetan_terrier.n.01 canine.n.02 +orangutan.n.01 primate.n.02 +musk_ox.n.01 ruminant.n.01 +setter.n.02 setter.n.02 +ram.n.05 bovid.n.01 +forest_goat.n.01 ungulate.n.01 +heifer.n.01 cow.n.01 +bronco.n.01 ungulate.n.01 +hamster.n.01 mammal.n.01 +toothed_whale.n.01 toothed_whale.n.01 +domestic_llama.n.01 mammal.n.01 +wolverine.n.03 wolverine.n.03 +wild_dog.n.01 placental.n.01 +arctic_fox.n.01 fox.n.01 +mole_rat.n.02 mammal.n.01 +attack_dog.n.01 canine.n.02 +smooth-haired_fox_terrier.n.01 placental.n.01 +dusky-footed_wood_rat.n.01 dusky-footed_wood_rat.n.01 +horseshoe_bat.n.01 mammal.n.01 +pine_vole.n.01 placental.n.01 +przewalski's_horse.n.01 przewalski's_horse.n.01 +australian_terrier.n.01 mammal.n.01 +citation.n.06 placental.n.01 +tigress.n.01 mammal.n.01 +welsh.n.03 welsh.n.03 +american_water_shrew.n.01 mammal.n.01 +brocket.n.02 even-toed_ungulate.n.01 +old_world_monkey.n.01 old_world_monkey.n.01 +baronduki.n.01 mammal.n.01 +homo_erectus.n.01 hominid.n.01 +canada_porcupine.n.01 placental.n.01 +malamute.n.01 placental.n.01 +staffordshire_bullterrier.n.01 bullterrier.n.01 +pointer.n.04 dog.n.01 +european_wood_mouse.n.01 field_mouse.n.02 +greater_kudu.n.01 ungulate.n.01 +ewe.n.03 ruminant.n.01 +hampshire.n.02 ruminant.n.01 +stepper.n.03 placental.n.01 +spotted_skunk.n.01 skunk.n.04 +red-backed_mouse.n.01 vole.n.01 +kit_fox.n.02 canine.n.02 +crab-eating_macaque.n.01 macaque.n.01 +leporid.n.01 lagomorph.n.01 +phenacomys.n.01 wood_rat.n.01 +hog.n.03 placental.n.01 +razorback.n.01 razorback.n.01 +stoat.n.01 carnivore.n.01 +lesser_kudu.n.01 ungulate.n.01 +bezoar_goat.n.01 bezoar_goat.n.01 +sennenhunde.n.01 sennenhunde.n.01 +thoroughbred.n.02 racehorse.n.01 +curly-coated_retriever.n.01 curly-coated_retriever.n.01 +gazella_subgutturosa.n.01 gazella_subgutturosa.n.01 +spotted_lynx.n.01 cat.n.01 +tapir.n.01 tapir.n.01 +dusky-footed_woodrat.n.01 rodent.n.01 +saddle_horse.n.01 mammal.n.01 +shrew_mole.n.01 mole.n.06 +friesian.n.01 ruminant.n.01 +siamang.n.01 primate.n.02 +nyala.n.02 placental.n.01 +post_horse.n.01 ungulate.n.01 +brittany_spaniel.n.01 sporting_dog.n.01 +gallant_fox.n.01 ungulate.n.01 +world.n.08 primate.n.02 +manx.n.02 cat.n.01 +viscacha.n.01 mammal.n.01 +australopithecus_afarensis.n.01 primate.n.02 +housedog.n.01 watchdog.n.02 +european_wood_mouse.n.01 mammal.n.01 +bull.n.01 mammal.n.01 +canada_lynx.n.01 lynx.n.02 +gomphothere.n.01 proboscidean.n.01 +pony.n.02 placental.n.01 +dhole.n.01 mammal.n.01 +welsh_springer_spaniel.n.01 hunting_dog.n.01 +cuscus.n.01 mammal.n.01 +golden_retriever.n.01 canine.n.02 +grey_whale.n.01 placental.n.01 +western_pipistrel.n.01 carnivorous_bat.n.01 +jackrabbit.n.01 jackrabbit.n.01 +cotton_rat.n.01 cotton_rat.n.01 +bushbuck.n.01 ungulate.n.01 +police_dog.n.01 carnivore.n.01 +shrew.n.02 placental.n.01 +gazelle.n.01 ruminant.n.01 +dinoceras.n.01 ungulate.n.01 +saint_bernard.n.01 carnivore.n.01 +hairy-legged_vampire_bat.n.01 placental.n.01 +goat.n.01 goat.n.01 +guenon.n.01 mammal.n.01 +affenpinscher.n.01 affenpinscher.n.01 +tenrec.n.01 mammal.n.01 +kid.n.05 kid.n.05 +guadalupe_fur_seal.n.01 seal.n.09 +impala.n.01 antelope.n.01 +hairy-legged_vampire_bat.n.01 vampire_bat.n.01 +guanaco.n.01 placental.n.01 +rat_kangaroo.n.01 kangaroo.n.01 +old_world_porcupine.n.01 porcupine.n.01 +stoat.n.01 stoat.n.01 +ferret_badger.n.01 carnivore.n.01 +australopithecus_africanus.n.01 primate.n.02 +pony.n.01 mammal.n.01 +echidna.n.01 mammal.n.01 +assault.n.03 equine.n.01 +opossum.n.02 metatherian.n.01 +tibetan_mastiff.n.01 working_dog.n.01 +jaguar.n.01 big_cat.n.01 +yearling.n.02 mammal.n.01 +jird.n.01 gerbil.n.01 +kinkajou.n.01 procyonid.n.01 +rottweiler.n.01 rottweiler.n.01 +caribou.n.01 mammal.n.01 +rorqual.n.01 rorqual.n.01 +springer.n.02 springer.n.02 +toy_dog.n.01 toy_dog.n.01 +bighorn.n.02 mountain_sheep.n.01 +goral.n.01 bovid.n.01 +western_lowland_gorilla.n.01 gorilla.n.01 +mountain_goat.n.01 ruminant.n.01 +cro-magnon.n.01 homo_sapiens.n.01 +river_dolphin.n.01 mammal.n.01 +pinto.n.01 equine.n.01 +caracal.n.01 caracal.n.01 +wapiti.n.01 wapiti.n.01 +mole_rat.n.01 mammal.n.01 +silky_pocket_mouse.n.01 pocket_rat.n.01 +two-toed_sloth.n.01 edentate.n.01 +ayrshire.n.01 bovine.n.01 +onager.n.02 odd-toed_ungulate.n.01 +zinjanthropus.n.01 hominid.n.01 +bloodhound.n.01 placental.n.01 +eastern_chipmunk.n.01 squirrel.n.01 +courser.n.03 mammal.n.01 +least_shrew.n.01 shrew.n.02 +american_marten.n.01 placental.n.01 +doe.n.02 placental.n.01 +canada_lynx.n.01 placental.n.01 +dwarf_sperm_whale.n.01 cetacean.n.01 +eastern_dasyure.n.01 mammal.n.01 +silky_pocket_mouse.n.01 placental.n.01 +napu.n.01 chevrotain.n.01 +ratel.n.01 ratel.n.01 +marmot.n.01 marmot.n.01 +hereford.n.01 ruminant.n.01 +labrador_retriever.n.01 dog.n.01 +australian_terrier.n.01 australian_terrier.n.01 +slender_loris.n.01 placental.n.01 +red_fox.n.02 carnivore.n.01 +steed.n.01 equine.n.01 +musk_deer.n.01 placental.n.01 +whale.n.02 mammal.n.01 +mustang.n.01 mustang.n.01 +wire-haired_fox_terrier.n.01 wire-haired_fox_terrier.n.01 +roan.n.02 mammal.n.01 +coach_horse.n.01 odd-toed_ungulate.n.01 +panther.n.02 placental.n.01 +dandie_dinmont.n.01 dog.n.01 +yellow-throated_marten.n.01 carnivore.n.01 +male_horse.n.01 odd-toed_ungulate.n.01 +eurasian_hamster.n.01 hamster.n.01 +crabeater_seal.n.01 mammal.n.01 +wisent.n.01 ruminant.n.01 +spotted_lynx.n.01 mammal.n.01 +american_badger.n.01 mammal.n.01 +bushbuck.n.01 harnessed_antelope.n.01 +antelope_squirrel.n.01 ground_squirrel.n.02 +american_saddle_horse.n.01 mammal.n.01 +lesser_ape.n.01 primate.n.02 +plains_pocket_gopher.n.01 rat.n.01 +brahman.n.04 even-toed_ungulate.n.01 +chevrotain.n.01 placental.n.01 +cotswold.n.01 domestic_sheep.n.01 +tenrec.n.01 insectivore.n.01 +maltese.n.03 cat.n.01 +cow.n.01 bovid.n.01 +yearling.n.02 yearling.n.02 +vaquita.n.01 vaquita.n.01 +guernsey.n.02 placental.n.01 +chiacoan_peccary.n.01 ungulate.n.01 +american_harvest_mouse.n.01 placental.n.01 +rhodesian_ridgeback.n.01 mammal.n.01 +briard.n.01 canine.n.02 +mountain_beaver.n.01 rodent.n.01 +belgian_hare.n.01 belgian_hare.n.01 +pony.n.05 odd-toed_ungulate.n.01 +hudson_bay_collared_lemming.n.01 mammal.n.01 +lincoln.n.03 even-toed_ungulate.n.01 +sealyham_terrier.n.01 hunting_dog.n.01 +clydesdale_terrier.n.01 clydesdale_terrier.n.01 +even-toed_ungulate.n.01 ungulate.n.01 +mule_deer.n.01 mule_deer.n.01 +przewalski's_horse.n.01 horse.n.01 +ayrshire.n.01 cattle.n.01 +malamute.n.01 working_dog.n.01 +chiacoan_peccary.n.01 peccary.n.01 +palm_cat.n.01 palm_cat.n.01 +weasel.n.02 carnivore.n.01 +valley_pocket_gopher.n.01 placental.n.01 +american_saddle_horse.n.01 horse.n.01 +english_foxhound.n.01 canine.n.02 +nude_mouse.n.01 placental.n.01 +asiatic_black_bear.n.01 asiatic_black_bear.n.01 +otter_shrew.n.01 placental.n.01 +roebuck.n.01 roe_deer.n.01 +africander.n.01 placental.n.01 +exmoor.n.02 horse.n.01 +polecat.n.02 polecat.n.02 +arabian_camel.n.01 even-toed_ungulate.n.01 +roan.n.02 ungulate.n.01 +eastern_pipistrel.n.01 carnivorous_bat.n.01 +pygmy_sperm_whale.n.01 mammal.n.01 +gopher.n.04 mammal.n.01 +even-toed_ungulate.n.01 mammal.n.01 +valley_pocket_gopher.n.01 pocket_rat.n.01 +old_english_sheepdog.n.01 placental.n.01 +soft-coated_wheaten_terrier.n.01 soft-coated_wheaten_terrier.n.01 +feist.n.01 carnivore.n.01 +pademelon.n.01 wallaby.n.01 +macaque.n.01 mammal.n.01 +wapiti.n.01 ungulate.n.01 +horseshoe_bat.n.02 placental.n.01 +workhorse.n.02 mammal.n.01 +norwich_terrier.n.01 mammal.n.01 +babirusa.n.01 ungulate.n.01 +water_spaniel.n.01 placental.n.01 +suslik.n.01 rodent.n.01 +grevy's_zebra.n.01 grevy's_zebra.n.01 +griffon.n.02 dog.n.01 +dik-dik.n.01 mammal.n.01 +harrier.n.02 dog.n.01 +american_mastodon.n.01 american_mastodon.n.01 +bushbuck.n.01 even-toed_ungulate.n.01 +golden_mole.n.01 golden_mole.n.01 +guernsey.n.02 dairy_cattle.n.01 +tamarin.n.01 mammal.n.01 +red_poll.n.01 bovine.n.01 +american_water_shrew.n.01 insectivore.n.01 +hind.n.02 placental.n.01 +grey.n.07 equine.n.01 +typical_jerboa.n.01 jerboa.n.01 +blacktail_jackrabbit.n.01 blacktail_jackrabbit.n.01 +snow_leopard.n.01 big_cat.n.01 +pomeranian.n.01 canine.n.02 +steeplechaser.n.01 mammal.n.01 +wild_goat.n.01 ungulate.n.01 +vervet.n.01 vervet.n.01 +humpback.n.03 cetacean.n.01 +blue_point_siamese.n.01 placental.n.01 +royal.n.02 buck.n.05 +australian_sea_lion.n.01 eared_seal.n.01 +mole_rat.n.01 mole_rat.n.01 +hooded_skunk.n.01 skunk.n.04 +aoudad.n.01 ruminant.n.01 +foxhound.n.01 hunting_dog.n.01 +european_wildcat.n.01 european_wildcat.n.01 +brocket.n.01 placental.n.01 +wapiti.n.01 ruminant.n.01 +banteng.n.01 mammal.n.01 +farm_horse.n.01 ungulate.n.01 +damaraland_mole_rat.n.01 fossorial_mammal.n.01 +tiger_cat.n.02 placental.n.01 +nilgai.n.01 placental.n.01 +world.n.08 placental.n.01 +javanthropus.n.01 mammal.n.01 +woodland_caribou.n.01 ungulate.n.01 +flying_phalanger.n.01 mammal.n.01 +sea_lion.n.01 seal.n.09 +chimpanzee.n.01 anthropoid_ape.n.01 +simian.n.01 simian.n.01 +alaskan_brown_bear.n.01 alaskan_brown_bear.n.01 +timber_wolf.n.01 placental.n.01 +anteater.n.02 anteater.n.02 +dachshund.n.01 carnivore.n.01 +eastern_dasyure.n.01 dasyurid_marsupial.n.01 +marco_polo_sheep.n.01 ungulate.n.01 +homo.n.02 placental.n.01 +irish_terrier.n.01 dog.n.01 +terrier.n.01 canine.n.02 +dolphin.n.02 mammal.n.01 +northern_flying_squirrel.n.01 placental.n.01 +american_bison.n.01 ruminant.n.01 +water_vole.n.01 water_vole.n.01 +uakari.n.01 uakari.n.01 +kiang.n.01 ungulate.n.01 +cape_buffalo.n.01 cape_buffalo.n.01 +small_civet.n.01 viverrine.n.01 +aperea.n.01 placental.n.01 +argali.n.01 even-toed_ungulate.n.01 +aegyptopithecus.n.01 placental.n.01 +siberian_husky.n.01 dog.n.01 +horseshoe_bat.n.01 placental.n.01 +golden_mole.n.01 mole.n.06 +common_shrew.n.01 shrew.n.02 +tennessee_walker.n.01 tennessee_walker.n.01 +chipmunk.n.01 chipmunk.n.01 +pouched_mole.n.01 mammal.n.01 +sperm_whale.n.01 cetacean.n.01 +three-year-old_horse.n.01 equine.n.01 +skye_terrier.n.01 carnivore.n.01 +collared_peccary.n.01 collared_peccary.n.01 +lapin.n.02 placental.n.01 +devon.n.02 mammal.n.01 +white-lipped_peccary.n.01 white-lipped_peccary.n.01 +pinche.n.01 marmoset.n.01 +mountain_goat.n.01 placental.n.01 +domestic_llama.n.01 placental.n.01 +european_water_shrew.n.01 mammal.n.01 +monotreme.n.01 prototherian.n.01 +siberian_husky.n.01 carnivore.n.01 +burmese_cat.n.01 carnivore.n.01 +bat.n.01 mammal.n.01 +toy_terrier.n.01 dog.n.01 +galago.n.01 mammal.n.01 +opossum_rat.n.01 marsupial.n.01 +cocker_spaniel.n.01 canine.n.02 +goral.n.01 placental.n.01 +european_lemming.n.01 mammal.n.01 +bloodhound.n.01 hunting_dog.n.01 +staghound.n.01 placental.n.01 +mustang.n.01 horse.n.01 +viscacha.n.01 placental.n.01 +gomphothere.n.01 placental.n.01 +buck.n.05 placental.n.01 +roebuck.n.01 mammal.n.01 +pronghorn.n.01 even-toed_ungulate.n.01 +white_whale.n.01 dolphin.n.02 +galloway.n.02 bovid.n.01 +poodle.n.01 dog.n.01 +water_rat.n.03 water_rat.n.03 +aoudad.n.01 mammal.n.01 +police_dog.n.01 mammal.n.01 +aperea.n.01 aperea.n.01 +wild_horse.n.01 mammal.n.01 +horse.n.01 ungulate.n.01 +domestic_cat.n.01 domestic_cat.n.01 +european_wood_mouse.n.01 european_wood_mouse.n.01 +pariah_dog.n.01 pariah_dog.n.01 +bull.n.01 bull.n.01 +kob.n.01 ruminant.n.01 +blue_fox.n.01 arctic_fox.n.01 +sambar.n.01 mammal.n.01 +mediterranean_water_shrew.n.01 shrew.n.02 +jaculus_jaculus.n.01 placental.n.01 +red_wolf.n.01 canine.n.02 +prairie_vole.n.01 placental.n.01 +kelpie.n.02 kelpie.n.02 +common_eland.n.01 ruminant.n.01 +hoary_marmot.n.01 rodent.n.01 +domestic_cat.n.01 mammal.n.01 +grey_whale.n.01 baleen_whale.n.01 +mediterranean_water_shrew.n.01 placental.n.01 +common_dolphin.n.01 mammal.n.01 +weasel.n.02 weasel.n.02 +water_dog.n.02 placental.n.01 +courser.n.03 placental.n.01 +right_whale.n.01 mammal.n.01 +procyonid.n.01 mammal.n.01 +atlantic_walrus.n.01 placental.n.01 +bat.n.01 placental.n.01 +english_springer.n.01 spaniel.n.01 +imperial_mammoth.n.01 mammal.n.01 +nonstarter.n.02 nonstarter.n.02 +burro.n.01 placental.n.01 +sperm_whale.n.01 toothed_whale.n.01 +brown_hyena.n.01 placental.n.01 +eastern_lowland_gorilla.n.01 anthropoid_ape.n.01 +swine.n.01 placental.n.01 +large_civet.n.01 carnivore.n.01 +jird.n.01 rodent.n.01 +spouter.n.03 aquatic_mammal.n.01 +lionet.n.01 big_cat.n.01 +bear.n.01 mammal.n.01 +watchdog.n.02 mammal.n.01 +hack.n.07 placental.n.01 +homo_habilis.n.01 placental.n.01 +dairy_cattle.n.01 dairy_cattle.n.01 +pembroke.n.01 placental.n.01 +cavalry_horse.n.01 horse.n.01 +red_squirrel.n.02 tree_squirrel.n.01 +serow.n.01 placental.n.01 +pademelon.n.01 kangaroo.n.01 +africander.n.01 even-toed_ungulate.n.01 +rat_kangaroo.n.01 mammal.n.01 +serow.n.01 bovid.n.01 +guano_bat.n.01 freetail.n.01 +saint_bernard.n.01 mammal.n.01 +american_mastodon.n.01 proboscidean.n.01 +gomphothere.n.01 gomphothere.n.01 +stirk.n.01 even-toed_ungulate.n.01 +omaha.n.04 ungulate.n.01 +river_dolphin.n.01 aquatic_mammal.n.01 +roe_deer.n.01 ungulate.n.01 +sand_cat.n.01 sand_cat.n.01 +dugong.n.01 aquatic_mammal.n.01 +pacific_bottlenose_dolphin.n.01 pacific_bottlenose_dolphin.n.01 +porcupine.n.01 placental.n.01 +unguiculate.n.01 placental.n.01 +goral.n.01 ruminant.n.01 +english_setter.n.01 canine.n.02 +oryx.n.01 bovid.n.01 +javanthropus.n.01 placental.n.01 +longwool.n.01 mammal.n.01 +water_shrew.n.01 mammal.n.01 +steller's_sea_cow.n.01 placental.n.01 +bulldog.n.01 dog.n.01 +domestic_ass.n.01 ungulate.n.01 +kuvasz.n.01 placental.n.01 +rhesus.n.01 placental.n.01 +bitch.n.04 placental.n.01 +hispid_pocket_mouse.n.01 rodent.n.01 +sow.n.01 sow.n.01 +pinto.n.01 pinto.n.01 +eastern_pipistrel.n.01 bat.n.01 +american_shrew_mole.n.01 insectivore.n.01 +liver_chestnut.n.01 mammal.n.01 +black_rat.n.01 black_rat.n.01 +hampshire.n.02 even-toed_ungulate.n.01 +woolly_mammoth.n.01 woolly_mammoth.n.01 +griffon.n.03 placental.n.01 +harvest_mouse.n.02 mouse.n.01 +przewalski's_horse.n.01 mammal.n.01 +kit_fox.n.01 fox.n.01 +pricket.n.02 even-toed_ungulate.n.01 +boarhound.n.01 dog.n.01 +setter.n.02 dog.n.01 +brown_lemming.n.01 lemming.n.01 +german_short-haired_pointer.n.01 carnivore.n.01 +genet.n.03 viverrine.n.01 +lerot.n.01 mammal.n.01 +pallid_bat.n.01 bat.n.01 +marsh_hare.n.01 lagomorph.n.01 +steeplechaser.n.01 steeplechaser.n.01 +proboscis_monkey.n.01 mammal.n.01 +stud.n.04 stallion.n.01 +alaska_fur_seal.n.01 fur_seal.n.01 +dusky-footed_wood_rat.n.01 mammal.n.01 +alley_cat.n.01 mammal.n.01 +rabbit.n.01 leporid.n.01 +false_saber-toothed_tiger.n.01 feline.n.01 +two-toed_sloth.n.01 two-toed_sloth.n.01 +liver_chestnut.n.01 horse.n.01 +pointer.n.04 sporting_dog.n.01 +cow.n.01 cow.n.01 +pony.n.01 pony.n.01 +canada_porcupine.n.01 porcupine.n.01 +onager.n.02 ass.n.03 +yak.n.02 bovine.n.01 +meadow_vole.n.01 meadow_vole.n.01 +marmoset.n.01 marmoset.n.01 +ground_squirrel.n.02 ground_squirrel.n.02 +dusky-footed_woodrat.n.01 wood_rat.n.01 +blue_whale.n.01 blue_whale.n.01 +german_short-haired_pointer.n.01 german_short-haired_pointer.n.01 +gorilla.n.01 anthropoid_ape.n.01 +lincoln.n.03 sheep.n.01 +lesser_rorqual.n.01 placental.n.01 +bandicoot.n.01 marsupial.n.01 +porpoise.n.01 cetacean.n.01 +ruminant.n.01 mammal.n.01 +flying_mouse.n.01 phalanger.n.01 +springer_spaniel.n.01 spaniel.n.01 +pilot_whale.n.01 whale.n.02 +lippizan.n.01 odd-toed_ungulate.n.01 +alaskan_brown_bear.n.01 mammal.n.01 +algeripithecus_minutus.n.01 placental.n.01 +retriever.n.01 placental.n.01 +golden_retriever.n.01 retriever.n.01 +eastern_woodrat.n.01 mammal.n.01 +blue_point_siamese.n.01 siamese_cat.n.01 +percheron.n.01 workhorse.n.02 +squirrel_monkey.n.01 squirrel_monkey.n.01 +gallant_fox.n.01 placental.n.01 +big_brown_bat.n.01 vespertilian_bat.n.01 +barbary_ape.n.01 macaque.n.01 +english_foxhound.n.01 hound.n.01 +anoa.n.01 mammal.n.01 +gee-gee.n.01 horse.n.01 +glutton.n.02 placental.n.01 +southern_flying_squirrel.n.01 rodent.n.01 +waterbuck.n.01 antelope.n.01 +killer_whale.n.01 mammal.n.01 +south_american_sea_lion.n.01 south_american_sea_lion.n.01 +stepper.n.03 stepper.n.03 +clydesdale.n.01 clydesdale.n.01 +stud.n.04 horse.n.01 +moke.n.01 domestic_ass.n.01 +northern_pocket_gopher.n.01 pocket_rat.n.01 +quarter_horse.n.01 saddle_horse.n.01 +omaha.n.04 mammal.n.01 +spaniel.n.01 sporting_dog.n.01 +gordon_setter.n.01 carnivore.n.01 +courser.n.03 dog.n.01 +wolfhound.n.01 mammal.n.01 +newfoundland.n.01 newfoundland.n.01 +vaquita.n.01 whale.n.02 +thoroughbred.n.02 equine.n.01 +siberian_husky.n.01 working_dog.n.01 +palfrey.n.01 equine.n.01 +crabeater_seal.n.01 aquatic_mammal.n.01 +caracal.n.01 wildcat.n.03 +large_civet.n.01 mammal.n.01 +stablemate.n.01 equine.n.01 +chestnut.n.06 mammal.n.01 +three-year-old_horse.n.01 ungulate.n.01 +water_chevrotain.n.01 ungulate.n.01 +merino.n.01 ungulate.n.01 +australopithecus_africanus.n.01 australopithecus_africanus.n.01 +green_monkey.n.01 primate.n.02 +hairy-legged_vampire_bat.n.01 carnivorous_bat.n.01 +vervet.n.01 mammal.n.01 +labrador_retriever.n.01 canine.n.02 +eurasian_badger.n.01 badger.n.02 +leopard.n.02 big_cat.n.01 +eskimo_dog.n.01 canine.n.02 +dark_horse.n.02 ungulate.n.01 +norwegian_elkhound.n.01 hound.n.01 +polecat.n.02 mammal.n.01 +anthropoid.n.02 primate.n.02 +silky_terrier.n.01 terrier.n.01 +warhorse.n.03 placental.n.01 +fissiped_mammal.n.01 carnivore.n.01 +jackal.n.01 mammal.n.01 +dairy_cattle.n.01 even-toed_ungulate.n.01 +hispid_pocket_mouse.n.01 mammal.n.01 +bottle-nosed_whale.n.01 toothed_whale.n.01 +lioness.n.01 lion.n.01 +terrier.n.01 placental.n.01 +bear.n.01 bear.n.01 +gordon_setter.n.01 placental.n.01 +shih-tzu.n.01 toy_dog.n.01 +ground_sloth.n.01 edentate.n.01 +columbian_mammoth.n.01 pachyderm.n.01 +red_wolf.n.01 wolf.n.01 +capuchin.n.02 primate.n.02 +aberdeen_angus.n.01 mammal.n.01 +gib.n.02 feline.n.01 +count_fleet.n.01 racehorse.n.01 +nonstarter.n.02 horse.n.01 +columbian_mammoth.n.01 mammoth.n.01 +mountain_chinchilla.n.01 mountain_chinchilla.n.01 +kanchil.n.01 placental.n.01 +tortoiseshell.n.03 placental.n.01 +water_vole.n.01 placental.n.01 +brown_swiss.n.01 brown_swiss.n.01 +anoa.n.01 anoa.n.01 +lion_cub.n.01 lion_cub.n.01 +flat-coated_retriever.n.01 sporting_dog.n.01 +potto.n.02 placental.n.01 +arctic_ground_squirrel.n.01 mammal.n.01 +pilot_whale.n.01 toothed_whale.n.01 +walrus.n.01 mammal.n.01 +harbor_porpoise.n.01 whale.n.02 +bearded_seal.n.01 placental.n.01 +grey_lemming.n.01 rodent.n.01 +toothed_whale.n.01 aquatic_mammal.n.01 +mexican_pocket_mouse.n.01 rodent.n.01 +milking_shorthorn.n.01 placental.n.01 +pinto.n.01 odd-toed_ungulate.n.01 +hampshire.n.02 domestic_sheep.n.01 +gib.n.02 carnivore.n.01 +african_elephant.n.01 mammal.n.01 +black-tailed_deer.n.01 placental.n.01 +mouflon.n.01 even-toed_ungulate.n.01 +humpback.n.03 mammal.n.01 +american_water_spaniel.n.01 sporting_dog.n.01 +rodent.n.01 placental.n.01 +mouse.n.01 mammal.n.01 +leopard_cat.n.01 carnivore.n.01 +jird.n.01 mammal.n.01 +musteline_mammal.n.01 mammal.n.01 +jerboa_kangaroo.n.01 mammal.n.01 +hampshire.n.02 ungulate.n.01 +striped_skunk.n.01 striped_skunk.n.01 +longtail_weasel.n.01 carnivore.n.01 +collared_peccary.n.01 placental.n.01 +porpoise.n.01 porpoise.n.01 +old_world_beaver.n.01 mammal.n.01 +western_grey_squirrel.n.01 rodent.n.01 +harrier.n.02 carnivore.n.01 +american_staffordshire_terrier.n.01 dog.n.01 +mexican_hairless.n.01 mammal.n.01 +arabian.n.02 horse.n.01 +walker_hound.n.01 mammal.n.01 +alpaca.n.03 placental.n.01 +walker_hound.n.01 dog.n.01 +proboscidean.n.01 placental.n.01 +steeplechaser.n.01 placental.n.01 +fissipedia.n.01 fissipedia.n.01 +ox.n.01 ruminant.n.01 +saki.n.03 mammal.n.01 +brown_swiss.n.01 bovid.n.01 +royal.n.02 mammal.n.01 +thoroughbred.n.02 ungulate.n.01 +australian_terrier.n.01 terrier.n.01 +wirehair.n.01 mammal.n.01 +steenbok.n.01 even-toed_ungulate.n.01 +ferret.n.02 mammal.n.01 +kinkajou.n.01 mammal.n.01 +wolf_pup.n.01 placental.n.01 +vicuna.n.03 mammal.n.01 +lakeland_terrier.n.01 mammal.n.01 +skye_terrier.n.01 dog.n.01 +american_water_shrew.n.01 water_shrew.n.01 +white-tailed_jackrabbit.n.01 leporid.n.01 +tiger_cat.n.02 feline.n.01 +humpback.n.03 whale.n.02 +cob.n.02 odd-toed_ungulate.n.01 +coondog.n.01 carnivore.n.01 +west_highland_white_terrier.n.01 hunting_dog.n.01 +cavalry_horse.n.01 odd-toed_ungulate.n.01 +attack_dog.n.01 mammal.n.01 +ungulata.n.01 mammal.n.01 +gazella_subgutturosa.n.01 antelope.n.01 +angwantibo.n.01 mammal.n.01 +fox_terrier.n.01 mammal.n.01 +sealyham_terrier.n.01 dog.n.01 +irish_setter.n.01 carnivore.n.01 +palomino.n.01 placental.n.01 +ocelot.n.01 mammal.n.01 +cynopterus_sphinx.n.01 fruit_bat.n.01 +mandrill.n.01 placental.n.01 +patas.n.01 old_world_monkey.n.01 +black-tailed_deer.n.01 ungulate.n.01 +hooded_seal.n.01 placental.n.01 +shire.n.02 equine.n.01 +boskop_man.n.01 homo_sapiens.n.01 +elk.n.01 mammal.n.01 +muishond.n.01 mammal.n.01 +american_staffordshire_terrier.n.01 placental.n.01 +hunting_dog.n.01 canine.n.02 +american_harvest_mouse.n.01 american_harvest_mouse.n.01 +dark_horse.n.02 placental.n.01 +otter_shrew.n.01 otter_shrew.n.01 +grison.n.01 mammal.n.01 +brahman.n.04 brahman.n.04 +bandicoot_rat.n.01 bandicoot_rat.n.01 +black-and-tan_coonhound.n.01 coonhound.n.01 +mylodon.n.01 placental.n.01 +mountain_chinchilla.n.01 rodent.n.01 +kerry_blue_terrier.n.01 kerry_blue_terrier.n.01 +brabancon_griffon.n.01 canine.n.02 +grey.n.07 grey.n.07 +rock_wallaby.n.01 metatherian.n.01 +citation.n.06 racehorse.n.01 +manul.n.01 manul.n.01 +western_grey_squirrel.n.01 western_grey_squirrel.n.01 +anthropoid_ape.n.01 anthropoid_ape.n.01 +antelope_squirrel.n.01 squirrel.n.01 +bucking_bronco.n.01 pony.n.01 +maltese_dog.n.01 placental.n.01 +pinniped_mammal.n.01 mammal.n.01 +common_raccoon.n.01 carnivore.n.01 +anoa.n.01 ungulate.n.01 +dwarf_sperm_whale.n.01 mammal.n.01 +sea_otter.n.01 placental.n.01 +mouflon.n.01 bovid.n.01 +pole_horse.n.02 odd-toed_ungulate.n.01 +orange_bat.n.01 orange_bat.n.01 +water_chevrotain.n.01 even-toed_ungulate.n.01 +taguan.n.01 asiatic_flying_squirrel.n.01 +ermine.n.02 carnivore.n.01 +scotch_terrier.n.01 dog.n.01 +mountain_chinchilla.n.01 mammal.n.01 +dasyure.n.01 dasyurid_marsupial.n.01 +golden_hamster.n.01 placental.n.01 +pithecanthropus.n.01 hominid.n.01 +draft_horse.n.01 odd-toed_ungulate.n.01 +crab-eating_macaque.n.01 crab-eating_macaque.n.01 +polo_pony.n.01 placental.n.01 +standard_schnauzer.n.01 schnauzer.n.01 +crab-eating_opossum.n.01 mammal.n.01 +stirk.n.01 ruminant.n.01 +tibetan_mastiff.n.01 mastiff.n.01 +feist.n.01 cur.n.01 +striped_skunk.n.01 placental.n.01 +brown_bear.n.01 bear.n.01 +mountain_zebra.n.01 equine.n.01 +western_lowland_gorilla.n.01 great_ape.n.01 +keeshond.n.01 placental.n.01 +cashmere_goat.n.01 ruminant.n.01 +ocelot.n.01 ocelot.n.01 +tiger_cat.n.02 mammal.n.01 +narwhal.n.01 mammal.n.01 +grampus.n.02 toothed_whale.n.01 +beaked_whale.n.01 placental.n.01 +red_fox.n.03 canine.n.02 +hind.n.02 red_deer.n.01 +zebra.n.01 placental.n.01 +camel.n.01 placental.n.01 +grey_fox.n.01 fox.n.01 +jackass_bat.n.01 vespertilian_bat.n.01 +wild_goat.n.01 bovid.n.01 +australopithecus_africanus.n.01 mammal.n.01 +palm_cat.n.01 placental.n.01 +solo_man.n.01 homo_soloensis.n.01 +cow.n.02 mammal.n.01 +potoroo.n.01 metatherian.n.01 +cow_pony.n.01 cow_pony.n.01 +borzoi.n.01 borzoi.n.01 +irish_terrier.n.01 irish_terrier.n.01 +coati.n.01 mammal.n.01 +steed.n.01 steed.n.01 +shetland_pony.n.01 placental.n.01 +kelpie.n.02 shepherd_dog.n.01 +syrian_bear.n.01 placental.n.01 +devon.n.02 ruminant.n.01 +whippet.n.01 whippet.n.01 +digitigrade_mammal.n.01 placental.n.01 +yellowbelly_marmot.n.01 mammal.n.01 +two-toed_sloth.n.02 edentate.n.01 +morgan.n.06 placental.n.01 +chevrotain.n.01 chevrotain.n.01 +orange_bat.n.01 carnivorous_bat.n.01 +silky_anteater.n.01 silky_anteater.n.01 +american_badger.n.01 carnivore.n.01 +african_hunting_dog.n.01 placental.n.01 +barren_ground_caribou.n.01 ungulate.n.01 +springer_spaniel.n.01 hunting_dog.n.01 +welsh_terrier.n.01 dog.n.01 +blenheim_spaniel.n.01 carnivore.n.01 +harp_seal.n.01 mammal.n.01 +poodle.n.01 carnivore.n.01 +new_world_beaver.n.01 rodent.n.01 +kit_fox.n.01 canine.n.02 +marmoset.n.01 new_world_monkey.n.01 +pere_david's_deer.n.01 ruminant.n.01 +stallion.n.01 mammal.n.01 +wild_horse.n.01 ungulate.n.01 +ayrshire.n.01 even-toed_ungulate.n.01 +white_rhinoceros.n.01 mammal.n.01 +siamang.n.01 anthropoid_ape.n.01 +lionet.n.01 carnivore.n.01 +shetland_sheepdog.n.01 mammal.n.01 +gopher.n.04 rodent.n.01 +kudu.n.01 bovid.n.01 +omaha.n.04 racehorse.n.01 +spaniel.n.01 dog.n.01 +unguiculata.n.01 mammal.n.01 +odd-toed_ungulate.n.01 mammal.n.01 +ichneumon.n.01 placental.n.01 +argali.n.01 ruminant.n.01 +california_sea_lion.n.01 aquatic_mammal.n.01 +chow.n.03 placental.n.01 +german_shepherd.n.01 german_shepherd.n.01 +bison.n.01 bison.n.01 +billy.n.02 billy.n.02 +great_dane.n.01 great_dane.n.01 +scotch_terrier.n.01 canine.n.02 +guide_dog.n.01 mammal.n.01 +bullock.n.02 cattle.n.01 +white_rhinoceros.n.01 rhinoceros.n.01 +hackney.n.02 harness_horse.n.01 +white-lipped_peccary.n.01 ungulate.n.01 +striped_skunk.n.01 skunk.n.04 +otterhound.n.01 hunting_dog.n.01 +pentail.n.01 placental.n.01 +aurochs.n.02 mammal.n.01 +setter.n.02 sporting_dog.n.01 +opossum_rat.n.01 opossum_rat.n.01 +cactus_mouse.n.01 wood_mouse.n.01 +big_brown_bat.n.01 mammal.n.01 +peccary.n.01 placental.n.01 +columbian_mammoth.n.01 columbian_mammoth.n.01 +sea_cow.n.01 mammal.n.01 +capybara.n.01 capybara.n.01 +starnose_mole.n.01 starnose_mole.n.01 +kid.n.05 ungulate.n.01 +entlebucher.n.01 mammal.n.01 +blue_whale.n.01 placental.n.01 +irish_terrier.n.01 carnivore.n.01 +standard_poodle.n.01 placental.n.01 +bison.n.01 ungulate.n.01 +charger.n.01 placental.n.01 +maltese.n.03 maltese.n.03 +zinjanthropus.n.01 australopithecine.n.01 +morgan.n.06 morgan.n.06 +brocket.n.01 brocket.n.01 +pine_marten.n.01 musteline_mammal.n.01 +angora.n.03 angora.n.03 +hack.n.07 ungulate.n.01 +western_pipistrel.n.01 placental.n.01 +arctic_fox.n.01 carnivore.n.01 +caracal.n.01 carnivore.n.01 +cocker_spaniel.n.01 spaniel.n.01 +guano_bat.n.01 bat.n.01 +swamp_rabbit.n.02 leporid.n.01 +european_lemming.n.01 placental.n.01 +dall_sheep.n.01 ruminant.n.01 +leopardess.n.01 mammal.n.01 +abrocome.n.01 abrocome.n.01 +burro.n.01 ungulate.n.01 +colobus.n.01 monkey.n.01 +buckskin.n.01 horse.n.01 +sinanthropus.n.01 mammal.n.01 +bottlenose_dolphin.n.01 cetacean.n.01 +hackney.n.02 equine.n.01 +durham.n.02 mammal.n.01 +eastern_cottontail.n.01 rabbit.n.01 +mountain_paca.n.01 rodent.n.01 +eskimo_dog.n.01 carnivore.n.01 +canada_lynx.n.01 mammal.n.01 +samoyed.n.03 canine.n.02 +arabian.n.02 saddle_horse.n.01 +atlantic_bottlenose_dolphin.n.01 aquatic_mammal.n.01 +bezoar_goat.n.01 bovid.n.01 +tiger_cub.n.01 carnivore.n.01 +fur_seal.n.01 mammal.n.01 +american_bison.n.01 bovid.n.01 +raccoon_dog.n.01 wild_dog.n.01 +mountain_zebra.n.01 mountain_zebra.n.01 +guadalupe_fur_seal.n.01 aquatic_mammal.n.01 +pithecanthropus.n.01 pithecanthropus.n.01 +standard_schnauzer.n.01 placental.n.01 +belgian_sheepdog.n.01 shepherd_dog.n.01 +citation.n.06 horse.n.01 +whale.n.02 whale.n.02 +walrus.n.01 walrus.n.01 +jersey.n.05 ruminant.n.01 +aegyptopithecus.n.01 aegyptopithecus.n.01 +mole_rat.n.01 rodent.n.01 +staffordshire_bullterrier.n.01 canine.n.02 +bullock.n.01 bullock.n.01 +douroucouli.n.01 new_world_monkey.n.01 +durham.n.02 ungulate.n.01 +hack.n.08 horse.n.01 +field_spaniel.n.01 field_spaniel.n.01 +two-year-old_horse.n.01 ungulate.n.01 +european_wildcat.n.01 wildcat.n.03 +musk_ox.n.01 even-toed_ungulate.n.01 +rogue_elephant.n.01 mammal.n.01 +steenbok.n.01 antelope.n.01 +leopard.n.02 feline.n.01 +wombat.n.01 metatherian.n.01 +solo_man.n.01 mammal.n.01 +great_dane.n.01 placental.n.01 +armadillo.n.01 placental.n.01 +gorilla.n.01 mammal.n.01 +vizsla.n.01 canine.n.02 +saiga.n.01 bovid.n.01 +finback.n.01 placental.n.01 +yellow-throated_marten.n.01 marten.n.01 +new_world_porcupine.n.01 placental.n.01 +paranthropus.n.01 primate.n.02 +toy_terrier.n.01 toy_dog.n.01 +harrier.n.02 placental.n.01 +mountain_beaver.n.01 mammal.n.01 +siamese_cat.n.01 mammal.n.01 +tiger_cat.n.01 cat.n.01 +tamarau.n.01 bovid.n.01 +wood_mouse.n.01 mammal.n.01 +canada_porcupine.n.01 canada_porcupine.n.01 +dingo.n.01 placental.n.01 +labrador_retriever.n.01 retriever.n.01 +aardwolf.n.01 canine.n.02 +cro-magnon.n.01 primate.n.02 +hognose_bat.n.01 leafnose_bat.n.01 +rock_wallaby.n.01 rock_wallaby.n.01 +gaur.n.01 placental.n.01 +mapinguari.n.01 placental.n.01 +welsh_terrier.n.01 wirehair.n.01 +bongo.n.02 even-toed_ungulate.n.01 +lion.n.01 big_cat.n.01 +english_foxhound.n.01 hunting_dog.n.01 +rock_hyrax.n.01 hyrax.n.01 +dusky-footed_wood_rat.n.01 rodent.n.01 +dik-dik.n.01 placental.n.01 +siamese_cat.n.01 domestic_cat.n.01 +suslik.n.01 ground_squirrel.n.02 +setter.n.02 carnivore.n.01 +sorrel.n.05 placental.n.01 +rhesus.n.01 old_world_monkey.n.01 +two-toed_sloth.n.01 sloth.n.02 +thylacine.n.01 metatherian.n.01 +guanaco.n.01 guanaco.n.01 +lerot.n.01 rodent.n.01 +corgi.n.01 mammal.n.01 +world.n.08 homo.n.02 +longhorn.n.01 longhorn.n.01 +antelope.n.01 antelope.n.01 +naked_mole_rat.n.01 naked_mole_rat.n.01 +kob.n.01 kob.n.01 +sennenhunde.n.01 dog.n.01 +scotch_terrier.n.01 carnivore.n.01 +canada_lynx.n.01 cat.n.01 +norwich_terrier.n.01 dog.n.01 +loir.n.01 dormouse.n.01 +great_dane.n.01 dog.n.01 +mouse-eared_bat.n.01 carnivorous_bat.n.01 +coydog.n.01 wolf.n.01 +snowshoe_hare.n.01 hare.n.01 +brabancon_griffon.n.01 placental.n.01 +vaquita.n.01 aquatic_mammal.n.01 +pocket_mouse.n.01 rodent.n.01 +tree_wallaby.n.01 metatherian.n.01 +brocket.n.01 ungulate.n.01 +male_horse.n.01 equine.n.01 +american_badger.n.01 american_badger.n.01 +homo_erectus.n.01 placental.n.01 +burro.n.01 ass.n.03 +west_highland_white_terrier.n.01 placental.n.01 +common_lynx.n.01 placental.n.01 +crowbait.n.01 ungulate.n.01 +hack.n.08 mammal.n.01 +bouvier_des_flandres.n.01 carnivore.n.01 +pichiciago.n.01 mammal.n.01 +anteater.n.02 placental.n.01 +angora.n.04 cat.n.01 +black-footed_ferret.n.01 carnivore.n.01 +white-footed_mouse.n.01 mouse.n.01 +cougar.n.01 carnivore.n.01 +polar_hare.n.01 leporid.n.01 +water_vole.n.02 mammal.n.01 +field_spaniel.n.01 carnivore.n.01 +boarhound.n.01 carnivore.n.01 +syrian_bear.n.01 syrian_bear.n.01 +boston_bull.n.01 canine.n.02 +german_shepherd.n.01 working_dog.n.01 +pichiciago.n.01 edentate.n.01 +jennet.n.01 odd-toed_ungulate.n.01 +nonstarter.n.02 racehorse.n.01 +hampshire.n.02 bovid.n.01 +hog.n.03 even-toed_ungulate.n.01 +giant_schnauzer.n.01 canine.n.02 +wire-haired_fox_terrier.n.01 mammal.n.01 +musk_ox.n.01 musk_ox.n.01 +hooded_seal.n.01 earless_seal.n.01 +numbat.n.01 mammal.n.01 +sorrel.n.05 ungulate.n.01 +elk.n.01 elk.n.01 +cow_pony.n.01 horse.n.01 +bullock.n.01 bovid.n.01 +chacma.n.01 placental.n.01 +eastern_lowland_gorilla.n.01 placental.n.01 +goral.n.01 mammal.n.01 +eland.n.01 ruminant.n.01 +algeripithecus_minutus.n.01 mammal.n.01 +babirusa.n.01 placental.n.01 +tiglon.n.01 carnivore.n.01 +glutton.n.02 glutton.n.02 +vespertilian_bat.n.01 placental.n.01 +mule.n.01 odd-toed_ungulate.n.01 +yearling.n.02 ungulate.n.01 +brown_swiss.n.01 cattle.n.01 +appenzeller.n.01 carnivore.n.01 +new_world_porcupine.n.01 new_world_porcupine.n.01 +tarpan.n.01 equine.n.01 +burmese_cat.n.01 placental.n.01 +ibex.n.01 goat.n.01 +kangaroo_rat.n.01 kangaroo_rat.n.01 +pacer.n.01 pacer.n.01 +muntjac.n.01 placental.n.01 +lechwe.n.01 bovid.n.01 +merino.n.01 sheep.n.01 +walker_hound.n.01 canine.n.02 +boston_bull.n.01 terrier.n.01 +dachshund.n.01 dachshund.n.01 +tarpan.n.01 placental.n.01 +cape_buffalo.n.01 old_world_buffalo.n.01 +kangaroo_mouse.n.01 mammal.n.01 +homo_erectus.n.01 mammal.n.01 +pteropus_capestratus.n.01 fruit_bat.n.01 +silky_pocket_mouse.n.01 mammal.n.01 +spitz.n.01 canine.n.02 +reynard.n.01 canine.n.02 +yellowbelly_marmot.n.01 placental.n.01 +hippopotamus.n.01 mammal.n.01 +prairie_dog.n.01 rodent.n.01 +american_staffordshire_terrier.n.01 carnivore.n.01 +brittany_spaniel.n.01 hunting_dog.n.01 +pekinese.n.01 dog.n.01 +abyssinian.n.01 feline.n.01 +guereza.n.01 mammal.n.01 +tusker.n.01 tusker.n.01 +ibex.n.01 wild_goat.n.01 +hound.n.01 hound.n.01 +plantigrade_mammal.n.01 placental.n.01 +bactrian_camel.n.01 mammal.n.01 +hippopotamus.n.01 ungulate.n.01 +vaquita.n.01 cetacean.n.01 +pariah_dog.n.01 canine.n.02 +jaguarundi.n.01 feline.n.01 +ass.n.03 mammal.n.01 +fox_terrier.n.01 canine.n.02 +sewer_rat.n.01 sewer_rat.n.01 +eastern_dasyure.n.01 metatherian.n.01 +terrier.n.01 hunting_dog.n.01 +addax.n.01 antelope.n.01 +sloth_bear.n.01 placental.n.01 +peccary.n.01 even-toed_ungulate.n.01 +domestic_sheep.n.01 ungulate.n.01 +mangabey.n.01 placental.n.01 +weimaraner.n.01 weimaraner.n.01 +new_world_mouse.n.01 new_world_mouse.n.01 +carnivore.n.01 mammal.n.01 +musk_deer.n.01 ungulate.n.01 +spider_monkey.n.01 mammal.n.01 +alpaca.n.03 mammal.n.01 +kelpie.n.02 carnivore.n.01 +giant_schnauzer.n.01 dog.n.01 +old_world_beaver.n.01 old_world_beaver.n.01 +common_wallaby.n.01 wallaby.n.01 +edentate.n.01 edentate.n.01 +lechwe.n.01 even-toed_ungulate.n.01 +river_otter.n.01 musteline_mammal.n.01 +striped_skunk.n.01 carnivore.n.01 +ibizan_hound.n.01 hunting_dog.n.01 +fawn.n.02 ruminant.n.01 +hearing_dog.n.01 placental.n.01 +snake_muishond.n.01 placental.n.01 +irish_water_spaniel.n.01 spaniel.n.01 +toy_terrier.n.01 placental.n.01 +gee-gee.n.01 mammal.n.01 +working_dog.n.01 mammal.n.01 +bucking_bronco.n.01 horse.n.01 +fox.n.01 carnivore.n.01 +rottweiler.n.01 working_dog.n.01 +bandicoot.n.01 metatherian.n.01 +mole_rat.n.02 rodent.n.01 +saluki.n.01 carnivore.n.01 +sei_whale.n.01 aquatic_mammal.n.01 +welsh_pony.n.01 pony.n.05 +gerenuk.n.01 bovid.n.01 +black_rhinoceros.n.01 odd-toed_ungulate.n.01 +hamster.n.01 rodent.n.01 +protohippus.n.01 placental.n.01 +blackbuck.n.01 blackbuck.n.01 +leopardess.n.01 carnivore.n.01 +greater_swiss_mountain_dog.n.01 mammal.n.01 +stirk.n.01 stirk.n.01 +doe.n.02 doe.n.02 +morgan.n.06 equine.n.01 +longtail_weasel.n.01 longtail_weasel.n.01 +striped_hyena.n.01 carnivore.n.01 +brown_hyena.n.01 mammal.n.01 +anteater.n.02 edentate.n.01 +saddle_horse.n.01 placental.n.01 +slow_loris.n.01 primate.n.02 +cotswold.n.01 even-toed_ungulate.n.01 +patas.n.01 primate.n.02 +stoat.n.01 mammal.n.01 +snake_muishond.n.01 carnivore.n.01 +tarsius_glis.n.01 mammal.n.01 +brush-tailed_porcupine.n.01 brush-tailed_porcupine.n.01 +striped_hyena.n.01 mammal.n.01 +tatouay.n.01 mammal.n.01 +grevy's_zebra.n.01 mammal.n.01 +kit_fox.n.01 carnivore.n.01 +fox_terrier.n.01 hunting_dog.n.01 +assault.n.03 horse.n.01 +common_opossum.n.01 opossum.n.02 +bottle-nosed_whale.n.01 bottle-nosed_whale.n.01 +fawn.n.02 deer.n.01 +jackass_bat.n.01 jackass_bat.n.01 +pallid_bat.n.01 vespertilian_bat.n.01 +nail-tailed_wallaby.n.01 nail-tailed_wallaby.n.01 +coach_horse.n.01 coach_horse.n.01 +clydesdale_terrier.n.01 placental.n.01 +japanese_spaniel.n.01 placental.n.01 +jersey.n.05 even-toed_ungulate.n.01 +schnauzer.n.01 schnauzer.n.01 +puppy.n.01 puppy.n.01 +lakeland_terrier.n.01 placental.n.01 +trotting_horse.n.01 racehorse.n.01 +friesian.n.01 dairy_cattle.n.01 +hound.n.01 hunting_dog.n.01 +doberman.n.01 watchdog.n.02 +ibizan_hound.n.01 canine.n.02 +coonhound.n.01 hound.n.01 +french_bulldog.n.01 carnivore.n.01 +seattle_slew.n.01 horse.n.01 +binturong.n.01 civet.n.01 +grade.n.09 even-toed_ungulate.n.01 +draft_horse.n.01 workhorse.n.02 +seeing_eye_dog.n.01 working_dog.n.01 +ox.n.02 ruminant.n.01 +suslik.n.01 mammal.n.01 +jack.n.12 ass.n.03 +pug.n.01 canine.n.02 +lion_cub.n.01 big_cat.n.01 +brood_bitch.n.01 brood_bitch.n.01 +morgan.n.06 ungulate.n.01 +false_vampire.n.01 leafnose_bat.n.01 +giant_panda.n.01 procyonid.n.01 +thylacine.n.01 dasyurid_marsupial.n.01 +ewe.n.03 ewe.n.03 +australian_sea_lion.n.01 sea_lion.n.01 +wisent.n.01 placental.n.01 +guanaco.n.01 ungulate.n.01 +giant_schnauzer.n.01 mammal.n.01 +common_opossum.n.01 metatherian.n.01 +orangutan.n.01 great_ape.n.01 +bobcat.n.01 mammal.n.01 +european_wildcat.n.01 carnivore.n.01 +great_pyrenees.n.01 placental.n.01 +virginia_deer.n.01 ungulate.n.01 +english_foxhound.n.01 mammal.n.01 +mesohippus.n.01 odd-toed_ungulate.n.01 +welsh_terrier.n.01 mammal.n.01 +apar.n.01 armadillo.n.01 +wolf_pup.n.01 wolf_pup.n.01 +giant_armadillo.n.01 placental.n.01 +aegyptopithecus.n.01 mammal.n.01 +new_world_porcupine.n.01 mammal.n.01 +rabbit_ears.n.02 rabbit.n.01 +small_civet.n.01 placental.n.01 +japanese_spaniel.n.01 dog.n.01 +homo_sapiens_sapiens.n.01 mammal.n.01 +pointer.n.04 hunting_dog.n.01 +english_toy_spaniel.n.01 placental.n.01 +ox.n.01 mammal.n.01 +vizsla.n.01 pointer.n.04 +welsh_pony.n.01 odd-toed_ungulate.n.01 +ant_bear.n.01 anteater.n.02 +bulldog.n.01 carnivore.n.01 +spaniel.n.01 spaniel.n.01 +rhodesian_man.n.01 placental.n.01 +steed.n.01 saddle_horse.n.01 +tiger.n.02 placental.n.01 +titi.n.03 placental.n.01 +european_wildcat.n.01 feline.n.01 +saint_bernard.n.01 saint_bernard.n.01 +pied_lemming.n.01 pied_lemming.n.01 +bluetick.n.01 hunting_dog.n.01 +orange_bat.n.01 leafnose_bat.n.01 +charger.n.01 equine.n.01 +vixen.n.02 vixen.n.02 +wildcat.n.03 wildcat.n.03 +common_shrew.n.01 mammal.n.01 +gaur.n.01 asian_wild_ox.n.01 +galloway.n.02 mammal.n.01 +black_squirrel.n.01 squirrel.n.01 +pony.n.01 placental.n.01 +old_world_buffalo.n.01 placental.n.01 +standard_schnauzer.n.01 carnivore.n.01 +hognose_bat.n.01 mammal.n.01 +miniature_schnauzer.n.01 hunting_dog.n.01 +great_pyrenees.n.01 dog.n.01 +bottle-nosed_whale.n.01 cetacean.n.01 +saber-toothed_tiger.n.01 placental.n.01 +raccoon_dog.n.01 canine.n.02 +samoyed.n.03 spitz.n.01 +ibizan_hound.n.01 dog.n.01 +fossorial_mammal.n.01 mammal.n.01 +maltese_dog.n.01 toy_dog.n.01 +norfolk_terrier.n.01 canine.n.02 +prancer.n.01 mammal.n.01 +rice_rat.n.01 rodent.n.01 +hazel_mouse.n.01 placental.n.01 +king_charles_spaniel.n.01 toy_spaniel.n.01 +pony.n.01 ungulate.n.01 +domestic_ass.n.01 domestic_ass.n.01 +water_spaniel.n.01 water_spaniel.n.01 +tree_wallaby.n.01 kangaroo.n.01 +bobcat.n.01 bobcat.n.01 +southern_flying_squirrel.n.01 american_flying_squirrel.n.01 +rhodesian_ridgeback.n.01 rhodesian_ridgeback.n.01 +yak.n.02 bovid.n.01 +snow_leopard.n.01 snow_leopard.n.01 +koala.n.01 phalanger.n.01 +onager.n.02 placental.n.01 +bird_dog.n.01 canine.n.02 +barren_ground_caribou.n.01 even-toed_ungulate.n.01 +white-tailed_jackrabbit.n.01 placental.n.01 +short-tailed_shrew.n.01 insectivore.n.01 +giant_eland.n.01 eland.n.01 +common_dolphin.n.01 cetacean.n.01 +sir_barton.n.01 racehorse.n.01 +spotted_hyena.n.01 spotted_hyena.n.01 +staghound.n.01 mammal.n.01 +cavalry_horse.n.01 warhorse.n.03 +pangolin.n.01 pangolin.n.01 +gayal.n.01 ruminant.n.01 +rottweiler.n.01 canine.n.02 +nonstarter.n.02 odd-toed_ungulate.n.01 +tennessee_walker.n.01 odd-toed_ungulate.n.01 +impala.n.01 ungulate.n.01 +boskop_man.n.01 mammal.n.01 +white_elephant.n.02 elephant.n.01 +zinjanthropus.n.01 primate.n.02 +grampus.n.02 mammal.n.01 +bay.n.07 bay.n.07 +english_toy_spaniel.n.01 english_toy_spaniel.n.01 +coach_horse.n.01 placental.n.01 +aurochs.n.02 bovid.n.01 +right_whale.n.01 right_whale.n.01 +french_bulldog.n.01 canine.n.02 +rock_wallaby.n.01 mammal.n.01 +baleen_whale.n.01 mammal.n.01 +thoroughbred.n.02 thoroughbred.n.02 +frosted_bat.n.01 bat.n.01 +primate.n.02 placental.n.01 +white_whale.n.01 mammal.n.01 +wheel_horse.n.01 horse.n.01 +horseshoe_bat.n.01 horseshoe_bat.n.01 +labrador_retriever.n.01 hunting_dog.n.01 +indian_buffalo.n.01 indian_buffalo.n.01 +springbok.n.01 ruminant.n.01 +tortoiseshell.n.03 feline.n.01 +pinscher.n.01 canine.n.02 +markhor.n.01 ungulate.n.01 +bull_mastiff.n.01 canine.n.02 +rhinoceros.n.01 rhinoceros.n.01 +white-footed_mouse.n.01 placental.n.01 +puku.n.01 ruminant.n.01 +hyena.n.01 carnivore.n.01 +meadow_vole.n.01 vole.n.01 +staffordshire_bullterrier.n.01 staffordshire_bullterrier.n.01 +maltese.n.03 placental.n.01 +collie.n.01 mammal.n.01 +mountain_nyala.n.01 ruminant.n.01 +pony.n.05 placental.n.01 +dasyurid_marsupial.n.01 mammal.n.01 +griffon.n.03 mammal.n.01 +brown_bear.n.01 mammal.n.01 +fox.n.01 fox.n.01 +egyptian_cat.n.01 egyptian_cat.n.01 +long-eared_bat.n.01 mammal.n.01 +silverback.n.01 gorilla.n.01 +indian_mongoose.n.01 placental.n.01 +meerkat.n.01 placental.n.01 +english_setter.n.01 english_setter.n.01 +hispid_pocket_mouse.n.01 pocket_mouse.n.01 +dandie_dinmont.n.01 hunting_dog.n.01 +hare.n.01 lagomorph.n.01 +pooch.n.01 carnivore.n.01 +seizure-alert_dog.n.01 mammal.n.01 +mouse-eared_bat.n.01 placental.n.01 +leveret.n.01 mammal.n.01 +eastern_chimpanzee.n.01 mammal.n.01 +seattle_slew.n.01 racehorse.n.01 +indian_buffalo.n.01 bovid.n.01 +mara.n.02 rodent.n.01 +water_dog.n.02 canine.n.02 +tibetan_mastiff.n.01 carnivore.n.01 +pachyderm.n.01 pachyderm.n.01 +flying_phalanger.n.01 marsupial.n.01 +labrador_retriever.n.01 mammal.n.01 +tom.n.02 mammal.n.01 +trotting_horse.n.01 horse.n.01 +argali.n.01 placental.n.01 +baronduki.n.01 rodent.n.01 +guinea_pig.n.02 placental.n.01 +banded_palm_civet.n.01 viverrine.n.01 +palfrey.n.01 palfrey.n.01 +elephant.n.01 proboscidean.n.01 +norwegian_elkhound.n.01 norwegian_elkhound.n.01 +hearing_dog.n.01 carnivore.n.01 +eohippus.n.01 eohippus.n.01 +bluetick.n.01 placental.n.01 +gaur.n.01 gaur.n.01 +marsupial.n.01 marsupial.n.01 +affenpinscher.n.01 carnivore.n.01 +mantled_ground_squirrel.n.01 mantled_ground_squirrel.n.01 +kangaroo_rat.n.01 pocket_rat.n.01 +chestnut.n.06 equine.n.01 +red_poll.n.01 cattle.n.01 +giraffe.n.01 ungulate.n.01 +mastodon.n.01 proboscidean.n.01 +miniature_pinscher.n.01 dog.n.01 +pointer.n.04 placental.n.01 +bay.n.07 mammal.n.01 +flying_lemur.n.01 flying_lemur.n.01 +dryopithecine.n.01 hominid.n.01 +carnivore.n.01 placental.n.01 +tree_shrew.n.01 tree_shrew.n.01 +black_sheep.n.02 placental.n.01 +ground_sloth.n.01 mammal.n.01 +rudapithecus.n.01 rudapithecus.n.01 +takin.n.01 takin.n.01 +giant_kangaroo.n.01 giant_kangaroo.n.01 +binturong.n.01 binturong.n.01 +mouser.n.01 mouser.n.01 +irish_water_spaniel.n.01 carnivore.n.01 +chestnut.n.06 horse.n.01 +banded_palm_civet.n.01 mammal.n.01 +pronghorn.n.01 ruminant.n.01 +brown_rat.n.01 brown_rat.n.01 +pinche.n.01 pinche.n.01 +water_buffalo.n.01 old_world_buffalo.n.01 +polo_pony.n.01 polo_pony.n.01 +ant_bear.n.01 edentate.n.01 +tayra.n.01 tayra.n.01 +brabancon_griffon.n.01 brabancon_griffon.n.01 +yorkshire_terrier.n.01 canine.n.02 +appaloosa.n.01 equine.n.01 +ayrshire.n.01 dairy_cattle.n.01 +basenji.n.01 canine.n.02 +manul.n.01 carnivore.n.01 +gopher.n.04 pocket_rat.n.01 +whitetail_prairie_dog.n.01 prairie_dog.n.01 +striped_muishond.n.01 mammal.n.01 +bactrian_camel.n.01 placental.n.01 +sewer_rat.n.01 rat.n.01 +buckskin.n.01 saddle_horse.n.01 +pygmy_marmoset.n.01 primate.n.02 +southern_bog_lemming.n.01 placental.n.01 +tiger_cat.n.02 tiger_cat.n.02 +shire.n.02 draft_horse.n.01 +dog.n.01 carnivore.n.01 +whirlaway.n.01 thoroughbred.n.02 +european_wood_mouse.n.01 rodent.n.01 +canada_porcupine.n.01 new_world_porcupine.n.01 +sable_antelope.n.01 ungulate.n.01 +mandrill.n.01 mammal.n.01 +eastern_dasyure.n.01 eastern_dasyure.n.01 +large_civet.n.01 large_civet.n.01 +kangaroo_mouse.n.01 rodent.n.01 +cave_myotis.n.01 mammal.n.01 +coypu.n.01 placental.n.01 +native_cat.n.01 dasyure.n.01 +liver-spotted_dalmatian.n.01 dog.n.01 +kerry_blue_terrier.n.01 mammal.n.01 +miniature_pinscher.n.01 placental.n.01 +fissipedia.n.01 mammal.n.01 +spearnose_bat.n.01 leafnose_bat.n.01 +prancer.n.01 ungulate.n.01 +western_grey_squirrel.n.01 mammal.n.01 +cuscus.n.01 phalanger.n.01 +bedlington_terrier.n.01 mammal.n.01 +nyala.n.02 harnessed_antelope.n.01 +hart.n.03 red_deer.n.01 +pacer.n.01 odd-toed_ungulate.n.01 +standard_schnauzer.n.01 terrier.n.01 +beaked_whale.n.01 mammal.n.01 +american_badger.n.01 placental.n.01 +waterbuck.n.01 mammal.n.01 +pygmy_chimpanzee.n.01 great_ape.n.01 +mouse.n.01 rodent.n.01 +loir.n.01 placental.n.01 +cayuse.n.01 placental.n.01 +beagle.n.01 hound.n.01 +northern_bog_lemming.n.01 placental.n.01 +grey_lemming.n.01 mammal.n.01 +australopithecus_afarensis.n.01 australopithecus_afarensis.n.01 +gerbil.n.01 gerbil.n.01 +blue_point_siamese.n.01 blue_point_siamese.n.01 +eland.n.01 eland.n.01 +hyena.n.01 mammal.n.01 +liver_chestnut.n.01 equine.n.01 +asian_wild_ox.n.01 asian_wild_ox.n.01 +dinocerate.n.01 mammal.n.01 +nonstarter.n.02 equine.n.01 +dinoceras.n.01 mammal.n.01 +caribou.n.01 ruminant.n.01 +exmoor.n.01 sheep.n.01 +eastern_chipmunk.n.01 rodent.n.01 +cinnamon_bear.n.01 placental.n.01 +freetail.n.01 placental.n.01 +quarter_horse.n.01 mammal.n.01 +santa_gertrudis.n.01 bovid.n.01 +boar.n.02 swine.n.01 +brood_bitch.n.01 bitch.n.04 +black-tailed_deer.n.01 mammal.n.01 +long-tailed_porcupine.n.01 placental.n.01 +warthog.n.01 placental.n.01 +greater_kudu.n.01 even-toed_ungulate.n.01 +panther.n.02 panther.n.02 +ichneumon.n.01 mammal.n.01 +homo_sapiens_sapiens.n.01 homo_sapiens_sapiens.n.01 +grizzly.n.01 carnivore.n.01 +saluki.n.01 canine.n.02 +langur.n.01 old_world_monkey.n.01 +potto.n.02 mammal.n.01 +markhor.n.01 ruminant.n.01 +chipmunk.n.01 placental.n.01 +belgian_hare.n.01 mammal.n.01 +peludo.n.01 edentate.n.01 +norwich_terrier.n.01 terrier.n.01 +macaque.n.01 macaque.n.01 +lakeland_terrier.n.01 canine.n.02 +silky_terrier.n.01 mammal.n.01 +meadow_vole.n.01 mammal.n.01 +cashmere_goat.n.01 ungulate.n.01 +exmoor.n.02 placental.n.01 +sporting_dog.n.01 hunting_dog.n.01 +pronghorn.n.01 ungulate.n.01 +galloway.n.02 bovine.n.01 +dolphin.n.02 toothed_whale.n.01 +gayal.n.01 asian_wild_ox.n.01 +harnessed_antelope.n.01 bovid.n.01 +bernese_mountain_dog.n.01 carnivore.n.01 +hack.n.08 saddle_horse.n.01 +woolly_rhinoceros.n.01 woolly_rhinoceros.n.01 +shetland_pony.n.01 shetland_pony.n.01 +brocket.n.02 red_deer.n.01 +hack.n.07 odd-toed_ungulate.n.01 +schipperke.n.01 carnivore.n.01 +old_world_least_weasel.n.01 placental.n.01 +tamarin.n.01 placental.n.01 +entlebucher.n.01 canine.n.02 +southern_flying_squirrel.n.01 mammal.n.01 +hereford.n.01 cattle.n.01 +tiger_cub.n.01 tiger_cub.n.01 +pteropus_hypomelanus.n.01 bat.n.01 +pollard.n.02 even-toed_ungulate.n.01 +barbary_ape.n.01 mammal.n.01 +bedlington_terrier.n.01 placental.n.01 +peludo.n.01 placental.n.01 +proboscidean.n.01 mammal.n.01 +saiga.n.01 ruminant.n.01 +orangutan.n.01 placental.n.01 +australian_sea_lion.n.01 pinniped_mammal.n.01 +mastiff.n.01 carnivore.n.01 +chigetai.n.01 mammal.n.01 +baleen_whale.n.01 cetacean.n.01 +kaffir_cat.n.01 carnivore.n.01 +mesohippus.n.01 equine.n.01 +guenon.n.01 primate.n.02 +australopithecus_robustus.n.01 placental.n.01 +nilgai.n.01 nilgai.n.01 +alaskan_brown_bear.n.01 carnivore.n.01 +red_bat.n.01 bat.n.01 +caribou.n.01 placental.n.01 +cape_buffalo.n.01 mammal.n.01 +blacktail_jackrabbit.n.01 hare.n.01 +hackney.n.02 ungulate.n.01 +canine.n.02 carnivore.n.01 +fallow_deer.n.01 placental.n.01 +sable.n.05 mammal.n.01 +blacktail_prairie_dog.n.01 blacktail_prairie_dog.n.01 +cairn.n.02 canine.n.02 +bellwether.n.02 even-toed_ungulate.n.01 +monkey.n.01 placental.n.01 +ox.n.01 cattle.n.01 +hinny.n.01 mammal.n.01 +stag.n.02 stag.n.02 +brewer's_mole.n.01 brewer's_mole.n.01 +phyllostomus_hastatus.n.01 carnivorous_bat.n.01 +cheviot.n.01 ruminant.n.01 +phyllostomus_hastatus.n.01 leafnose_bat.n.01 +eohippus.n.01 horse.n.01 +mediterranean_water_shrew.n.01 insectivore.n.01 +ruminant.n.01 placental.n.01 +silky_tamarin.n.01 primate.n.02 +steller_sea_lion.n.01 eared_seal.n.01 +snake_muishond.n.01 weasel.n.02 +bull.n.11 bull.n.11 +mustang.n.01 placental.n.01 +flying_lemur.n.01 mammal.n.01 +plains_pocket_gopher.n.01 gopher.n.04 +ibizan_hound.n.01 carnivore.n.01 +mountain_zebra.n.01 ungulate.n.01 +cashmere_goat.n.01 placental.n.01 +flat-coated_retriever.n.01 dog.n.01 +water_rat.n.03 rodent.n.01 +pygmy_sperm_whale.n.01 aquatic_mammal.n.01 +siberian_husky.n.01 mammal.n.01 +river_dolphin.n.01 dolphin.n.02 +black_fox.n.01 black_fox.n.01 +talapoin.n.01 monkey.n.01 +brittany_spaniel.n.01 placental.n.01 +africander.n.01 cattle.n.01 +zoril.n.01 zoril.n.01 +meadow_vole.n.01 placental.n.01 +australian_terrier.n.01 dog.n.01 +rock_hyrax.n.01 placental.n.01 +rambouillet.n.01 ungulate.n.01 +agouti.n.01 mammal.n.01 +pouched_mouse.n.01 dasyurid_marsupial.n.01 +american_black_bear.n.01 carnivore.n.01 +kiang.n.01 ass.n.03 +golden_retriever.n.01 carnivore.n.01 +wolfhound.n.01 placental.n.01 +welsh_terrier.n.01 welsh_terrier.n.01 +hooded_seal.n.01 mammal.n.01 +old_world_buffalo.n.01 ruminant.n.01 +timber_wolf.n.01 canine.n.02 +nilgai.n.01 ungulate.n.01 +dark_horse.n.02 dark_horse.n.02 +atlantic_walrus.n.01 pinniped_mammal.n.01 +fruit_bat.n.01 mammal.n.01 +barbary_ape.n.01 old_world_monkey.n.01 +megatherian.n.01 placental.n.01 +porpoise.n.01 placental.n.01 +guide_dog.n.01 carnivore.n.01 +grade.n.09 ungulate.n.01 +toy_spaniel.n.01 toy_dog.n.01 +coondog.n.01 dog.n.01 +kanchil.n.01 even-toed_ungulate.n.01 +flat-coated_retriever.n.01 hunting_dog.n.01 +eland.n.01 ungulate.n.01 +gibbon.n.02 primate.n.02 +nanny.n.02 ruminant.n.01 +welsh.n.03 bovine.n.01 +siamese_cat.n.01 siamese_cat.n.01 +duplicidentata.n.01 placental.n.01 +dormouse.n.01 mammal.n.01 +peba.n.01 placental.n.01 +puppy.n.01 mammal.n.01 +porker.n.01 hog.n.03 +dik-dik.n.01 dik-dik.n.01 +proconsul.n.03 mammal.n.01 +aegyptopithecus.n.01 primate.n.02 +french_bulldog.n.01 dog.n.01 +irish_setter.n.01 canine.n.02 +flat-coated_retriever.n.01 canine.n.02 +right_whale.n.01 cetacean.n.01 +bearded_seal.n.01 mammal.n.01 +napu.n.01 mammal.n.01 +douroucouli.n.01 douroucouli.n.01 +sealyham_terrier.n.01 sealyham_terrier.n.01 +chacma.n.01 chacma.n.01 +eastern_lowland_gorilla.n.01 eastern_lowland_gorilla.n.01 +brown_rat.n.01 mammal.n.01 +bowhead.n.01 aquatic_mammal.n.01 +little_brown_bat.n.01 vespertilian_bat.n.01 +dalmatian.n.02 carnivore.n.01 +mastiff.n.01 working_dog.n.01 +cob.n.02 cob.n.02 +wharf_rat.n.02 mammal.n.01 +packrat.n.02 mammal.n.01 +norwich_terrier.n.01 carnivore.n.01 +dandie_dinmont.n.01 canine.n.02 +nanny.n.02 ungulate.n.01 +crab-eating_dog.n.01 crab-eating_dog.n.01 +dun.n.01 equine.n.01 +heifer.n.01 even-toed_ungulate.n.01 +chigetai.n.01 placental.n.01 +pooch.n.01 placental.n.01 +housedog.n.01 placental.n.01 +charolais.n.01 bovid.n.01 +dik-dik.n.01 bovid.n.01 +irish_setter.n.01 hunting_dog.n.01 +coypu.n.01 mammal.n.01 +wild_goat.n.01 even-toed_ungulate.n.01 +sand_rat.n.02 sand_rat.n.02 +aperea.n.01 cavy.n.01 +norwegian_elkhound.n.01 carnivore.n.01 +rhinoceros.n.01 ungulate.n.01 +phenacomys.n.01 mammal.n.01 +pinto.n.01 placental.n.01 +sable_antelope.n.01 sable_antelope.n.01 +nail-tailed_wallaby.n.01 marsupial.n.01 +hind.n.02 mammal.n.01 +aoudad.n.01 ungulate.n.01 +manul.n.01 mammal.n.01 +tortoiseshell.n.03 mammal.n.01 +springbok.n.01 bovid.n.01 +southern_bog_lemming.n.01 mammal.n.01 +western_chimpanzee.n.01 mammal.n.01 +prancer.n.01 placental.n.01 +cotton_mouse.n.01 rodent.n.01 +pipistrelle.n.01 carnivorous_bat.n.01 +chow.n.03 canine.n.02 +bonnet_macaque.n.01 monkey.n.01 +dairy_cattle.n.01 ungulate.n.01 +proboscis_monkey.n.01 primate.n.02 +gallant_fox.n.01 equine.n.01 +yak.n.02 mammal.n.01 +pocket_rat.n.01 placental.n.01 +assault.n.03 placental.n.01 +patas.n.01 mammal.n.01 +howler_monkey.n.01 new_world_monkey.n.01 +stallion.n.01 equine.n.01 +saber-toothed_tiger.n.01 big_cat.n.01 +staffordshire_bullterrier.n.01 carnivore.n.01 +domestic_goat.n.01 placental.n.01 +banteng.n.01 bovid.n.01 +atlantic_bottlenose_dolphin.n.01 mammal.n.01 +dachshund.n.01 canine.n.02 +wild_ass.n.01 placental.n.01 +alaska_fur_seal.n.01 aquatic_mammal.n.01 +marmoset.n.01 mammal.n.01 +domestic_goat.n.01 bovid.n.01 +dwarf_sperm_whale.n.01 placental.n.01 +cow.n.01 ruminant.n.01 +steeplechaser.n.01 odd-toed_ungulate.n.01 +sperm_whale.n.01 mammal.n.01 +bellwether.n.02 mammal.n.01 +sir_barton.n.01 equine.n.01 +california_sea_lion.n.01 california_sea_lion.n.01 +santa_gertrudis.n.01 even-toed_ungulate.n.01 +grasshopper_mouse.n.01 rodent.n.01 +bobcat.n.01 wildcat.n.03 +japanese_deer.n.01 even-toed_ungulate.n.01 +english_foxhound.n.01 carnivore.n.01 +sable_antelope.n.01 mammal.n.01 +devon.n.02 placental.n.01 +saluki.n.01 placental.n.01 +cattle.n.01 placental.n.01 +bullock.n.01 ungulate.n.01 +briard.n.01 shepherd_dog.n.01 +leopardess.n.01 placental.n.01 +rock_wallaby.n.01 kangaroo.n.01 +striped_hyena.n.01 placental.n.01 +badger.n.02 carnivore.n.01 +clydesdale.n.01 odd-toed_ungulate.n.01 +cob.n.02 placental.n.01 +pygmy_mouse.n.01 mouse.n.01 +tibetan_mastiff.n.01 canine.n.02 +yellow-throated_marten.n.01 musteline_mammal.n.01 +badger.n.02 musteline_mammal.n.01 +bluetick.n.01 bluetick.n.01 +pygmy_mouse.n.01 mammal.n.01 +marsh_hare.n.01 leporid.n.01 +sivapithecus.n.01 placental.n.01 +groundhog.n.01 mammal.n.01 +greater_swiss_mountain_dog.n.01 greater_swiss_mountain_dog.n.01 +foxhound.n.01 foxhound.n.01 +dhole.n.01 wild_dog.n.01 +angora.n.04 feline.n.01 +fox_terrier.n.01 terrier.n.01 +giraffe.n.01 giraffe.n.01 +palomino.n.01 odd-toed_ungulate.n.01 +ram.n.05 even-toed_ungulate.n.01 +wolverine.n.03 carnivore.n.01 +meerkat.n.01 mammal.n.01 +lesser_rorqual.n.01 mammal.n.01 +lucy.n.01 australopithecus_afarensis.n.01 +wire-haired_fox_terrier.n.01 fox_terrier.n.01 +giant_armadillo.n.01 edentate.n.01 +greater_kudu.n.01 ruminant.n.01 +napu.n.01 ungulate.n.01 +mexican_pocket_mouse.n.01 pocket_mouse.n.01 +prairie_vole.n.01 mammal.n.01 +chamois.n.02 goat_antelope.n.01 +bovine.n.01 mammal.n.01 +bernese_mountain_dog.n.01 placental.n.01 +boarhound.n.01 hound.n.01 +gaur.n.01 ox.n.02 +angora.n.03 mammal.n.01 +tiger_cat.n.01 mammal.n.01 +blackbuck.n.01 bovid.n.01 +maltese.n.03 mammal.n.01 +miniature_schnauzer.n.01 placental.n.01 +otter_shrew.n.01 insectivore.n.01 +phyllostomus_hastatus.n.01 bat.n.01 +silverback.n.01 placental.n.01 +cairn.n.02 mammal.n.01 +banteng.n.01 bovine.n.01 +police_dog.n.01 placental.n.01 +blackbuck.n.01 placental.n.01 +asian_wild_ox.n.01 bovine.n.01 +brown_bat.n.01 brown_bat.n.01 +red_bat.n.01 mammal.n.01 +samoyed.n.03 mammal.n.01 +affenpinscher.n.01 working_dog.n.01 +attack_dog.n.01 watchdog.n.02 +okapi.n.01 giraffe.n.01 +zoril.n.01 musteline_mammal.n.01 +komondor.n.01 mammal.n.01 +american_water_spaniel.n.01 spaniel.n.01 +spider_monkey.n.01 placental.n.01 +wallaby.n.01 metatherian.n.01 +western_chimpanzee.n.01 great_ape.n.01 +flying_fox.n.01 mammal.n.01 +american_red_squirrel.n.01 mammal.n.01 +java_man.n.01 homo_erectus.n.01 +sperm_whale.n.01 placental.n.01 +police_dog.n.01 police_dog.n.01 +fawn.n.02 ungulate.n.01 +hearing_dog.n.01 dog.n.01 +belgian_sheepdog.n.01 mammal.n.01 +tiger_cub.n.01 big_cat.n.01 +snake_muishond.n.01 musteline_mammal.n.01 +clydesdale_terrier.n.01 mammal.n.01 +squirrel.n.01 rodent.n.01 +impala.n.01 placental.n.01 +suslik.n.01 squirrel.n.01 +silver_fox.n.01 red_fox.n.03 +chickeree.n.01 placental.n.01 +polo_pony.n.01 odd-toed_ungulate.n.01 +sorrel.n.05 mammal.n.01 +otterhound.n.01 dog.n.01 +hudson_bay_collared_lemming.n.01 rodent.n.01 +black_sheep.n.02 black_sheep.n.02 +blacktail_prairie_dog.n.01 placental.n.01 +flying_mouse.n.01 mammal.n.01 +lioness.n.01 placental.n.01 +american_bison.n.01 placental.n.01 +hooded_skunk.n.01 musteline_mammal.n.01 +working_dog.n.01 carnivore.n.01 +western_grey_squirrel.n.01 tree_squirrel.n.01 +sir_barton.n.01 ungulate.n.01 +schnauzer.n.01 terrier.n.01 +american_marten.n.01 american_marten.n.01 +mandrill.n.01 mandrill.n.01 +fossa.n.03 viverrine.n.01 +zebra.n.01 odd-toed_ungulate.n.01 +collared_peccary.n.01 ungulate.n.01 +rambouillet.n.01 sheep.n.01 +walrus.n.01 pinniped_mammal.n.01 +rhodesian_man.n.01 rhodesian_man.n.01 +wild_boar.n.01 even-toed_ungulate.n.01 +northern_flying_squirrel.n.01 mammal.n.01 +taguan.n.01 rodent.n.01 +english_toy_spaniel.n.01 mammal.n.01 +sorrel.n.05 equine.n.01 +brewer's_mole.n.01 insectivore.n.01 +chickeree.n.01 tree_squirrel.n.01 +snowshoe_hare.n.01 placental.n.01 +shetland_pony.n.01 odd-toed_ungulate.n.01 +aberdeen_angus.n.01 placental.n.01 +pacer.n.02 pacer.n.02 +masked_shrew.n.01 insectivore.n.01 +new_world_least_weasel.n.01 placental.n.01 +morgan.n.06 odd-toed_ungulate.n.01 +uakari.n.01 monkey.n.01 +saiga.n.01 placental.n.01 +dall_sheep.n.01 dall_sheep.n.01 +kudu.n.01 kudu.n.01 +gorilla.n.01 ape.n.01 +bluetick.n.01 mammal.n.01 +saint_bernard.n.01 placental.n.01 +european_water_shrew.n.01 insectivore.n.01 +opossum_rat.n.01 metatherian.n.01 +new_world_mouse.n.01 mammal.n.01 +silver_fox.n.01 mammal.n.01 +asiatic_flying_squirrel.n.01 placental.n.01 +shepherd_dog.n.01 mammal.n.01 +blenheim_spaniel.n.01 canine.n.02 +serow.n.01 mammal.n.01 +bighorn.n.02 ungulate.n.01 +wolfhound.n.01 canine.n.02 +bassarisk.n.01 procyonid.n.01 +kob.n.01 placental.n.01 +prosimian.n.01 primate.n.02 +ratel.n.01 musteline_mammal.n.01 +manx.n.02 manx.n.02 +hazel_mouse.n.01 hazel_mouse.n.01 +schipperke.n.01 schipperke.n.01 +drill.n.02 placental.n.01 +brown_bat.n.01 mammal.n.01 +beef.n.01 bovid.n.01 +duplicidentata.n.01 mammal.n.01 +domestic_sheep.n.01 domestic_sheep.n.01 +fruit_bat.n.01 fruit_bat.n.01 +ungulate.n.01 placental.n.01 +kaffir_cat.n.01 placental.n.01 +platypus.n.01 platypus.n.01 +pole_horse.n.01 pole_horse.n.01 +antelope.n.01 placental.n.01 +mudder.n.01 mammal.n.01 +sei_whale.n.01 rorqual.n.01 +miniature_schnauzer.n.01 mammal.n.01 +atlantic_bottlenose_dolphin.n.01 atlantic_bottlenose_dolphin.n.01 +eastern_chimpanzee.n.01 eastern_chimpanzee.n.01 +cryptoprocta.n.01 cryptoprocta.n.01 +madagascar_cat.n.01 madagascar_cat.n.01 +coyote.n.01 mammal.n.01 +australopithecus_afarensis.n.01 placental.n.01 +tatouay.n.01 armadillo.n.01 +plains_pocket_gopher.n.01 pocket_rat.n.01 +asiatic_flying_squirrel.n.01 asiatic_flying_squirrel.n.01 +tarsius_glis.n.01 tarsius_glis.n.01 +american_foxhound.n.01 american_foxhound.n.01 +stepper.n.03 mammal.n.01 +otterhound.n.01 canine.n.02 +clumber.n.01 carnivore.n.01 +marten.n.01 musteline_mammal.n.01 +long-tailed_porcupine.n.01 porcupine.n.01 +kaffir_cat.n.01 wildcat.n.03 +musk_ox.n.01 placental.n.01 +water_spaniel.n.01 hunting_dog.n.01 +weasel.n.02 placental.n.01 +groundhog.n.01 placental.n.01 +cactus_mouse.n.01 rodent.n.01 +redbone.n.01 mammal.n.01 +gazelle.n.01 antelope.n.01 +tiger_cat.n.02 domestic_cat.n.01 +heifer.n.01 bovine.n.01 +bucking_bronco.n.01 bronco.n.01 +ayrshire.n.01 ungulate.n.01 +rabbit-eared_bandicoot.n.01 rabbit-eared_bandicoot.n.01 +gib.n.02 gib.n.02 +lion.n.01 placental.n.01 +groenendael.n.01 canine.n.02 +river_dolphin.n.01 placental.n.01 +baleen_whale.n.01 placental.n.01 +rudapithecus.n.01 primate.n.02 +springer.n.02 mammal.n.01 +lesser_ape.n.01 anthropoid_ape.n.01 +titi.n.03 primate.n.02 +dandie_dinmont.n.01 placental.n.01 +stallion.n.01 horse.n.01 +toy_poodle.n.01 toy_poodle.n.01 +pallid_bat.n.01 carnivorous_bat.n.01 +dwarf_sperm_whale.n.01 dwarf_sperm_whale.n.01 +police_dog.n.01 dog.n.01 +marsupial.n.01 metatherian.n.01 +giant_eland.n.01 bovid.n.01 +spotted_skunk.n.01 musteline_mammal.n.01 +common_eland.n.01 mammal.n.01 +finback.n.01 baleen_whale.n.01 +sivapithecus.n.01 primate.n.02 +bird_dog.n.01 placental.n.01 +deer_mouse.n.01 mammal.n.01 +welsh_springer_spaniel.n.01 welsh_springer_spaniel.n.01 +pika.n.01 mammal.n.01 +cotton_mouse.n.01 placental.n.01 +bullock.n.02 mammal.n.01 +edentate.n.01 placental.n.01 +merino.n.01 merino.n.01 +eastern_pipistrel.n.01 placental.n.01 +eastern_cottontail.n.01 leporid.n.01 +dalmatian.n.02 placental.n.01 +fisher.n.02 carnivore.n.01 +otter.n.02 musteline_mammal.n.01 +german_shepherd.n.01 dog.n.01 +africander.n.01 bovid.n.01 +mylodon.n.01 edentate.n.01 +beaked_whale.n.01 cetacean.n.01 +field_spaniel.n.01 canine.n.02 +grey.n.07 placental.n.01 +homo_sapiens.n.01 placental.n.01 +hinny.n.01 odd-toed_ungulate.n.01 +spitz.n.01 placental.n.01 +finback.n.01 mammal.n.01 +urial.n.01 wild_sheep.n.01 +siamang.n.01 lesser_ape.n.01 +viverrine.n.01 mammal.n.01 +megatherian.n.01 edentate.n.01 +norwich_terrier.n.01 canine.n.02 +dandie_dinmont.n.01 carnivore.n.01 +grey_fox.n.01 carnivore.n.01 +little_chief_hare.n.01 little_chief_hare.n.01 +moke.n.01 odd-toed_ungulate.n.01 +rambouillet.n.01 bovid.n.01 +grey_whale.n.01 mammal.n.01 +roe_deer.n.01 deer.n.01 +mastiff.n.01 canine.n.02 +peking_man.n.01 placental.n.01 +ratel.n.01 placental.n.01 +white_whale.n.01 whale.n.02 +grasshopper_mouse.n.01 wood_rat.n.01 +boxer.n.04 boxer.n.04 +tiger_cat.n.02 carnivore.n.01 +ape.n.01 mammal.n.01 +charolais.n.01 ruminant.n.01 +common_wallaby.n.01 marsupial.n.01 +eastern_woodrat.n.01 wood_rat.n.01 +dun.n.01 mammal.n.01 +steenbok.n.01 placental.n.01 +blue_whale.n.01 whale.n.02 +two-toed_sloth.n.01 mammal.n.01 +morgan.n.06 mammal.n.01 +tom.n.02 domestic_cat.n.01 +old_english_sheepdog.n.01 dog.n.01 +housedog.n.01 mammal.n.01 +homo_soloensis.n.01 hominid.n.01 +three-year-old_horse.n.01 odd-toed_ungulate.n.01 +exmoor.n.01 ungulate.n.01 +pony.n.02 racehorse.n.01 +pariah_dog.n.01 placental.n.01 +steller_sea_lion.n.01 sea_lion.n.01 +angora.n.04 mammal.n.01 +gazella_subgutturosa.n.01 bovid.n.01 +central_chimpanzee.n.01 placental.n.01 +sand_rat.n.01 mammal.n.01 +mongoose.n.01 mongoose.n.01 +cetacean.n.01 cetacean.n.01 +african_wild_ass.n.01 mammal.n.01 +flickertail.n.01 rodent.n.01 +cuscus.n.01 cuscus.n.01 +palm_cat.n.01 mammal.n.01 +hominid.n.01 hominid.n.01 +blacktail_prairie_dog.n.01 prairie_dog.n.01 +charolais.n.01 beef.n.01 +charolais.n.01 bovine.n.01 +langur.n.01 primate.n.02 +coydog.n.01 coydog.n.01 +saddle_horse.n.01 ungulate.n.01 +american_black_bear.n.01 american_black_bear.n.01 +native_cat.n.01 dasyurid_marsupial.n.01 +galloway.n.02 galloway.n.02 +bobcat.n.01 carnivore.n.01 +least_shrew.n.01 placental.n.01 +pygmy_chimpanzee.n.01 anthropoid_ape.n.01 +mastiff_bat.n.01 carnivorous_bat.n.01 +brahman.n.04 placental.n.01 +spaniel.n.01 mammal.n.01 +pariah_dog.n.01 cur.n.01 +sorrel.n.05 odd-toed_ungulate.n.01 +tigress.n.01 placental.n.01 +chigetai.n.01 wild_ass.n.01 +phenacomys.n.01 phenacomys.n.01 +california_sea_lion.n.01 eared_seal.n.01 +southeastern_pocket_gopher.n.01 mammal.n.01 +serow.n.01 ungulate.n.01 +pademelon.n.01 pademelon.n.01 +giant_armadillo.n.01 armadillo.n.01 +boston_bull.n.01 boston_bull.n.01 +basenji.n.01 placental.n.01 +cetacean.n.01 placental.n.01 +crab-eating_macaque.n.01 old_world_monkey.n.01 +jersey.n.05 jersey.n.05 +northern_bog_lemming.n.01 rodent.n.01 +ermine.n.02 mammal.n.01 +finback.n.01 aquatic_mammal.n.01 +dhole.n.01 canine.n.02 +tarpan.n.01 tarpan.n.01 +hare.n.01 mammal.n.01 +clydesdale_terrier.n.01 canine.n.02 +irish_setter.n.01 dog.n.01 +miniature_schnauzer.n.01 canine.n.02 +cavalry_horse.n.01 equine.n.01 +weimaraner.n.01 hound.n.01 +standard_schnauzer.n.01 standard_schnauzer.n.01 +jackrabbit.n.01 leporid.n.01 +black-tailed_deer.n.01 deer.n.01 +mountain_zebra.n.01 zebra.n.01 +fallow_deer.n.01 deer.n.01 +woolly_mammoth.n.01 placental.n.01 +hudson_bay_collared_lemming.n.01 hudson_bay_collared_lemming.n.01 +western_pipistrel.n.01 western_pipistrel.n.01 +serow.n.01 serow.n.01 +bobcat.n.01 placental.n.01 +wood_rabbit.n.01 mammal.n.01 +crabeater_seal.n.01 seal.n.09 +bottlenose_dolphin.n.01 placental.n.01 +entlebucher.n.01 dog.n.01 +jaguarundi.n.01 placental.n.01 +bison.n.01 ruminant.n.01 +quarter_horse.n.01 odd-toed_ungulate.n.01 +gayal.n.01 ungulate.n.01 +red-backed_mouse.n.01 wood_rat.n.01 +serval.n.01 cat.n.01 +basset.n.01 placental.n.01 +tigress.n.01 carnivore.n.01 +gallant_fox.n.01 racehorse.n.01 +pembroke.n.01 pembroke.n.01 +sea_lion.n.01 eared_seal.n.01 +whippet.n.01 hound.n.01 +eastern_chipmunk.n.01 eastern_chipmunk.n.01 +grasshopper_mouse.n.01 grasshopper_mouse.n.01 +giant_eland.n.01 mammal.n.01 +sand_cat.n.01 mammal.n.01 +hereford.n.01 even-toed_ungulate.n.01 +brocket.n.01 deer.n.01 +puku.n.01 bovid.n.01 +antelope.n.01 even-toed_ungulate.n.01 +numbat.n.01 metatherian.n.01 +american_harvest_mouse.n.01 mammal.n.01 +simian.n.01 placental.n.01 +gorilla.n.01 gorilla.n.01 +red_poll.n.01 ruminant.n.01 +virginia_deer.n.01 deer.n.01 +tarsius_syrichta.n.01 tarsius_syrichta.n.01 +hack.n.07 hack.n.07 +brittany_spaniel.n.01 mammal.n.01 +hippopotamus.n.01 placental.n.01 +leonberg.n.01 dog.n.01 +pichiciago.n.01 pichiciago.n.01 +wire-haired_fox_terrier.n.01 terrier.n.01 +manx.n.02 mammal.n.01 +secretariat.n.02 placental.n.01 +blue_fox.n.01 canine.n.02 +raccoon.n.02 procyonid.n.01 +bovid.n.01 placental.n.01 +irish_wolfhound.n.01 dog.n.01 +mule.n.01 placental.n.01 +domestic_ass.n.01 odd-toed_ungulate.n.01 +gopher.n.04 gopher.n.04 +groenendael.n.01 carnivore.n.01 +welsh_pony.n.01 horse.n.01 +pipistrelle.n.01 placental.n.01 +keeshond.n.01 carnivore.n.01 +homo_sapiens_sapiens.n.01 hominid.n.01 +border_collie.n.01 carnivore.n.01 +african_wild_ass.n.01 placental.n.01 +pteropus_hypomelanus.n.01 pteropus_hypomelanus.n.01 +striped_muishond.n.01 striped_muishond.n.01 +sand_rat.n.01 placental.n.01 +sir_barton.n.01 sir_barton.n.01 +tarpan.n.01 odd-toed_ungulate.n.01 +pony.n.02 horse.n.01 +langur.n.01 mammal.n.01 +orangutan.n.01 anthropoid_ape.n.01 +percheron.n.01 percheron.n.01 +english_springer.n.01 springer_spaniel.n.01 +domestic_llama.n.01 ungulate.n.01 +fanaloka.n.01 mammal.n.01 +chimpanzee.n.01 primate.n.02 +crowbait.n.01 placental.n.01 +przewalski's_horse.n.01 placental.n.01 +bull.n.01 ungulate.n.01 +yearling.n.02 placental.n.01 +rat_terrier.n.01 mammal.n.01 +black_sheep.n.02 bovid.n.01 +asiatic_flying_squirrel.n.01 mammal.n.01 +cave_myotis.n.01 vespertilian_bat.n.01 +stud.n.04 odd-toed_ungulate.n.01 +koala.n.01 koala.n.01 +lesser_rorqual.n.01 baleen_whale.n.01 +miniature_poodle.n.01 dog.n.01 +gayal.n.01 gayal.n.01 +chigetai.n.01 equine.n.01 +tibetan_mastiff.n.01 dog.n.01 +quarter_horse.n.01 ungulate.n.01 +standard_schnauzer.n.01 canine.n.02 +grey_fox.n.01 canine.n.02 +leafnose_bat.n.01 placental.n.01 +boarhound.n.01 boarhound.n.01 +american_mastodon.n.01 placental.n.01 +toy_spaniel.n.01 mammal.n.01 +macaque.n.01 old_world_monkey.n.01 +gemsbok.n.01 ungulate.n.01 +coondog.n.01 coondog.n.01 +cheviot.n.01 even-toed_ungulate.n.01 +black_rat.n.01 mammal.n.01 +crab-eating_opossum.n.01 metatherian.n.01 +english_springer.n.01 sporting_dog.n.01 +male_horse.n.01 male_horse.n.01 +pole_horse.n.01 placental.n.01 +pocketed_bat.n.01 carnivorous_bat.n.01 +cactus_mouse.n.01 placental.n.01 +steed.n.01 odd-toed_ungulate.n.01 +sausage_dog.n.01 carnivore.n.01 +indian_buffalo.n.01 placental.n.01 +goat.n.01 placental.n.01 +greater_kudu.n.01 antelope.n.01 +staghound.n.01 staghound.n.01 +jersey.n.05 mammal.n.01 +german_short-haired_pointer.n.01 canine.n.02 +bison.n.01 mammal.n.01 +weimaraner.n.01 carnivore.n.01 +palfrey.n.01 odd-toed_ungulate.n.01 +bottle-nosed_whale.n.01 mammal.n.01 +ferret.n.02 carnivore.n.01 +chipmunk.n.01 rodent.n.01 +harness_horse.n.01 mammal.n.01 +harp_seal.n.01 placental.n.01 +slender-tailed_meerkat.n.01 slender-tailed_meerkat.n.01 +douroucouli.n.01 mammal.n.01 +sambar.n.01 ruminant.n.01 +pacific_bottlenose_dolphin.n.01 bottlenose_dolphin.n.01 +shrew.n.02 insectivore.n.01 +yorkshire_terrier.n.01 terrier.n.01 +brush-tailed_porcupine.n.01 old_world_porcupine.n.01 +brown_bear.n.01 carnivore.n.01 +queen.n.09 naked_mole_rat.n.01 +fisher.n.02 marten.n.01 +musk_deer.n.01 deer.n.01 +brood_bitch.n.01 carnivore.n.01 +pinscher.n.01 placental.n.01 +bull_mastiff.n.01 placental.n.01 +kit_fox.n.02 fox.n.01 +arctic_fox.n.01 arctic_fox.n.01 +black_rhinoceros.n.01 placental.n.01 +manx.n.02 placental.n.01 +hare_wallaby.n.01 mammal.n.01 +irish_terrier.n.01 placental.n.01 +belgian_sheepdog.n.01 working_dog.n.01 +carnivorous_bat.n.01 placental.n.01 +water_vole.n.01 vole.n.01 +platypus.n.01 mammal.n.01 +lionet.n.01 lion.n.01 +american_staffordshire_terrier.n.01 terrier.n.01 +world.n.08 hominid.n.01 +lesser_panda.n.01 carnivore.n.01 +angora.n.02 domestic_goat.n.01 +keeshond.n.01 keeshond.n.01 +bowhead.n.01 cetacean.n.01 +kaffir_cat.n.01 kaffir_cat.n.01 +aardvark.n.01 placental.n.01 +guano_bat.n.01 guano_bat.n.01 +polar_hare.n.01 hare.n.01 +sand_cat.n.01 carnivore.n.01 +seal.n.09 aquatic_mammal.n.01 +affenpinscher.n.01 mammal.n.01 +long-eared_bat.n.01 vespertilian_bat.n.01 +leopard_cat.n.01 feline.n.01 +miniature_poodle.n.01 canine.n.02 +brown_bear.n.01 placental.n.01 +cow_pony.n.01 equine.n.01 +standard_poodle.n.01 dog.n.01 +sea_cow.n.01 placental.n.01 +egyptian_cat.n.01 carnivore.n.01 +white_rhinoceros.n.01 white_rhinoceros.n.01 +eastern_dasyure.n.01 marsupial.n.01 +canine.n.02 mammal.n.01 +lioness.n.01 feline.n.01 +rottweiler.n.01 carnivore.n.01 +vespertilian_bat.n.01 mammal.n.01 +grey.n.07 mammal.n.01 +saluki.n.01 hunting_dog.n.01 +cashmere_goat.n.01 mammal.n.01 +orange_bat.n.01 bat.n.01 +moke.n.01 ungulate.n.01 +hackney.n.02 mammal.n.01 +chimpanzee.n.01 ape.n.01 +australopithecus_boisei.n.01 australopithecine.n.01 +angora.n.02 even-toed_ungulate.n.01 +american_marten.n.01 carnivore.n.01 +gaur.n.01 even-toed_ungulate.n.01 +scotch_terrier.n.01 terrier.n.01 +lynx.n.02 mammal.n.01 +coyote.n.01 wolf.n.01 +apar.n.01 mammal.n.01 +three-toed_sloth.n.01 mammal.n.01 +deer.n.01 placental.n.01 +pteropus_hypomelanus.n.01 placental.n.01 +cryptoprocta.n.01 carnivore.n.01 +australian_terrier.n.01 placental.n.01 +whirlaway.n.01 odd-toed_ungulate.n.01 +walker_hound.n.01 foxhound.n.01 +dalmatian.n.02 dalmatian.n.02 +workhorse.n.02 equine.n.01 +springer.n.02 cow.n.01 +cayuse.n.01 mammal.n.01 +king_charles_spaniel.n.01 dog.n.01 +durham.n.02 placental.n.01 +leopardess.n.01 big_cat.n.01 +freetail.n.01 carnivorous_bat.n.01 +rorqual.n.01 placental.n.01 +mexican_hairless.n.01 dog.n.01 +native_cat.n.01 metatherian.n.01 +pere_david's_deer.n.01 ungulate.n.01 +slow_loris.n.01 slow_loris.n.01 +terrier.n.01 carnivore.n.01 +tayra.n.01 mammal.n.01 +siamese_cat.n.01 cat.n.01 +quagga.n.01 placental.n.01 +tamarau.n.01 old_world_buffalo.n.01 +australian_sea_lion.n.01 mammal.n.01 +silky_terrier.n.01 dog.n.01 +black_squirrel.n.01 rodent.n.01 +flying_mouse.n.01 marsupial.n.01 +jungle_cat.n.01 cat.n.01 +brahman.n.04 ungulate.n.01 +retriever.n.01 retriever.n.01 +golden_retriever.n.01 placental.n.01 +kid.n.05 placental.n.01 +packhorse.n.01 odd-toed_ungulate.n.01 +silky_tamarin.n.01 new_world_monkey.n.01 +silky_terrier.n.01 silky_terrier.n.01 +cashmere_goat.n.01 domestic_goat.n.01 +pouched_mole.n.01 pouched_mole.n.01 +ram.n.05 ram.n.05 +vervet.n.01 old_world_monkey.n.01 +curly-coated_retriever.n.01 sporting_dog.n.01 +spotted_lynx.n.01 wildcat.n.03 +affirmed.n.01 odd-toed_ungulate.n.01 +horseshoe_bat.n.01 carnivorous_bat.n.01 +assault.n.03 thoroughbred.n.02 +freetail.n.01 freetail.n.01 +eskimo_dog.n.01 mammal.n.01 +bronco.n.01 pony.n.01 +clydesdale.n.01 mammal.n.01 +pole_horse.n.01 racehorse.n.01 +suricate.n.01 placental.n.01 +white-lipped_peccary.n.01 placental.n.01 +asiatic_shrew_mole.n.01 asiatic_shrew_mole.n.01 +wolf_pup.n.01 mammal.n.01 +blenheim_spaniel.n.01 toy_dog.n.01 +aurochs.n.02 placental.n.01 +impala.n.01 mammal.n.01 +newfoundland.n.01 mammal.n.01 +killer_whale.n.01 cetacean.n.01 +jerboa_kangaroo.n.01 kangaroo.n.01 +ocelot.n.01 cat.n.01 +fisher.n.02 placental.n.01 +margay.n.01 carnivore.n.01 +beaver.n.07 placental.n.01 +charger.n.01 ungulate.n.01 +imperial_mammoth.n.01 imperial_mammoth.n.01 +prosimian.n.01 prosimian.n.01 +bucking_bronco.n.01 equine.n.01 +marco_polo_sheep.n.01 even-toed_ungulate.n.01 +eastern_chimpanzee.n.01 ape.n.01 +bearded_seal.n.01 seal.n.09 +guenon.n.01 old_world_monkey.n.01 +poodle.n.01 canine.n.02 +komondor.n.01 placental.n.01 +kob.n.01 mammal.n.01 +pygmy_marmoset.n.01 placental.n.01 +carthorse.n.01 draft_horse.n.01 +silky_terrier.n.01 placental.n.01 +kanchil.n.01 ruminant.n.01 +basenji.n.01 carnivore.n.01 +papillon.n.01 carnivore.n.01 +palm_cat.n.01 viverrine.n.01 +wharf_rat.n.02 placental.n.01 +seattle_slew.n.01 seattle_slew.n.01 +flat-coated_retriever.n.01 placental.n.01 +rat_kangaroo.n.01 metatherian.n.01 +sea_otter.n.01 mammal.n.01 +taguan.n.01 mammal.n.01 +gorilla.n.01 placental.n.01 +boar.n.02 ungulate.n.01 +briard.n.01 dog.n.01 +bronco.n.01 mustang.n.01 +pinscher.n.01 dog.n.01 +waterbuck.n.01 bovid.n.01 +bull_mastiff.n.01 dog.n.01 +otter.n.02 placental.n.01 +pacer.n.01 horse.n.01 +kerry_blue_terrier.n.01 canine.n.02 +workhorse.n.02 placental.n.01 +norwich_terrier.n.01 placental.n.01 +mountain_sheep.n.01 mammal.n.01 +doberman.n.01 doberman.n.01 +suricate.n.01 suricate.n.01 +mink.n.03 placental.n.01 +stoat.n.01 weasel.n.02 +woodland_caribou.n.01 ruminant.n.01 +spotted_skunk.n.01 placental.n.01 +common_lynx.n.01 wildcat.n.03 +cardigan.n.02 placental.n.01 +sled_dog.n.01 working_dog.n.01 +prairie_vole.n.01 prairie_vole.n.01 +bushbuck.n.01 placental.n.01 +lucy.n.01 placental.n.01 +european_hare.n.01 placental.n.01 +cougar.n.01 placental.n.01 +wild_boar.n.01 wild_boar.n.01 +greyhound.n.01 carnivore.n.01 +trotting_horse.n.01 ungulate.n.01 +hearing_dog.n.01 canine.n.02 +new_world_beaver.n.01 new_world_beaver.n.01 +pony.n.02 ungulate.n.01 +norwegian_elkhound.n.01 placental.n.01 +boarhound.n.01 placental.n.01 +woolly_rhinoceros.n.01 mammal.n.01 +cashmere_goat.n.01 bovid.n.01 +squirrel.n.01 mammal.n.01 +angora.n.02 bovid.n.01 +indian_elephant.n.01 placental.n.01 +liger.n.01 liger.n.01 +american_red_squirrel.n.01 rodent.n.01 +angwantibo.n.01 placental.n.01 +australian_sea_lion.n.01 placental.n.01 +nonstarter.n.02 placental.n.01 +scotch_terrier.n.01 mammal.n.01 +tennessee_walker.n.01 placental.n.01 +giraffe.n.01 mammal.n.01 +malamute.n.01 carnivore.n.01 +african_wild_ass.n.01 wild_ass.n.01 +brocket.n.01 even-toed_ungulate.n.01 +burro.n.01 equine.n.01 +paranthropus.n.01 australopithecine.n.01 +water_dog.n.02 dog.n.01 +welsh_springer_spaniel.n.01 placental.n.01 +keeshond.n.01 mammal.n.01 +griffon.n.02 canine.n.02 +gemsbok.n.01 placental.n.01 +wolfhound.n.01 wolfhound.n.01 +dall_sheep.n.01 even-toed_ungulate.n.01 +briard.n.01 placental.n.01 +setter.n.02 hunting_dog.n.01 +caribou.n.01 even-toed_ungulate.n.01 +lemur.n.01 placental.n.01 +wild_boar.n.01 swine.n.01 +lionet.n.01 lionet.n.01 +camel.n.01 ungulate.n.01 +bullterrier.n.01 carnivore.n.01 +masked_shrew.n.01 placental.n.01 +black_squirrel.n.01 placental.n.01 +mole.n.06 insectivore.n.01 +merino.n.01 domestic_sheep.n.01 +fox_squirrel.n.01 placental.n.01 +california_sea_lion.n.01 mammal.n.01 +bengal_tiger.n.01 big_cat.n.01 +capybara.n.01 mammal.n.01 +bassarisk.n.01 mammal.n.01 +tayra.n.01 carnivore.n.01 +wild_dog.n.01 mammal.n.01 +mole_rat.n.02 placental.n.01 +indian_buffalo.n.01 ruminant.n.01 +german_short-haired_pointer.n.01 pointer.n.04 +hedgehog.n.02 hedgehog.n.02 +bushbuck.n.01 bovid.n.01 +stablemate.n.01 stablemate.n.01 +appenzeller.n.01 appenzeller.n.01 +water_vole.n.02 wood_rat.n.01 +siberian_husky.n.01 siberian_husky.n.01 +plott_hound.n.01 hunting_dog.n.01 +durham.n.02 bovine.n.01 +skye_terrier.n.01 placental.n.01 +bunny.n.02 bunny.n.02 +aye-aye.n.01 aye-aye.n.01 +eurasian_otter.n.01 otter.n.02 +lionet.n.01 mammal.n.01 +zebu.n.01 bovine.n.01 +equine.n.01 placental.n.01 +lapin.n.02 rabbit.n.01 +brown_swiss.n.01 placental.n.01 +bruin.n.01 placental.n.01 +lhasa.n.02 canine.n.02 +papillon.n.01 papillon.n.01 +africander.n.01 ruminant.n.01 +uakari.n.01 mammal.n.01 +italian_greyhound.n.01 canine.n.02 +indian_rhinoceros.n.01 mammal.n.01 +wild_dog.n.01 carnivore.n.01 +staghound.n.01 carnivore.n.01 +western_lowland_gorilla.n.01 anthropoid_ape.n.01 +dolphin.n.02 aquatic_mammal.n.01 +kangaroo_rat.n.01 rodent.n.01 +pacer.n.01 mammal.n.01 +hind.n.02 ruminant.n.01 +bongo.n.02 placental.n.01 +urial.n.01 placental.n.01 +bullock.n.02 bovid.n.01 +carnivorous_bat.n.01 mammal.n.01 +walrus.n.01 placental.n.01 +bullock.n.01 cattle.n.01 +bernese_mountain_dog.n.01 canine.n.02 +dog.n.01 mammal.n.01 +porker.n.01 placental.n.01 +italian_greyhound.n.01 greyhound.n.01 +mongoose.n.01 mammal.n.01 +ground_sloth.n.01 placental.n.01 +gib.n.02 domestic_cat.n.01 +german_shepherd.n.01 mammal.n.01 +manx.n.02 feline.n.01 +aberdeen_angus.n.01 ungulate.n.01 +kinkajou.n.01 carnivore.n.01 +west_highland_white_terrier.n.01 west_highland_white_terrier.n.01 +harbor_seal.n.01 pinniped_mammal.n.01 +south_american_sea_lion.n.01 mammal.n.01 +common_lynx.n.01 feline.n.01 +jerboa_kangaroo.n.01 metatherian.n.01 +spotted_hyena.n.01 carnivore.n.01 +aoudad.n.01 aoudad.n.01 +smooth-haired_fox_terrier.n.01 dog.n.01 +shih-tzu.n.01 dog.n.01 +sable_antelope.n.01 bovid.n.01 +pony.n.01 horse.n.01 +plott_hound.n.01 carnivore.n.01 +sand_cat.n.01 feline.n.01 +shrew_mole.n.01 placental.n.01 +guenon.n.01 guenon.n.01 +unguiculata.n.01 unguiculata.n.01 +flying_fox.n.01 flying_fox.n.01 +chesapeake_bay_retriever.n.01 dog.n.01 +jumping_mouse.n.01 mammal.n.01 +sea_lion.n.01 placental.n.01 +brood_bitch.n.01 placental.n.01 +brush-tailed_porcupine.n.01 porcupine.n.01 +tiger_cub.n.01 tiger.n.02 +jackrabbit.n.01 lagomorph.n.01 +proconsul.n.03 primate.n.02 +baleen_whale.n.01 aquatic_mammal.n.01 +numbat.n.01 numbat.n.01 +abyssinian.n.01 carnivore.n.01 +tom.n.02 placental.n.01 +pole_horse.n.02 workhorse.n.02 +phalanger.n.01 marsupial.n.01 +european_rabbit.n.01 rabbit.n.01 +freetail.n.01 bat.n.01 +sealyham_terrier.n.01 terrier.n.01 +fossa.n.03 carnivore.n.01 +bettong.n.01 kangaroo.n.01 +mediterranean_water_shrew.n.01 mammal.n.01 +guernsey.n.02 bovine.n.01 +brocket.n.02 mammal.n.01 +prancer.n.01 prancer.n.01 +squirrel.n.01 squirrel.n.01 +harp_seal.n.01 earless_seal.n.01 +persian_cat.n.01 carnivore.n.01 +pembroke.n.01 carnivore.n.01 +fawn.n.02 placental.n.01 +peking_man.n.01 mammal.n.01 +wharf_rat.n.02 wharf_rat.n.02 +plott_hound.n.01 placental.n.01 +gnu.n.01 ungulate.n.01 +bullock.n.02 bullock.n.02 +reynard.n.01 reynard.n.01 +paca.n.01 rodent.n.01 +exmoor.n.01 mammal.n.01 +viverrine.n.01 placental.n.01 +giant_armadillo.n.01 mammal.n.01 +pony.n.05 equine.n.01 +toy_poodle.n.01 placental.n.01 +ox.n.01 bovine.n.01 +japanese_spaniel.n.01 carnivore.n.01 +pinniped_mammal.n.01 aquatic_mammal.n.01 +greyhound.n.01 hunting_dog.n.01 +giraffe.n.01 even-toed_ungulate.n.01 +brown_bat.n.01 carnivorous_bat.n.01 +goat_antelope.n.01 placental.n.01 +watchdog.n.02 canine.n.02 +angwantibo.n.01 angwantibo.n.01 +sloth.n.02 sloth.n.02 +marsh_hare.n.01 marsh_hare.n.01 +dolphin.n.02 cetacean.n.01 +napu.n.01 placental.n.01 +nail-tailed_wallaby.n.01 metatherian.n.01 +solo_man.n.01 hominid.n.01 +banded_palm_civet.n.01 banded_palm_civet.n.01 +short-tailed_shrew.n.01 shrew.n.02 +welsh_springer_spaniel.n.01 dog.n.01 +little_brown_bat.n.01 bat.n.01 +lapdog.n.01 mammal.n.01 +pentail.n.01 tree_shrew.n.01 +proboscis_monkey.n.01 proboscis_monkey.n.01 +mouflon.n.01 ruminant.n.01 +chipmunk.n.01 squirrel.n.01 +eastern_lowland_gorilla.n.01 great_ape.n.01 +white-lipped_peccary.n.01 even-toed_ungulate.n.01 +cayuse.n.01 odd-toed_ungulate.n.01 +beaver.n.07 rodent.n.01 +belgian_hare.n.01 leporid.n.01 +mammoth.n.01 proboscidean.n.01 +serval.n.01 mammal.n.01 +llama.n.01 llama.n.01 +meadow_vole.n.01 wood_rat.n.01 +malayan_tapir.n.01 mammal.n.01 +tarsius_syrichta.n.01 placental.n.01 +buck.n.05 buck.n.05 +cheviot.n.01 cheviot.n.01 +ox.n.01 ungulate.n.01 +banteng.n.01 banteng.n.01 +sand_rat.n.01 rodent.n.01 +morgan.n.06 horse.n.01 +longhorn.n.01 mammal.n.01 +marmoset.n.01 monkey.n.01 +rock_squirrel.n.01 placental.n.01 +cattle.n.01 ungulate.n.01 +hack.n.06 equine.n.01 +stirk.n.01 cattle.n.01 +blackbuck.n.01 ruminant.n.01 +warhorse.n.03 ungulate.n.01 +friesian.n.01 ungulate.n.01 +sand_cat.n.01 placental.n.01 +plott_hound.n.01 plott_hound.n.01 +pademelon.n.01 metatherian.n.01 +timber_wolf.n.01 mammal.n.01 +post_horse.n.01 mammal.n.01 +suricate.n.01 carnivore.n.01 +welsh_terrier.n.01 terrier.n.01 +foxhound.n.01 placental.n.01 +baboon.n.01 mammal.n.01 +carabao.n.01 carabao.n.01 +west_highland_white_terrier.n.01 mammal.n.01 +eurasian_hamster.n.01 placental.n.01 +pika.n.01 pika.n.01 +carthorse.n.01 carthorse.n.01 +guereza.n.01 primate.n.02 +dasyurid_marsupial.n.01 dasyurid_marsupial.n.01 +chestnut.n.06 chestnut.n.06 +domestic_goat.n.01 ungulate.n.01 +scottish_deerhound.n.01 hound.n.01 +assault.n.03 ungulate.n.01 +two-toed_sloth.n.02 mammal.n.01 +dinoceras.n.01 dinocerate.n.01 +coonhound.n.01 dog.n.01 +tibetan_terrier.n.01 hunting_dog.n.01 +narwhal.n.01 whale.n.02 +indian_mongoose.n.01 indian_mongoose.n.01 +black-footed_ferret.n.01 mammal.n.01 +white_elephant.n.02 mammal.n.01 +papillon.n.01 placental.n.01 +lesser_ape.n.01 ape.n.01 +wildcat.n.03 placental.n.01 +tennessee_walker.n.01 ungulate.n.01 +ayrshire.n.01 placental.n.01 +bouvier_des_flandres.n.01 bouvier_des_flandres.n.01 +rhodesian_ridgeback.n.01 carnivore.n.01 +exmoor.n.02 odd-toed_ungulate.n.01 +pied_lemming.n.01 lemming.n.01 +spotted_skunk.n.01 mammal.n.01 +hearing_dog.n.01 mammal.n.01 +basset.n.01 basset.n.01 +walker_hound.n.01 hunting_dog.n.01 +musteline_mammal.n.01 placental.n.01 +mustang.n.01 mammal.n.01 +australian_terrier.n.01 canine.n.02 +crab-eating_macaque.n.01 placental.n.01 +otter.n.02 carnivore.n.01 +asian_wild_ox.n.01 ungulate.n.01 +musk_ox.n.01 ungulate.n.01 +cur.n.01 mammal.n.01 +bear_cub.n.01 carnivore.n.01 +algeripithecus_minutus.n.01 primate.n.02 +fur_seal.n.01 aquatic_mammal.n.01 +roebuck.n.01 roebuck.n.01 +steenbok.n.01 steenbok.n.01 +przewalski's_horse.n.01 equine.n.01 +crab-eating_dog.n.01 carnivore.n.01 +cat.n.01 carnivore.n.01 +black_fox.n.01 placental.n.01 +kuvasz.n.01 canine.n.02 +bitch.n.04 canine.n.02 +morgan.n.06 saddle_horse.n.01 +gallant_fox.n.01 gallant_fox.n.01 +silverback.n.01 silverback.n.01 +dasyure.n.01 marsupial.n.01 +gomphothere.n.01 elephant.n.01 +water_chevrotain.n.01 ruminant.n.01 +fallow_deer.n.01 mammal.n.01 +spotted_hyena.n.01 hyena.n.01 +schipperke.n.01 dog.n.01 +domestic_goat.n.01 mammal.n.01 +cactus_mouse.n.01 mammal.n.01 +tortoiseshell.n.03 cat.n.01 +ibex.n.01 placental.n.01 +brabancon_griffon.n.01 carnivore.n.01 +bellwether.n.02 ungulate.n.01 +coyote.n.01 carnivore.n.01 +american_bison.n.01 mammal.n.01 +large_poodle.n.01 mammal.n.01 +dall_sheep.n.01 mammal.n.01 +lesser_ape.n.01 mammal.n.01 +cashmere_goat.n.01 even-toed_ungulate.n.01 +wildcat.n.03 feline.n.01 +new_world_tapir.n.01 tapir.n.01 +silky_tamarin.n.01 silky_tamarin.n.01 +southern_flying_squirrel.n.01 southern_flying_squirrel.n.01 +cryptoprocta.n.01 civet.n.01 +tamarau.n.01 even-toed_ungulate.n.01 +least_shrew.n.01 least_shrew.n.01 +cattle.n.01 cattle.n.01 +crab-eating_dog.n.01 placental.n.01 +dolphin.n.02 dolphin.n.02 +brocket.n.01 mammal.n.01 +warhorse.n.03 mammal.n.01 +grade.n.09 placental.n.01 +rorqual.n.01 whale.n.02 +goat.n.01 even-toed_ungulate.n.01 +percheron.n.01 odd-toed_ungulate.n.01 +ground_squirrel.n.02 squirrel.n.01 +leporid.n.01 placental.n.01 +bactrian_camel.n.01 camel.n.01 +old_world_monkey.n.01 primate.n.02 +bullterrier.n.01 placental.n.01 +australopithecus_boisei.n.01 hominid.n.01 +coonhound.n.01 canine.n.02 +tarpan.n.01 mammal.n.01 +border_collie.n.01 shepherd_dog.n.01 +hooded_skunk.n.01 placental.n.01 +tamandua.n.01 anteater.n.02 +japanese_spaniel.n.01 canine.n.02 +griffon.n.02 placental.n.01 +leopard.n.02 placental.n.01 +cetacean.n.01 aquatic_mammal.n.01 +moke.n.01 moke.n.01 +trotting_horse.n.01 trotting_horse.n.01 +mustang.n.01 odd-toed_ungulate.n.01 +prosimian.n.01 mammal.n.01 +jungle_cat.n.01 feline.n.01 +american_mink.n.01 carnivore.n.01 +new_world_mouse.n.01 rodent.n.01 +plow_horse.n.01 equine.n.01 +mouser.n.01 mammal.n.01 +lechwe.n.01 ruminant.n.01 +wisent.n.01 wisent.n.01 +serotine.n.01 placental.n.01 +maltese.n.03 carnivore.n.01 +pocket_mouse.n.01 pocket_rat.n.01 +weimaraner.n.01 hunting_dog.n.01 +chacma.n.01 baboon.n.01 +canada_porcupine.n.01 mammal.n.01 +pocketed_bat.n.01 bat.n.01 +scotch_terrier.n.01 placental.n.01 +steenbok.n.01 ruminant.n.01 +vizsla.n.01 hunting_dog.n.01 +dairy_cattle.n.01 cattle.n.01 +saluki.n.01 saluki.n.01 +sinanthropus.n.01 sinanthropus.n.01 +exmoor.n.02 equine.n.01 +gopher.n.04 placental.n.01 +phyllostomus_hastatus.n.01 phyllostomus_hastatus.n.01 +chestnut.n.06 odd-toed_ungulate.n.01 +fox_terrier.n.01 dog.n.01 +false_saber-toothed_tiger.n.01 big_cat.n.01 +zebu.n.01 ruminant.n.01 +curly-coated_retriever.n.01 placental.n.01 +rat.n.01 placental.n.01 +galago.n.01 lemur.n.01 +border_terrier.n.01 terrier.n.01 +armadillo.n.01 edentate.n.01 +ibizan_hound.n.01 ibizan_hound.n.01 +dall_sheep.n.01 wild_sheep.n.01 +giant_eland.n.01 placental.n.01 +sled_dog.n.01 sled_dog.n.01 +gorilla.n.01 primate.n.02 +sorrel.n.05 horse.n.01 +liver-spotted_dalmatian.n.01 liver-spotted_dalmatian.n.01 +macrotus.n.01 macrotus.n.01 +solo_man.n.01 primate.n.02 +alaska_fur_seal.n.01 mammal.n.01 +wild_horse.n.01 equine.n.01 +southeastern_pocket_gopher.n.01 pocket_rat.n.01 +field_mouse.n.02 rodent.n.01 +lhasa.n.02 terrier.n.01 +brewer's_mole.n.01 placental.n.01 +potoroo.n.01 mammal.n.01 +american_water_spaniel.n.01 carnivore.n.01 +nanny.n.02 bovid.n.01 +beef.n.01 mammal.n.01 +cocker_spaniel.n.01 cocker_spaniel.n.01 +tabby.n.02 tabby.n.02 +cheviot.n.01 mammal.n.01 +mastiff_bat.n.01 bat.n.01 +oryx.n.01 placental.n.01 +onager.n.02 onager.n.02 +stepper.n.03 horse.n.01 +bellwether.n.02 sheep.n.01 +dusky-footed_wood_rat.n.01 placental.n.01 +warthog.n.01 swine.n.01 +fallow_deer.n.01 ungulate.n.01 +eastern_cottontail.n.01 wood_rabbit.n.01 +goral.n.01 ungulate.n.01 +sow.n.01 swine.n.01 +boskop_man.n.01 primate.n.02 +pole_horse.n.01 horse.n.01 +grivet.n.01 monkey.n.01 +pilot_whale.n.01 aquatic_mammal.n.01 +lynx.n.02 carnivore.n.01 +guanaco.n.01 mammal.n.01 +ichneumon.n.01 viverrine.n.01 +shrew_mole.n.01 insectivore.n.01 +tatouay.n.01 edentate.n.01 +pygmy_marmoset.n.01 mammal.n.01 +vizsla.n.01 vizsla.n.01 +kangaroo_mouse.n.01 rat.n.01 +barbary_ape.n.01 monkey.n.01 +syrian_bear.n.01 carnivore.n.01 +affenpinscher.n.01 pinscher.n.01 +mountain_gorilla.n.01 placental.n.01 +standard_poodle.n.01 canine.n.02 +chamois.n.02 ruminant.n.01 +dog.n.01 canine.n.02 +blue_point_siamese.n.01 cat.n.01 +european_water_shrew.n.01 placental.n.01 +tabby.n.01 carnivore.n.01 +manul.n.01 placental.n.01 +striped_hyena.n.01 striped_hyena.n.01 +whirlaway.n.01 horse.n.01 +new_world_least_weasel.n.01 mammal.n.01 +leveret.n.01 placental.n.01 +bullock.n.01 placental.n.01 +norfolk_terrier.n.01 norfolk_terrier.n.01 +goral.n.01 goral.n.01 +sea_cow.n.01 sea_cow.n.01 +homo_soloensis.n.01 primate.n.02 +moke.n.01 ass.n.03 +elk.n.01 deer.n.01 +plantigrade_mammal.n.01 plantigrade_mammal.n.01 +eastern_woodrat.n.01 eastern_woodrat.n.01 +aye-aye.n.01 primate.n.02 +feist.n.01 mammal.n.01 +pug.n.01 carnivore.n.01 +white_rhinoceros.n.01 ungulate.n.01 +pronghorn.n.01 placental.n.01 +striped_muishond.n.01 placental.n.01 +guadalupe_fur_seal.n.01 placental.n.01 +eland.n.01 mammal.n.01 +bovid.n.01 bovid.n.01 +guernsey.n.02 even-toed_ungulate.n.01 +mountain_paca.n.01 placental.n.01 +moke.n.01 mammal.n.01 +leafnose_bat.n.01 mammal.n.01 +eohippus.n.01 placental.n.01 +marsh_hare.n.01 mammal.n.01 +steeplechaser.n.01 equine.n.01 +prancer.n.01 odd-toed_ungulate.n.01 +northern_bog_lemming.n.01 northern_bog_lemming.n.01 +rat_terrier.n.01 rat_terrier.n.01 +vervet.n.01 primate.n.02 +hunting_dog.n.01 placental.n.01 +siamang.n.01 siamang.n.01 +rat.n.01 mammal.n.01 +common_dolphin.n.01 aquatic_mammal.n.01 +nail-tailed_wallaby.n.01 kangaroo.n.01 +hognose_bat.n.01 hognose_bat.n.01 +homo_habilis.n.01 homo_habilis.n.01 +camel.n.01 even-toed_ungulate.n.01 +ewe.n.03 ungulate.n.01 +rogue_elephant.n.01 elephant.n.01 +retriever.n.01 carnivore.n.01 +pole_horse.n.02 mammal.n.01 +packhorse.n.01 mammal.n.01 +chacma.n.01 mammal.n.01 +eastern_lowland_gorilla.n.01 mammal.n.01 +european_hare.n.01 lagomorph.n.01 +neandertal_man.n.01 hominid.n.01 +llama.n.01 mammal.n.01 +central_chimpanzee.n.01 chimpanzee.n.01 +smooth-haired_fox_terrier.n.01 mammal.n.01 +bovine.n.01 bovid.n.01 +malinois.n.01 carnivore.n.01 +french_bulldog.n.01 placental.n.01 +european_rabbit.n.01 leporid.n.01 +marmoset.n.01 primate.n.02 +silverback.n.01 anthropoid_ape.n.01 +chigetai.n.01 ungulate.n.01 +old_world_least_weasel.n.01 mammal.n.01 +hart.n.03 hart.n.03 +angora.n.02 angora.n.02 +elephant_seal.n.01 elephant_seal.n.01 +macrotus.n.01 bat.n.01 +dog.n.01 dog.n.01 +leopard_cat.n.01 leopard_cat.n.01 +house_mouse.n.01 mouse.n.01 +greyhound.n.01 canine.n.02 +white_wolf.n.01 placental.n.01 +whale.n.02 placental.n.01 +hartebeest.n.01 hartebeest.n.01 +southern_bog_lemming.n.01 rodent.n.01 +springer.n.02 placental.n.01 +sperm_whale.n.01 aquatic_mammal.n.01 +longhorn.n.01 bovine.n.01 +aardvark.n.01 mammal.n.01 +german_short-haired_pointer.n.01 placental.n.01 +plow_horse.n.01 placental.n.01 +grampus.n.02 grampus.n.02 +dingo.n.01 wild_dog.n.01 +arabian.n.02 equine.n.01 +shih-tzu.n.01 mammal.n.01 +western_grey_squirrel.n.01 placental.n.01 +african_wild_ass.n.01 ungulate.n.01 +tiger.n.02 tiger.n.02 +titi.n.03 titi.n.03 +wallaby.n.01 kangaroo.n.01 +gazelle.n.01 mammal.n.01 +cynopterus_sphinx.n.01 bat.n.01 +africander.n.01 mammal.n.01 +ice_bear.n.01 bear.n.01 +cro-magnon.n.01 hominid.n.01 +valley_pocket_gopher.n.01 valley_pocket_gopher.n.01 +eastern_lowland_gorilla.n.01 ape.n.01 +cob.n.02 mammal.n.01 +bezoar_goat.n.01 mammal.n.01 +sporting_dog.n.01 mammal.n.01 +cynocephalus_variegatus.n.01 cynocephalus_variegatus.n.01 +red_fox.n.02 red_fox.n.02 +burmese_cat.n.01 burmese_cat.n.01 +silky_tamarin.n.01 tamarin.n.01 +argali.n.01 bovid.n.01 +crab-eating_raccoon.n.01 mammal.n.01 +tarsier.n.01 placental.n.01 +spearnose_bat.n.01 mammal.n.01 +shetland_sheepdog.n.01 dog.n.01 +american_marten.n.01 marten.n.01 +stablemate.n.01 placental.n.01 +wild_horse.n.01 odd-toed_ungulate.n.01 +eohippus.n.01 ungulate.n.01 +pallid_bat.n.01 placental.n.01 +swamp_rabbit.n.02 mammal.n.01 +irish_wolfhound.n.01 hunting_dog.n.01 +american_bison.n.01 american_bison.n.01 +smooth-haired_fox_terrier.n.01 hunting_dog.n.01 +jersey.n.05 placental.n.01 +mastiff_bat.n.01 placental.n.01 +hare.n.01 placental.n.01 +wether.n.01 wether.n.01 +mouse.n.01 mouse.n.01 +percheron.n.01 mammal.n.01 +irish_water_spaniel.n.01 mammal.n.01 +glutton.n.02 carnivore.n.01 +buckskin.n.01 equine.n.01 +homo_sapiens_sapiens.n.01 homo.n.02 +airedale.n.01 placental.n.01 +asiatic_flying_squirrel.n.01 squirrel.n.01 +feline.n.01 feline.n.01 +mantled_ground_squirrel.n.01 placental.n.01 +elephant.n.01 placental.n.01 +hackney.n.02 horse.n.01 +frosted_bat.n.01 vespertilian_bat.n.01 +santa_gertrudis.n.01 cattle.n.01 +irish_wolfhound.n.01 carnivore.n.01 +pekinese.n.01 placental.n.01 +chesapeake_bay_retriever.n.01 mammal.n.01 +crab-eating_raccoon.n.01 raccoon.n.02 +white_elephant.n.02 pachyderm.n.01 +staghound.n.01 canine.n.02 +bloodhound.n.01 canine.n.02 +central_chimpanzee.n.01 great_ape.n.01 +gazella_subgutturosa.n.01 ruminant.n.01 +dun.n.01 saddle_horse.n.01 +jackrabbit.n.01 hare.n.01 +chevrotain.n.01 ungulate.n.01 +aberdeen_angus.n.01 beef.n.01 +mink.n.03 mink.n.03 +american_foxhound.n.01 mammal.n.01 +bullock.n.02 even-toed_ungulate.n.01 +saiga.n.01 antelope.n.01 +fox_squirrel.n.01 squirrel.n.01 +pinto.n.01 mammal.n.01 +little_chief_hare.n.01 pika.n.01 +miniature_pinscher.n.01 miniature_pinscher.n.01 +round-tailed_muskrat.n.01 round-tailed_muskrat.n.01 +crowbait.n.01 mammal.n.01 +damaraland_mole_rat.n.01 mammal.n.01 +kangaroo_mouse.n.02 jerboa_rat.n.01 +false_saber-toothed_tiger.n.01 mammal.n.01 +black_fox.n.01 fox.n.01 +green_monkey.n.01 old_world_monkey.n.01 +aberdeen_angus.n.01 bovine.n.01 +sled_dog.n.01 mammal.n.01 +little_chief_hare.n.01 placental.n.01 +springer_spaniel.n.01 sporting_dog.n.01 +hereford.n.01 mammal.n.01 +zebu.n.01 zebu.n.01 +schnauzer.n.01 dog.n.01 +samoyed.n.03 carnivore.n.01 +flickertail.n.01 squirrel.n.01 +cynocephalus_variegatus.n.01 mammal.n.01 +harpy.n.03 bat.n.01 +brush-tailed_phalanger.n.01 phalanger.n.01 +coach_horse.n.01 horse.n.01 +liger.n.01 feline.n.01 +margay.n.01 placental.n.01 +mountain_gorilla.n.01 anthropoid_ape.n.01 +longhorn.n.01 beef.n.01 +red_fox.n.02 mammal.n.01 +indian_rhinoceros.n.01 odd-toed_ungulate.n.01 +llama.n.01 even-toed_ungulate.n.01 +asiatic_flying_squirrel.n.01 rodent.n.01 +collie.n.01 working_dog.n.01 +kerry_blue_terrier.n.01 hunting_dog.n.01 +saddle_horse.n.01 saddle_horse.n.01 +new_world_beaver.n.01 beaver.n.07 +mountain_chinchilla.n.01 placental.n.01 +english_foxhound.n.01 english_foxhound.n.01 +leveret.n.01 leporid.n.01 +shetland_sheepdog.n.01 canine.n.02 +beagle.n.01 beagle.n.01 +tibetan_mastiff.n.01 tibetan_mastiff.n.01 +bouvier_des_flandres.n.01 canine.n.02 +wheel_horse.n.01 placental.n.01 +pocket_rat.n.01 rat.n.01 +malinois.n.01 working_dog.n.01 +white_elephant.n.02 white_elephant.n.02 +camel.n.01 camel.n.01 +mexican_pocket_mouse.n.01 rat.n.01 +vaquita.n.01 toothed_whale.n.01 +manchester_terrier.n.01 hunting_dog.n.01 +chacma.n.01 monkey.n.01 +binturong.n.01 viverrine.n.01 +mastiff_bat.n.01 mammal.n.01 +goat.n.01 mammal.n.01 +pembroke.n.01 canine.n.02 +steenbok.n.01 ungulate.n.01 +tarsius_syrichta.n.01 mammal.n.01 +maltese.n.03 domestic_cat.n.01 +pacific_bottlenose_dolphin.n.01 toothed_whale.n.01 +tamandua.n.01 tamandua.n.01 +murine.n.01 rodent.n.01 +coyote.n.01 canine.n.02 +king_charles_spaniel.n.01 placental.n.01 +basset.n.01 canine.n.02 +pygmy_mouse.n.01 pygmy_mouse.n.01 +toy_spaniel.n.01 carnivore.n.01 +cactus_mouse.n.01 mouse.n.01 +hart.n.03 ruminant.n.01 +broodmare.n.01 equine.n.01 +sussex_spaniel.n.01 sporting_dog.n.01 +omaha.n.04 odd-toed_ungulate.n.01 +alaska_fur_seal.n.01 placental.n.01 +cattalo.n.01 bovine.n.01 +soft-coated_wheaten_terrier.n.01 mammal.n.01 +harness_horse.n.01 horse.n.01 +banteng.n.01 even-toed_ungulate.n.01 diff --git a/docs/notebooks/word2vec.ipynb b/docs/notebooks/word2vec.ipynb index 6e7845e1f8..a2e944420f 100644 --- a/docs/notebooks/word2vec.ipynb +++ b/docs/notebooks/word2vec.ipynb @@ -29,18 +29,11 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using TensorFlow backend.\n" - ] - } - ], + "outputs": [], "source": [ "# import modules & set up logging\n", "import gensim, logging\n", + "\n", "logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s', level=logging.INFO)" ] }, @@ -53,23 +46,23 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:15,148 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:15,149 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:15,150 : INFO : collected 3 word types from a corpus of 4 raw words and 2 sentences\n", - "2017-06-29 10:36:15,152 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:15,158 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", - "2017-06-29 10:36:15,159 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", - "2017-06-29 10:36:15,160 : INFO : deleting the raw counts dictionary of 3 items\n", - "2017-06-29 10:36:15,167 : INFO : sample=0.001 downsamples 3 most-common words\n", - "2017-06-29 10:36:15,168 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", - "2017-06-29 10:36:15,169 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", - "2017-06-29 10:36:15,170 : INFO : resetting layer weights\n", - "2017-06-29 10:36:15,172 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:15,176 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:15,179 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:15,183 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:15,184 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", - "2017-06-29 10:36:15,185 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" + "2017-12-21 16:25:19,117 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,119 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,120 : INFO : collected 3 word types from a corpus of 4 raw words and 2 sentences\n", + "2017-12-21 16:25:19,120 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,121 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", + "2017-12-21 16:25:19,122 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", + "2017-12-21 16:25:19,123 : INFO : deleting the raw counts dictionary of 3 items\n", + "2017-12-21 16:25:19,124 : INFO : sample=0.001 downsamples 3 most-common words\n", + "2017-12-21 16:25:19,124 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", + "2017-12-21 16:25:19,125 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", + "2017-12-21 16:25:19,126 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,127 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,130 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,130 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,131 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,131 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", + "2017-12-21 16:25:19,132 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" ] } ], @@ -93,9 +86,7 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "# create some toy data to use with the following example\n", @@ -115,9 +106,7 @@ { "cell_type": "code", "execution_count": 4, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "class MySentences(object):\n", @@ -139,7 +128,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[['first'], ['sentence'], ['second'], ['sentence']]\n" + "[['second'], ['sentence'], ['first'], ['sentence']]\n" ] } ], @@ -157,23 +146,23 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:18,159 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:18,161 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:18,162 : INFO : collected 3 word types from a corpus of 4 raw words and 4 sentences\n", - "2017-06-29 10:36:18,163 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:18,164 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", - "2017-06-29 10:36:18,165 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", - "2017-06-29 10:36:18,166 : INFO : deleting the raw counts dictionary of 3 items\n", - "2017-06-29 10:36:18,167 : INFO : sample=0.001 downsamples 3 most-common words\n", - "2017-06-29 10:36:18,168 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", - "2017-06-29 10:36:18,169 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", - "2017-06-29 10:36:18,170 : INFO : resetting layer weights\n", - "2017-06-29 10:36:18,171 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:18,183 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:18,184 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:18,185 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:18,186 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", - "2017-06-29 10:36:18,186 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" + "2017-12-21 16:25:19,155 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,156 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,156 : INFO : collected 3 word types from a corpus of 4 raw words and 4 sentences\n", + "2017-12-21 16:25:19,157 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,158 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", + "2017-12-21 16:25:19,159 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", + "2017-12-21 16:25:19,161 : INFO : deleting the raw counts dictionary of 3 items\n", + "2017-12-21 16:25:19,162 : INFO : sample=0.001 downsamples 3 most-common words\n", + "2017-12-21 16:25:19,164 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", + "2017-12-21 16:25:19,165 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", + "2017-12-21 16:25:19,167 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,168 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,172 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,173 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,173 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,174 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", + "2017-12-21 16:25:19,174 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" ] } ], @@ -192,7 +181,7 @@ "output_type": "stream", "text": [ "Word2Vec(vocab=3, size=100, alpha=0.025)\n", - "{'second': , 'first': , 'sentence': }\n" + "{'second': , 'sentence': , 'first': }\n" ] } ], @@ -223,23 +212,23 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:19,845 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:19,847 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:19,848 : INFO : collected 3 word types from a corpus of 4 raw words and 4 sentences\n", - "2017-06-29 10:36:19,849 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:19,849 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", - "2017-06-29 10:36:19,850 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", - "2017-06-29 10:36:19,851 : INFO : deleting the raw counts dictionary of 3 items\n", - "2017-06-29 10:36:19,851 : INFO : sample=0.001 downsamples 3 most-common words\n", - "2017-06-29 10:36:19,852 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", - "2017-06-29 10:36:19,853 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", - "2017-06-29 10:36:19,853 : INFO : resetting layer weights\n", - "2017-06-29 10:36:19,854 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:19,856 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:19,857 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:19,858 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:19,858 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", - "2017-06-29 10:36:19,859 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" + "2017-12-21 16:25:19,190 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,191 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,192 : INFO : collected 3 word types from a corpus of 4 raw words and 4 sentences\n", + "2017-12-21 16:25:19,192 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,193 : INFO : min_count=1 retains 3 unique words (100% of original 3, drops 0)\n", + "2017-12-21 16:25:19,194 : INFO : min_count=1 leaves 4 word corpus (100% of original 4, drops 0)\n", + "2017-12-21 16:25:19,194 : INFO : deleting the raw counts dictionary of 3 items\n", + "2017-12-21 16:25:19,195 : INFO : sample=0.001 downsamples 3 most-common words\n", + "2017-12-21 16:25:19,195 : INFO : downsampling leaves estimated 0 word corpus (5.7% of prior 4)\n", + "2017-12-21 16:25:19,196 : INFO : estimated required memory for 3 words and 100 dimensions: 3900 bytes\n", + "2017-12-21 16:25:19,197 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,197 : INFO : training model with 3 workers on 3 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,201 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,202 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,202 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,203 : INFO : training on 20 raw words (0 effective words) took 0.0s, 0 effective words/s\n", + "2017-12-21 16:25:19,203 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" ] }, { @@ -271,7 +260,7 @@ "output_type": "stream", "text": [ "Word2Vec(vocab=3, size=100, alpha=0.025)\n", - "{'second': , 'first': , 'sentence': }\n" + "{'second': , 'sentence': , 'first': }\n" ] } ], @@ -291,9 +280,7 @@ { "cell_type": "code", "execution_count": 10, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "# Set file names for train and test data\n", @@ -310,7 +297,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "<__main__.MyText object at 0x7f1c0cfe6a10>\n" + "<__main__.MyText object at 0x7f20852714d0>\n" ] } ], @@ -346,22 +333,22 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:22,567 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:22,568 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:22,599 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", - "2017-06-29 10:36:22,601 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:22,613 : INFO : min_count=10 retains 806 unique words (7% of original 10186, drops 9380)\n", - "2017-06-29 10:36:22,614 : INFO : min_count=10 leaves 40964 word corpus (68% of original 59890, drops 18926)\n", - "2017-06-29 10:36:22,621 : INFO : deleting the raw counts dictionary of 10186 items\n", - "2017-06-29 10:36:22,623 : INFO : sample=0.001 downsamples 54 most-common words\n", - "2017-06-29 10:36:22,625 : INFO : downsampling leaves estimated 26224 word corpus (64.0% of prior 40964)\n", - "2017-06-29 10:36:22,629 : INFO : estimated required memory for 806 words and 100 dimensions: 1047800 bytes\n", - "2017-06-29 10:36:22,634 : INFO : resetting layer weights\n", - "2017-06-29 10:36:22,651 : INFO : training model with 3 workers on 806 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:22,791 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:22,792 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:22,793 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:22,795 : INFO : training on 299450 raw words (130961 effective words) took 0.1s, 928696 effective words/s\n" + "2017-12-21 16:25:19,238 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,239 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,260 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", + "2017-12-21 16:25:19,262 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,269 : INFO : min_count=10 retains 806 unique words (7% of original 10186, drops 9380)\n", + "2017-12-21 16:25:19,270 : INFO : min_count=10 leaves 40964 word corpus (68% of original 59890, drops 18926)\n", + "2017-12-21 16:25:19,274 : INFO : deleting the raw counts dictionary of 10186 items\n", + "2017-12-21 16:25:19,276 : INFO : sample=0.001 downsamples 54 most-common words\n", + "2017-12-21 16:25:19,277 : INFO : downsampling leaves estimated 26224 word corpus (64.0% of prior 40964)\n", + "2017-12-21 16:25:19,278 : INFO : estimated required memory for 806 words and 100 dimensions: 1047800 bytes\n", + "2017-12-21 16:25:19,284 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,295 : INFO : training model with 3 workers on 806 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,425 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,427 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,429 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,430 : INFO : training on 299450 raw words (130961 effective words) took 0.1s, 984255 effective words/s\n" ] } ], @@ -389,22 +376,22 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:25,482 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:25,484 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:25,505 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", - "2017-06-29 10:36:25,506 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:25,517 : INFO : min_count=5 retains 1723 unique words (16% of original 10186, drops 8463)\n", - "2017-06-29 10:36:25,519 : INFO : min_count=5 leaves 46858 word corpus (78% of original 59890, drops 13032)\n", - "2017-06-29 10:36:25,531 : INFO : deleting the raw counts dictionary of 10186 items\n", - "2017-06-29 10:36:25,533 : INFO : sample=0.001 downsamples 49 most-common words\n", - "2017-06-29 10:36:25,534 : INFO : downsampling leaves estimated 32849 word corpus (70.1% of prior 46858)\n", - "2017-06-29 10:36:25,535 : INFO : estimated required memory for 1723 words and 200 dimensions: 3618300 bytes\n", - "2017-06-29 10:36:25,542 : INFO : resetting layer weights\n", - "2017-06-29 10:36:25,587 : INFO : training model with 3 workers on 1723 vocabulary and 200 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:25,797 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:25,802 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:25,809 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:25,813 : INFO : training on 299450 raw words (164316 effective words) took 0.2s, 748937 effective words/s\n" + "2017-12-21 16:25:19,438 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,439 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,455 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", + "2017-12-21 16:25:19,456 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,464 : INFO : min_count=5 retains 1723 unique words (16% of original 10186, drops 8463)\n", + "2017-12-21 16:25:19,465 : INFO : min_count=5 leaves 46858 word corpus (78% of original 59890, drops 13032)\n", + "2017-12-21 16:25:19,473 : INFO : deleting the raw counts dictionary of 10186 items\n", + "2017-12-21 16:25:19,474 : INFO : sample=0.001 downsamples 49 most-common words\n", + "2017-12-21 16:25:19,475 : INFO : downsampling leaves estimated 32849 word corpus (70.1% of prior 46858)\n", + "2017-12-21 16:25:19,476 : INFO : estimated required memory for 1723 words and 200 dimensions: 3618300 bytes\n", + "2017-12-21 16:25:19,482 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,504 : INFO : training model with 3 workers on 1723 vocabulary and 200 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,699 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,707 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,709 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,710 : INFO : training on 299450 raw words (164316 effective words) took 0.2s, 807544 effective words/s\n" ] } ], @@ -430,24 +417,24 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:27,068 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:27,069 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:27,090 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", - "2017-06-29 10:36:27,091 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:27,109 : INFO : min_count=5 retains 1723 unique words (16% of original 10186, drops 8463)\n", - "2017-06-29 10:36:27,110 : INFO : min_count=5 leaves 46858 word corpus (78% of original 59890, drops 13032)\n", - "2017-06-29 10:36:27,118 : INFO : deleting the raw counts dictionary of 10186 items\n", - "2017-06-29 10:36:27,122 : INFO : sample=0.001 downsamples 49 most-common words\n", - "2017-06-29 10:36:27,123 : INFO : downsampling leaves estimated 32849 word corpus (70.1% of prior 46858)\n", - "2017-06-29 10:36:27,125 : INFO : estimated required memory for 1723 words and 100 dimensions: 2239900 bytes\n", - "2017-06-29 10:36:27,130 : INFO : resetting layer weights\n", - "2017-06-29 10:36:27,162 : INFO : training model with 4 workers on 1723 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:27,323 : INFO : worker thread finished; awaiting finish of 3 more threads\n", - "2017-06-29 10:36:27,325 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:27,330 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:27,331 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:27,334 : INFO : training on 299450 raw words (163999 effective words) took 0.2s, 963210 effective words/s\n", - "2017-06-29 10:36:27,337 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" + "2017-12-21 16:25:19,717 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:19,718 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:19,738 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", + "2017-12-21 16:25:19,739 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:19,787 : INFO : min_count=5 retains 1723 unique words (16% of original 10186, drops 8463)\n", + "2017-12-21 16:25:19,788 : INFO : min_count=5 leaves 46858 word corpus (78% of original 59890, drops 13032)\n", + "2017-12-21 16:25:19,796 : INFO : deleting the raw counts dictionary of 10186 items\n", + "2017-12-21 16:25:19,798 : INFO : sample=0.001 downsamples 49 most-common words\n", + "2017-12-21 16:25:19,799 : INFO : downsampling leaves estimated 32849 word corpus (70.1% of prior 46858)\n", + "2017-12-21 16:25:19,800 : INFO : estimated required memory for 1723 words and 100 dimensions: 2239900 bytes\n", + "2017-12-21 16:25:19,807 : INFO : resetting layer weights\n", + "2017-12-21 16:25:19,831 : INFO : training model with 4 workers on 1723 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:19,957 : INFO : worker thread finished; awaiting finish of 3 more threads\n", + "2017-12-21 16:25:19,959 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:19,962 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:19,965 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:19,966 : INFO : training on 299450 raw words (164263 effective words) took 0.1s, 1234170 effective words/s\n", + "2017-12-21 16:25:19,968 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" ] } ], @@ -505,15 +492,15 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:30,524 : INFO : precomputing L2-norms of word weight vectors\n", - "2017-06-29 10:36:30,529 : INFO : family: 0.0% (0/2)\n", - "2017-06-29 10:36:30,583 : INFO : gram3-comparative: 0.0% (0/12)\n", - "2017-06-29 10:36:30,618 : INFO : gram4-superlative: 0.0% (0/12)\n", - "2017-06-29 10:36:30,653 : INFO : gram5-present-participle: 5.0% (1/20)\n", - "2017-06-29 10:36:30,701 : INFO : gram6-nationality-adjective: 0.0% (0/20)\n", - "2017-06-29 10:36:30,741 : INFO : gram7-past-tense: 0.0% (0/20)\n", - "2017-06-29 10:36:30,781 : INFO : gram8-plural: 0.0% (0/12)\n", - "2017-06-29 10:36:30,792 : INFO : total: 1.0% (1/98)\n" + "2017-12-21 16:25:20,022 : INFO : precomputing L2-norms of word weight vectors\n", + "2017-12-21 16:25:20,037 : INFO : family: 0.0% (0/2)\n", + "2017-12-21 16:25:20,064 : INFO : gram3-comparative: 0.0% (0/12)\n", + "2017-12-21 16:25:20,077 : INFO : gram4-superlative: 0.0% (0/12)\n", + "2017-12-21 16:25:20,090 : INFO : gram5-present-participle: 0.0% (0/20)\n", + "2017-12-21 16:25:20,108 : INFO : gram6-nationality-adjective: 0.0% (0/20)\n", + "2017-12-21 16:25:20,125 : INFO : gram7-past-tense: 0.0% (0/20)\n", + "2017-12-21 16:25:20,142 : INFO : gram8-plural: 0.0% (0/12)\n", + "2017-12-21 16:25:20,151 : INFO : total: 0.0% (0/98)\n" ] }, { @@ -557,13 +544,14 @@ " (u'LARGE', u'LARGEST', u'GOOD', u'BEST'),\n", " (u'LARGE', u'LARGEST', u'GREAT', u'GREATEST')],\n", " 'section': u'gram4-superlative'},\n", - " {'correct': [(u'LOOK', u'LOOKING', u'SAY', u'SAYING')],\n", + " {'correct': [],\n", " 'incorrect': [(u'GO', u'GOING', u'LOOK', u'LOOKING'),\n", " (u'GO', u'GOING', u'PLAY', u'PLAYING'),\n", " (u'GO', u'GOING', u'RUN', u'RUNNING'),\n", " (u'GO', u'GOING', u'SAY', u'SAYING'),\n", " (u'LOOK', u'LOOKING', u'PLAY', u'PLAYING'),\n", " (u'LOOK', u'LOOKING', u'RUN', u'RUNNING'),\n", + " (u'LOOK', u'LOOKING', u'SAY', u'SAYING'),\n", " (u'LOOK', u'LOOKING', u'GO', u'GOING'),\n", " (u'PLAY', u'PLAYING', u'RUN', u'RUNNING'),\n", " (u'PLAY', u'PLAYING', u'SAY', u'SAYING'),\n", @@ -637,7 +625,7 @@ " (u'MAN', u'MEN', u'CHILD', u'CHILDREN')],\n", " 'section': u'gram8-plural'},\n", " {'correct': [], 'incorrect': [], 'section': u'gram9-plural-verbs'},\n", - " {'correct': [(u'LOOK', u'LOOKING', u'SAY', u'SAYING')],\n", + " {'correct': [],\n", " 'incorrect': [(u'HE', u'SHE', u'HIS', u'HER'),\n", " (u'HIS', u'HER', u'HE', u'SHE'),\n", " (u'GOOD', u'BETTER', u'GREAT', u'GREATER'),\n", @@ -670,6 +658,7 @@ " (u'GO', u'GOING', u'SAY', u'SAYING'),\n", " (u'LOOK', u'LOOKING', u'PLAY', u'PLAYING'),\n", " (u'LOOK', u'LOOKING', u'RUN', u'RUNNING'),\n", + " (u'LOOK', u'LOOKING', u'SAY', u'SAYING'),\n", " (u'LOOK', u'LOOKING', u'GO', u'GOING'),\n", " (u'PLAY', u'PLAYING', u'RUN', u'RUNNING'),\n", " (u'PLAY', u'PLAYING', u'SAY', u'SAYING'),\n", @@ -775,16 +764,18 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:32,406 : INFO : Pearson correlation coefficient against /home/chinmaya/GSOC/Gensim/gensim/gensim/test/test_data/wordsim353.tsv: 0.1480\n", - "2017-06-29 10:36:32,407 : INFO : Spearman rank-order correlation coefficient against /home/chinmaya/GSOC/Gensim/gensim/gensim/test/test_data/wordsim353.tsv: 0.1820\n", - "2017-06-29 10:36:32,408 : INFO : Pairs with unknown words ratio: 85.6%\n" + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `evaluate_word_pairs` (Method will be removed in 4.0.0, use self.wv.evaluate_word_pairs() instead).\n", + " \"\"\"Entry point for launching an IPython kernel.\n", + "2017-12-21 16:25:20,205 : INFO : Pearson correlation coefficient against /usr/local/lib/python2.7/dist-packages/gensim-3.2.0-py2.7-linux-x86_64.egg/gensim/test/test_data/wordsim353.tsv: 0.1020\n", + "2017-12-21 16:25:20,208 : INFO : Spearman rank-order correlation coefficient against /usr/local/lib/python2.7/dist-packages/gensim-3.2.0-py2.7-linux-x86_64.egg/gensim/test/test_data/wordsim353.tsv: 0.0816\n", + "2017-12-21 16:25:20,210 : INFO : Pairs with unknown words ratio: 85.6%\n" ] }, { "data": { "text/plain": [ - "((0.14802303571188502, 0.29991609812618542),\n", - " SpearmanrResult(correlation=0.18196628619816893, pvalue=0.20125520403388769),\n", + "((0.10198070183634717, 0.47640746107165499),\n", + " SpearmanrResult(correlation=0.081592940565853908, pvalue=0.56922382052578302),\n", " 85.55240793201133)" ] }, @@ -821,10 +812,10 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:33,533 : INFO : saving Word2Vec object under /tmp/tmpNVnhzsgensim_temp, separately None\n", - "2017-06-29 10:36:33,535 : INFO : not storing attribute syn0norm\n", - "2017-06-29 10:36:33,535 : INFO : not storing attribute cum_table\n", - "2017-06-29 10:36:33,550 : INFO : saved /tmp/tmpNVnhzsgensim_temp\n" + "2017-12-21 16:25:20,225 : INFO : saving Word2Vec object under /tmp/tmpot5iTxgensim_temp, separately None\n", + "2017-12-21 16:25:20,228 : INFO : not storing attribute syn0norm\n", + "2017-12-21 16:25:20,230 : INFO : not storing attribute cum_table\n", + "2017-12-21 16:25:20,242 : INFO : saved /tmp/tmpot5iTxgensim_temp\n" ] } ], @@ -845,11 +836,11 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:34,033 : INFO : loading Word2Vec object from /tmp/tmpNVnhzsgensim_temp\n", - "2017-06-29 10:36:34,041 : INFO : loading wv recursively from /tmp/tmpNVnhzsgensim_temp.wv.* with mmap=None\n", - "2017-06-29 10:36:34,042 : INFO : setting ignored attribute syn0norm to None\n", - "2017-06-29 10:36:34,044 : INFO : setting ignored attribute cum_table to None\n", - "2017-06-29 10:36:34,048 : INFO : loaded /tmp/tmpNVnhzsgensim_temp\n" + "2017-12-21 16:25:20,247 : INFO : loading Word2Vec object from /tmp/tmpot5iTxgensim_temp\n", + "2017-12-21 16:25:20,254 : INFO : loading wv recursively from /tmp/tmpot5iTxgensim_temp.wv.* with mmap=None\n", + "2017-12-21 16:25:20,255 : INFO : setting ignored attribute syn0norm to None\n", + "2017-12-21 16:25:20,255 : INFO : setting ignored attribute cum_table to None\n", + "2017-12-21 16:25:20,256 : INFO : loaded /tmp/tmpot5iTxgensim_temp\n" ] } ], @@ -888,29 +879,28 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:35,557 : INFO : loading Word2Vec object from /tmp/tmpNVnhzsgensim_temp\n", - "2017-06-29 10:36:35,566 : INFO : loading wv recursively from /tmp/tmpNVnhzsgensim_temp.wv.* with mmap=None\n", - "2017-06-29 10:36:35,567 : INFO : setting ignored attribute syn0norm to None\n", - "2017-06-29 10:36:35,572 : INFO : setting ignored attribute cum_table to None\n", - "2017-06-29 10:36:35,573 : INFO : loaded /tmp/tmpNVnhzsgensim_temp\n", - "2017-06-29 10:36:35,581 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:35,582 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:35,586 : INFO : collected 13 word types from a corpus of 13 raw words and 1 sentences\n", - "2017-06-29 10:36:35,587 : INFO : Updating model with new vocabulary\n", - "2017-06-29 10:36:35,589 : INFO : New added 0 unique words (0% of original 13)\n", - " and increased the count of 0 pre-existing words (0% of original 13)\n", - "2017-06-29 10:36:35,590 : INFO : deleting the raw counts dictionary of 13 items\n", - "2017-06-29 10:36:35,591 : INFO : sample=0.001 downsamples 0 most-common words\n", - "2017-06-29 10:36:35,592 : INFO : downsampling leaves estimated 0 word corpus (0.0% of prior 0)\n", - "2017-06-29 10:36:35,594 : INFO : estimated required memory for 1723 words and 100 dimensions: 2239900 bytes\n", - "2017-06-29 10:36:35,599 : INFO : updating layer weights\n", - "2017-06-29 10:36:35,601 : INFO : training model with 4 workers on 1723 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:35,606 : INFO : worker thread finished; awaiting finish of 3 more threads\n", - "2017-06-29 10:36:35,607 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:35,609 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:35,613 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:35,614 : INFO : training on 65 raw words (28 effective words) took 0.0s, 3413 effective words/s\n", - "2017-06-29 10:36:35,615 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" + "2017-12-21 16:25:20,266 : INFO : loading Word2Vec object from /tmp/tmpot5iTxgensim_temp\n", + "2017-12-21 16:25:20,273 : INFO : loading wv recursively from /tmp/tmpot5iTxgensim_temp.wv.* with mmap=None\n", + "2017-12-21 16:25:20,273 : INFO : setting ignored attribute syn0norm to None\n", + "2017-12-21 16:25:20,274 : INFO : setting ignored attribute cum_table to None\n", + "2017-12-21 16:25:20,275 : INFO : loaded /tmp/tmpot5iTxgensim_temp\n", + "2017-12-21 16:25:20,279 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:20,280 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:20,280 : INFO : collected 13 word types from a corpus of 13 raw words and 1 sentences\n", + "2017-12-21 16:25:20,281 : INFO : Updating model with new vocabulary\n", + "2017-12-21 16:25:20,281 : INFO : New added 0 unique words (0% of original 13) and increased the count of 0 pre-existing words (0% of original 13)\n", + "2017-12-21 16:25:20,282 : INFO : deleting the raw counts dictionary of 13 items\n", + "2017-12-21 16:25:20,282 : INFO : sample=0.001 downsamples 0 most-common words\n", + "2017-12-21 16:25:20,283 : INFO : downsampling leaves estimated 0 word corpus (0.0% of prior 0)\n", + "2017-12-21 16:25:20,283 : INFO : estimated required memory for 1723 words and 100 dimensions: 2239900 bytes\n", + "2017-12-21 16:25:20,287 : INFO : updating layer weights\n", + "2017-12-21 16:25:20,288 : INFO : training model with 4 workers on 1723 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:20,291 : INFO : worker thread finished; awaiting finish of 3 more threads\n", + "2017-12-21 16:25:20,292 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:20,292 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:20,293 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:20,293 : INFO : training on 65 raw words (30 effective words) took 0.0s, 10799 effective words/s\n", + "2017-12-21 16:25:20,294 : WARNING : under 10 jobs per worker: consider setting a smaller `batch_words' for smoother alpha decay\n" ] } ], @@ -946,13 +936,15 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:36,558 : INFO : precomputing L2-norms of word weight vectors\n" + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `most_similar` (Method will be removed in 4.0.0, use self.wv.most_similar() instead).\n", + " \"\"\"Entry point for launching an IPython kernel.\n", + "2017-12-21 16:25:20,299 : INFO : precomputing L2-norms of word weight vectors\n" ] }, { "data": { "text/plain": [ - "[('longer', 0.9916001558303833)]" + "[('longer', 0.9912284016609192)]" ] }, "execution_count": 20, @@ -973,7 +965,9 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:37,587 : WARNING : vectors for words set(['lunch', 'input', 'cat']) are not present in the model, ignoring these words\n" + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `doesnt_match` (Method will be removed in 4.0.0, use self.wv.doesnt_match() instead).\n", + " \"\"\"Entry point for launching an IPython kernel.\n", + "2017-12-21 16:25:20,311 : WARNING : vectors for words set(['lunch', 'input', 'cat']) are not present in the model, ignoring these words\n" ] }, { @@ -1000,8 +994,18 @@ "name": "stdout", "output_type": "stream", "text": [ - "0.99914980326\n", - "0.995203599363\n" + "0.999182520993\n", + "0.995758952957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `similarity` (Method will be removed in 4.0.0, use self.wv.similarity() instead).\n", + " \"\"\"Entry point for launching an IPython kernel.\n", + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:2: DeprecationWarning: Call to deprecated `similarity` (Method will be removed in 4.0.0, use self.wv.similarity() instead).\n", + " \n" ] } ], @@ -1026,7 +1030,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[('more', 0.0010031241), ('can', 0.00092728506), ('continue', 0.00087752187), ('training', 0.00080867682), ('there', 0.00075810013), ('three', 0.00075742434), ('australia', 0.00075092859), ('government', 0.0007505166), ('their', 0.00074284436), ('us', 0.00073618308)]\n" + "[('more', 0.0010738152), ('continue', 0.00097854261), ('can', 0.00088260754), ('training', 0.00085614622), ('it', 0.00077729771), ('there', 0.00076619512), ('australia', 0.00075446483), ('government', 0.00074923009), ('three', 0.00074201578), ('say', 0.00073336047)]\n" ] } ], @@ -1053,29 +1057,51 @@ "execution_count": 24, "metadata": {}, "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `__getitem__` (Method will be removed in 4.0.0, use self.wv.__getitem__() instead).\n", + " \"\"\"Entry point for launching an IPython kernel.\n" + ] + }, { "data": { "text/plain": [ - "array([ 0.00313283, 0.02270725, -0.0271953 , -0.00758541, -0.03084832,\n", - " -0.03540374, 0.00492509, -0.08605313, -0.00946797, -0.01907749,\n", - " 0.0190183 , -0.02690557, -0.0665649 , -0.01858037, -0.02188841,\n", - " 0.04523174, -0.03034727, -0.00294408, 0.02323552, -0.02585541,\n", - " -0.06424622, -0.00719615, 0.06513051, 0.04760417, 0.02894664,\n", - " 0.01104737, -0.00513022, 0.01997521, -0.0142725 , 0.00513998,\n", - " 0.00099208, 0.07234117, 0.01262072, -0.00151589, 0.02293177,\n", - " 0.02008283, -0.03751098, 0.01848946, 0.01339256, -0.06704903,\n", - " -0.07547309, 0.00120684, -0.04351105, -0.02421799, 0.03180883,\n", - " -0.05489816, 0.03536329, 0.00560333, -0.01004709, 0.04278436,\n", - " 0.01327703, 0.00862974, -0.03693489, 0.01097009, 0.01643447,\n", - " -0.01702741, 0.05618335, -0.03153885, 0.02427759, -0.03469121,\n", - " -0.03066109, -0.05092006, 0.01682321, -0.03714861, -0.00944941,\n", - " -0.06158038, -0.08220627, 0.03865834, 0.05205975, -0.00297223,\n", - " -0.00764436, 0.00625849, -0.04550754, 0.01111075, -0.04805974,\n", - " -0.05271595, 0.03614397, -0.01115665, 0.04689607, 0.04113698,\n", - " -0.01792447, 0.03566624, -0.01676619, 0.00202644, 0.01494004,\n", - " 0.00792563, -0.08858279, -0.08187189, 0.0634894 , -0.02159132,\n", - " -0.05633228, -0.04459627, -0.04756012, -0.0024067 , -0.02443214,\n", - " -0.02618414, -0.0249261 , 0.02130016, -0.05084078, 0.00092178], dtype=float32)" + "array([ 5.09738876e-03, 2.24877093e-02, -2.87369397e-02,\n", + " -7.89474510e-03, -3.53376977e-02, -4.06462997e-02,\n", + " 8.37074965e-03, -9.41743553e-02, -1.49697680e-02,\n", + " -2.52366997e-02, 2.65039261e-02, -2.40766741e-02,\n", + " -6.85459673e-02, -2.18667872e-02, -2.14908309e-02,\n", + " 4.93087023e-02, -2.92534381e-02, -1.88865454e-03,\n", + " 2.26040259e-02, -2.84134373e-02, -6.83278441e-02,\n", + " -6.75840862e-03, 7.07488284e-02, 5.21996431e-02,\n", + " 2.36152187e-02, 1.46892993e-02, -4.65966389e-03,\n", + " 1.81521084e-02, -1.66943893e-02, -5.45500545e-04,\n", + " 9.81825942e-05, 7.39010796e-02, 8.24716035e-03,\n", + " -3.30754719e-03, 2.59200167e-02, 2.25928240e-02,\n", + " -4.78062779e-02, 1.68881603e-02, 1.27557423e-02,\n", + " -7.06009716e-02, -8.09376314e-02, 5.74318040e-03,\n", + " -4.43559177e-02, -3.11263874e-02, 3.13786902e-02,\n", + " -5.85887060e-02, 4.01994959e-02, 4.16668272e-03,\n", + " -1.61651354e-02, 4.03134711e-02, 1.64259598e-02,\n", + " 6.99962350e-03, -3.78169157e-02, 7.13254418e-03,\n", + " 1.50061641e-02, -2.01686379e-02, 5.82966506e-02,\n", + " -2.78297253e-02, 1.81606133e-02, -3.56090963e-02,\n", + " -2.89950594e-02, -4.97125871e-02, 1.93165317e-02,\n", + " -2.90847234e-02, -1.07406462e-02, -6.75966665e-02,\n", + " -8.05926248e-02, 3.87299024e-02, 5.84914126e-02,\n", + " -2.87338771e-04, -1.47654228e-02, 8.10218137e-03,\n", + " -5.38245104e-02, 1.52460849e-02, -4.90099788e-02,\n", + " -5.80144748e-02, 3.85234654e-02, -4.70485678e-03,\n", + " 4.69632484e-02, 4.56776805e-02, -2.43359935e-02,\n", + " 3.39893550e-02, -1.67205688e-02, 2.83701695e-04,\n", + " 1.79673471e-02, 1.03446953e-02, -9.53995809e-02,\n", + " -8.30710083e-02, 6.81236908e-02, -3.47741581e-02,\n", + " -6.30266443e-02, -4.59022224e-02, -4.83927876e-02,\n", + " -5.33403922e-03, -2.84888912e-02, -2.93440577e-02,\n", + " -2.53614448e-02, 2.14495976e-02, -5.01872450e-02,\n", + " -2.60770670e-03], dtype=float32)" ] }, "execution_count": 24, @@ -1112,29 +1138,29 @@ "name": "stderr", "output_type": "stream", "text": [ - "2017-06-29 10:36:42,297 : INFO : collecting all words and their counts\n", - "2017-06-29 10:36:42,300 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", - "2017-06-29 10:36:42,333 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", - "2017-06-29 10:36:42,335 : INFO : Loading a fresh vocabulary\n", - "2017-06-29 10:36:42,372 : INFO : min_count=1 retains 10186 unique words (100% of original 10186, drops 0)\n", - "2017-06-29 10:36:42,372 : INFO : min_count=1 leaves 59890 word corpus (100% of original 59890, drops 0)\n", - "2017-06-29 10:36:42,406 : INFO : deleting the raw counts dictionary of 10186 items\n", - "2017-06-29 10:36:42,407 : INFO : sample=0.001 downsamples 37 most-common words\n", - "2017-06-29 10:36:42,408 : INFO : downsampling leaves estimated 47231 word corpus (78.9% of prior 59890)\n", - "2017-06-29 10:36:42,409 : INFO : estimated required memory for 10186 words and 100 dimensions: 13241800 bytes\n", - "2017-06-29 10:36:42,452 : INFO : resetting layer weights\n", - "2017-06-29 10:36:42,568 : INFO : training model with 3 workers on 10186 vocabulary and 100 features, using sg=1 hs=0 sample=0.001 negative=5 window=5\n", - "2017-06-29 10:36:43,357 : INFO : worker thread finished; awaiting finish of 2 more threads\n", - "2017-06-29 10:36:43,369 : INFO : worker thread finished; awaiting finish of 1 more threads\n", - "2017-06-29 10:36:43,392 : INFO : worker thread finished; awaiting finish of 0 more threads\n", - "2017-06-29 10:36:43,393 : INFO : training on 299450 raw words (235935 effective words) took 0.8s, 286433 effective words/s\n" + "2017-12-21 16:25:20,341 : INFO : collecting all words and their counts\n", + "2017-12-21 16:25:20,343 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n", + "2017-12-21 16:25:20,361 : INFO : collected 10186 word types from a corpus of 59890 raw words and 300 sentences\n", + "2017-12-21 16:25:20,362 : INFO : Loading a fresh vocabulary\n", + "2017-12-21 16:25:20,392 : INFO : min_count=1 retains 10186 unique words (100% of original 10186, drops 0)\n", + "2017-12-21 16:25:20,393 : INFO : min_count=1 leaves 59890 word corpus (100% of original 59890, drops 0)\n", + "2017-12-21 16:25:20,428 : INFO : deleting the raw counts dictionary of 10186 items\n", + "2017-12-21 16:25:20,429 : INFO : sample=0.001 downsamples 37 most-common words\n", + "2017-12-21 16:25:20,429 : INFO : downsampling leaves estimated 47231 word corpus (78.9% of prior 59890)\n", + "2017-12-21 16:25:20,430 : INFO : estimated required memory for 10186 words and 100 dimensions: 13241800 bytes\n", + "2017-12-21 16:25:20,454 : INFO : resetting layer weights\n", + "2017-12-21 16:25:20,556 : INFO : training model with 3 workers on 10186 vocabulary and 100 features, using sg=1 hs=0 sample=0.001 negative=5 window=5\n", + "2017-12-21 16:25:21,174 : INFO : worker thread finished; awaiting finish of 2 more threads\n", + "2017-12-21 16:25:21,185 : INFO : worker thread finished; awaiting finish of 1 more threads\n", + "2017-12-21 16:25:21,191 : INFO : worker thread finished; awaiting finish of 0 more threads\n", + "2017-12-21 16:25:21,192 : INFO : training on 299450 raw words (235935 effective words) took 0.6s, 372397 effective words/s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "1348399.25\n" + "1483200.25\n" ] } ], @@ -1158,14 +1184,14 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "['/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/../../gensim/test/test_data/lee_background.cor', '/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/text8_1000000', '/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/text8_10000000', '/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/text8_50000000', '/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/text8']\n" + "['/home/markroxor/Documents/gensim/docs/notebooks/../../gensim/test/test_data/lee_background.cor', '/home/markroxor/Documents/gensim/docs/notebooks/text8_1000000', '/home/markroxor/Documents/gensim/docs/notebooks/text8_10000000', '/home/markroxor/Documents/gensim/docs/notebooks/text8_50000000', '/home/markroxor/Documents/gensim/docs/notebooks/text8']\n" ] } ], @@ -1214,49 +1240,60 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 38, "metadata": {}, + "outputs": [], + "source": [ + "logging.getLogger().setLevel(logging.ERROR)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "['/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/../../gensim/test/test_data/lee_background.cor', '/home/chinmaya/GSOC/Gensim/gensim/docs/notebooks/text8_50000000']\n", - " compute_loss hs mean sg std \\\n", - "12 True 0 125.242767 1 0.442522 \n", - "13 False 0 124.090732 1 0.432895 \n", - "14 True 1 252.800164 1 1.140344 \n", - "15 False 1 245.065643 1 2.657392 \n", - "8 True 0 43.812430 0 1.216697 \n", - "9 False 0 42.815214 0 0.142814 \n", - "10 True 1 74.801153 0 0.300728 \n", - "11 False 1 74.236441 0 0.126426 \n", - "4 True 0 0.560387 1 0.005805 \n", - "5 False 0 0.687179 1 0.143629 \n", - "6 True 1 1.126855 1 0.004407 \n", - "7 False 1 1.135358 1 0.059161 \n", - "0 True 0 0.316948 0 0.005148 \n", - "1 False 0 0.319236 0 0.005792 \n", - "2 True 1 0.429879 0 0.005373 \n", - "3 False 1 0.429489 0 0.000756 \n", + "['/home/markroxor/Documents/gensim/docs/notebooks/../../gensim/test/test_data/lee_background.cor', '/home/markroxor/Documents/gensim/docs/notebooks/../../gensim/test/test_data/lee_background.cor']\n", + " compute_loss hs mean sg std \\\n", + "4 True 0 0.610034 1 0.022937 \n", + "12 True 0 0.593313 1 0.037120 \n", + "5 False 0 0.588043 1 0.027460 \n", + "13 False 0 0.578279 1 0.019227 \n", + "6 True 1 1.318451 1 0.100453 \n", + "14 True 1 1.309022 1 0.026008 \n", + "7 False 1 1.144407 1 0.120123 \n", + "15 False 1 1.362300 1 0.049005 \n", + "0 True 0 0.492458 0 0.079990 \n", + "8 True 0 0.452251 0 0.024318 \n", + "1 False 0 0.499348 0 0.130881 \n", + "9 False 0 0.469124 0 0.048385 \n", + "2 True 1 0.553494 0 0.033808 \n", + "10 True 1 0.604576 0 0.128907 \n", + "3 False 1 0.514230 0 0.019456 \n", + "11 False 1 0.477603 0 0.046651 \n", "\n", " train_data \n", - "12 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "13 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "14 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "15 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "8 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "9 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "10 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "11 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "4 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "5 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "6 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "7 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "0 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "1 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "2 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n", - "3 /home/chinmaya/GSOC/Gensim/gensim/docs/noteboo... \n" + "4 /home/markroxor/Documents/gensim/docs/notebook... \n", + "12 /home/markroxor/Documents/gensim/docs/notebook... \n", + "5 /home/markroxor/Documents/gensim/docs/notebook... \n", + "13 /home/markroxor/Documents/gensim/docs/notebook... \n", + "6 /home/markroxor/Documents/gensim/docs/notebook... \n", + "14 /home/markroxor/Documents/gensim/docs/notebook... \n", + "7 /home/markroxor/Documents/gensim/docs/notebook... \n", + "15 /home/markroxor/Documents/gensim/docs/notebook... \n", + "0 /home/markroxor/Documents/gensim/docs/notebook... \n", + "8 /home/markroxor/Documents/gensim/docs/notebook... \n", + "1 /home/markroxor/Documents/gensim/docs/notebook... \n", + "9 /home/markroxor/Documents/gensim/docs/notebook... \n", + "2 /home/markroxor/Documents/gensim/docs/notebook... \n", + "10 /home/markroxor/Documents/gensim/docs/notebook... \n", + "3 /home/markroxor/Documents/gensim/docs/notebook... \n", + "11 /home/markroxor/Documents/gensim/docs/notebook... \n" ] } ], @@ -1299,24 +1336,5482 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Conclusion\n", + "### Adding Word2Vec \"model to dict\" method to production pipeline\n", + "Suppose, we still want more performance improvement in production. \n", + "One good way is to cache all the similar words in a dictionary.\n", + "So that next time when we get the similar query word, we'll search it first in the dict.\n", + "And if it's a hit then we will show the result directly from the dictionary.\n", + "otherwise we will query the word and then cache it so that it doesn't miss next time." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "logging.getLogger().setLevel(format='%(asctime)s : %(levelname)s : %(message)s', level=logging.INFO)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "four [('over', 0.9999380111694336), ('world', 0.9999357461929321), ('after', 0.9999346137046814), ('local', 0.9999341368675232), ('on', 0.9999333024024963), ('last', 0.9999300241470337), ('into', 0.9999298453330994), ('a', 0.9999290704727173), ('at', 0.9999290108680725), ('from', 0.99992835521698)]\n", + "jihad [('on', 0.9995617866516113), ('gaza', 0.9995616674423218), ('and', 0.9995588064193726), ('palestinian', 0.9995542168617249), ('in', 0.999552845954895), ('former', 0.9995408654212952), ('from', 0.999538242816925), ('were', 0.9995372295379639), ('security', 0.9995347857475281), ('an', 0.9995279908180237)]\n", + "captain [('are', 0.9998434782028198), ('any', 0.9998313784599304), ('out', 0.9998288154602051), ('now', 0.9998278617858887), ('over', 0.999825656414032), ('have', 0.9998254776000977), ('australian', 0.999824583530426), ('is', 0.999819815158844), ('including', 0.9998170137405396), ('at', 0.99981689453125)]\n" + ] + } + ], + "source": [ + "most_similars_precalc = {word : model.wv.most_similar(word) for word in model.wv.index2word}\n", + "for i, (key, value) in enumerate(most_similars_precalc.iteritems()):\n", + " if i==3:\n", + " break\n", + " print key, value" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparison with and without caching" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "for time being lets take 4 words randomly" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "import time\n", + "words = ['voted','few','their','around']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Without caching" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('action', 0.998902440071106), ('would', 0.998866081237793), ('could', 0.9988579154014587), ('need', 0.9988564848899841), ('will', 0.9988539218902588), ('it', 0.9988477826118469), ('expected', 0.998836874961853), ('legal', 0.9988292455673218), ('we', 0.9988272786140442), ('called', 0.9988245368003845)]\n", + "[('from', 0.9997947216033936), ('which', 0.9997938871383667), ('australian', 0.9997910261154175), ('a', 0.9997884035110474), ('police', 0.9997864365577698), ('told', 0.9997841119766235), ('his', 0.9997839331626892), ('with', 0.9997835159301758), ('if', 0.999783456325531), ('be', 0.999782383441925)]\n", + "[('up', 0.9999563097953796), ('last', 0.9999551177024841), ('on', 0.9999517798423767), ('over', 0.9999500513076782), ('are', 0.9999494552612305), ('also', 0.9999493956565857), ('and', 0.9999493360519409), ('had', 0.9999492168426514), ('as', 0.9999483227729797), ('an', 0.9999469518661499)]\n", + "[('over', 0.9999304413795471), ('their', 0.9999291896820068), ('three', 0.9999284148216248), ('on', 0.9999280571937561), ('two', 0.9999274015426636), ('last', 0.9999268054962158), ('have', 0.9999215602874756), ('as', 0.999921441078186), ('us', 0.9999210834503174), ('from', 0.9999209046363831)]\n", + "0.00567579269409\n" + ] + } + ], + "source": [ + "start = time.time()\n", + "for word in words:\n", + " result = model.wv.most_similar(word)\n", + " print(result)\n", + "end = time.time()\n", + "print(end-start)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now with caching" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('action', 0.998902440071106), ('would', 0.998866081237793), ('could', 0.9988579154014587), ('need', 0.9988564848899841), ('will', 0.9988539218902588), ('it', 0.9988477826118469), ('expected', 0.998836874961853), ('legal', 0.9988292455673218), ('we', 0.9988272786140442), ('called', 0.9988245368003845)]\n", + "[('from', 0.9997947216033936), ('which', 0.9997938871383667), ('australian', 0.9997910261154175), ('a', 0.9997884035110474), ('police', 0.9997864365577698), ('told', 0.9997841119766235), ('his', 0.9997839331626892), ('with', 0.9997835159301758), ('if', 0.999783456325531), ('be', 0.999782383441925)]\n", + "[('up', 0.9999563097953796), ('last', 0.9999551177024841), ('on', 0.9999517798423767), ('over', 0.9999500513076782), ('are', 0.9999494552612305), ('also', 0.9999493956565857), ('and', 0.9999493360519409), ('had', 0.9999492168426514), ('as', 0.9999483227729797), ('an', 0.9999469518661499)]\n", + "[('over', 0.9999304413795471), ('their', 0.9999291896820068), ('three', 0.9999284148216248), ('on', 0.9999280571937561), ('two', 0.9999274015426636), ('last', 0.9999268054962158), ('have', 0.9999215602874756), ('as', 0.999921441078186), ('us', 0.9999210834503174), ('from', 0.9999209046363831)]\n", + "0.000878810882568\n" + ] + } + ], + "source": [ + "start = time.time()\n", + "for word in words:\n", + " if 'voted' in most_similars_precalc:\n", + " result = most_similars_precalc[word]\n", + " print(result)\n", + " else:\n", + " result = model.wv.most_similar(word)\n", + " most_similars_precalc[word] = result\n", + " print(result)\n", + " \n", + "end = time.time()\n", + "print(end-start)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Clearly you can see the improvement but this difference will be even larger when we take more words in the consideration." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualising the Word Embeddings" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The word embeddings made by the model can be visualised by reducing dimensionality of the words to 2 dimensions using tSNE.\n", "\n", - "In this tutorial we learned how to train word2vec models on your custom data and also how to evaluate it. Hope that you too will find this popular tool useful in your Machine Learning tasks!\n", + "Visualisations can be used to notice semantic and syntactic trends in the data.\n", "\n", - "## Links\n", + "Example: Semantic- words like cat, dog, cow, etc. have a tendency to lie close by\n", + " Syntactic- words like run, running or cut, cutting lie close together.\n", + "Vector relations like vKing - vMan = vQueen - vWoman can also be noticed.\n", "\n", + "Additional dependencies : \n", + "- sklearn\n", + "- numpy\n", + "- plotly\n", "\n", - "Full `word2vec` API docs [here](http://radimrehurek.com/gensim/models/word2vec.html); get [gensim](http://radimrehurek.com/gensim/) here. Original C toolkit and `word2vec` papers by Google [here](https://code.google.com/archive/p/word2vec/)." + "The function below can be used to plot the embeddings in an ipython notebook.\n", + "It requires the model as the necessary parameter. If you don't have the model, you can load it by\n", + "\n", + "`model = gensim.models.Word2Vec.load('path/to/model')`\n", + "\n", + "If you don't want to plot inside a notebook, set the `plot_in_notebook` parameter to `False`.\n", + "\n", + "Note: the model used for the visualisation is trained on a small corpus. Thus some of the relations might not be so clear\n", + "\n", + "Beware : This sort dimension reduction comes at the cost of loss of information." ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, + "execution_count": 43, + "metadata": {}, "outputs": [], - "source": [] + "source": [ + "from sklearn.decomposition import IncrementalPCA # inital reduction\n", + "from sklearn.manifold import TSNE # final reduction\n", + "import numpy as np # array handling\n", + "\n", + "from plotly.offline import init_notebook_mode, iplot, plot\n", + "import plotly.graph_objs as go\n", + "\n", + "def reduce_dimensions(model, plot_in_notebook = True):\n", + "\n", + " num_dimensions = 2 # final num dimensions (2D, 3D, etc)\n", + "\n", + " vectors = [] # positions in vector space\n", + " labels = [] # keep track of words to label our data again later\n", + " for word in model.wv.vocab:\n", + " vectors.append(model[word])\n", + " labels.append(word)\n", + "\n", + "\n", + " # convert both lists into numpy vectors for reduction\n", + " vectors = np.asarray(vectors)\n", + " labels = np.asarray(labels)\n", + " \n", + " # reduce using t-SNE\n", + " vectors = np.asarray(vectors)\n", + " logging.info('starting tSNE dimensionality reduction. This may take some time.')\n", + " tsne = TSNE(n_components=num_dimensions, random_state=0)\n", + " vectors = tsne.fit_transform(vectors)\n", + "\n", + " x_vals = [v[0] for v in vectors]\n", + " y_vals = [v[1] for v in vectors]\n", + " \n", + " # Create a trace\n", + " trace = go.Scatter(\n", + " x=x_vals,\n", + " y=y_vals,\n", + " mode='text',\n", + " text=labels\n", + " )\n", + " \n", + " data = [trace]\n", + " \n", + " logging.info('All done. Plotting.')\n", + " \n", + " if plot_in_notebook:\n", + " init_notebook_mode(connected=True)\n", + " iplot(data, filename='word-embedding-plot')\n", + " else:\n", + " plot(data, filename='word-embedding-plot.html')" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/lib/python2.7/dist-packages/ipykernel_launcher.py:15: DeprecationWarning:\n", + "\n", + "Call to deprecated `__getitem__` (Method will be removed in 4.0.0, use self.wv.__getitem__() instead).\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "" + ], + "text/vnd.plotly.v1+html": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "mode": "text", + "text": [ + "four", + "jihad", + "captain", + "gillespie", + "whose", + "seles", + "voted", + "warplanes", + "under", + "lord", + "placed", + "rescue", + "regional", + "women's", + "every", + "today.", + "today,", + "bringing", + "school", + "companies", + "announced", + "yesterday's", + "south-west", + "heading", + "force", + "leaders", + "japanese", + "second", + "warne", + "asio", + "spokesman", + "above", + "toll", + "new", + "ever", + "told", + "men", + "here", + "hundreds", + "met", + "protection", + "path", + "leader,", + "voice", + "employees", + "changed", + "envoy", + "reports", + "credit", + "smoke", + "military", + "i'm", + "changes", + "toowoomba", + "criticism", + "secure", + "campaign", + "hamas", + "war.", + "counts", + "total", + "unit", + "sarah", + "would", + "army", + "hospital", + "call", + "raids", + "strike", + "until", + "supporters", + "aware", + "hold", + "circumstances", + "me", + "locked", + "rights", + "1999", + "work", + "mt", + "ms", + "mr", + "my", + "india's", + "give", + "india", + "want", + "keep", + "risk", + "ceremony", + "end", + "recovery", + "provide", + "travel", + "damage", + "kabul", + "how", + "boats", + "place", + "massive", + "rise", + "after", + "damaged", + "president", + "law", + "amin", + "attempt", + "third", + "\"we've", + "enter", + "order", + "wind", + "operations", + "office", + "welcomed", + "over", + "expects", + "mayor", + "bombing", + "died.", + "crew", + "destroyed", + "400", + "wales", + "weeks", + "then", + "them", + "affected", + "we'll", + "break", + "they", + "jenin", + "bank", + "week.", + "arrested", + "bonn", + "each", + "went", + "side", + "costello", + "financial", + "yallourn", + "series", + "allan", + "vote", + "trading", + "doug", + "saturday", + "network", + "george", + "day.", + "got", + "26-year-old", + "resume", + "threatened", + "given", + "wanted", + "qantas'", + "created", + "days", + "\"this", + "today's", + "industrial", + "hearing", + "another", + "antarctic", + "service", + "top", + "rates", + "too", + "john", + "hewitt", + "murder", + "collapse", + "took", + "rejected", + "direct", + "western", + "ahmed", + "showed", + "tree", + "likely", + "nations", + "project", + "matter", + "solomon", + "williams", + "company's", + "powers", + "mining", + "yachts", + "well,", + "seen", + "ray", + "forced", + "laden", + "responsible", + "-", + "launceston", + "forces", + "completed", + "even", + "though", + "sharon's", + "explosives", + "zealand", + "assisting", + "richard", + "force,", + "professor", + "storm", + "came", + "reserve", + "saying", + "bomb", + "qaeda", + "radio", + "witnesses", + "proposed", + "unemployment", + "bush", + "adequate", + "do", + "stop", + "television", + "coast", + "despite", + "report", + "dr", + "runs", + "countries", + "twice", + "rival", + "ban", + "them.", + "secretary", + "respond", + "disaster", + "fair", + "decided", + "result", + "best", + "said", + "lockett", + "away", + "there's", + "cooperation", + "caves", + "approach", + "we", + "never", + "terms", + "however", + "news", + "debt", + "blasted", + "suggested", + "received", + "protect", + "accident", + "reported", + "country", + "against", + "faces", + "asked", + "tough", + "appeared", + "had", + "tony", + "100", + "now,", + "governor-general", + "\"you", + "union", + "three", + "been", + "quickly", + "commission", + "much", + "interest", + "expected", + "entered", + "dozens", + "life", + "families", + "eastern", + "child", + "worked", + "mohammad", + "east", + "publicly", + "air", + "near", + "property", + "study", + "launched", + "seven", + "\"a", + "played", + "is", + "it", + "in", + "said,", + "said.", + "if", + "confirmed", + "centre,", + "things", + "make", + "complex", + "several", + "blue", + "rain", + "shortly", + "replied:", + "greatest", + "claims", + "the", + "left", + "just", + "sentence", + "fighters", + "human", + "yet", + "previous", + "adding", + "unable", + "royal", + "squad", + "board", + "has", + "gave", + "ago,", + "ago.", + "possible", + "injuring", + "brought", + "states,", + "states.", + "country.", + "50", + "offices", + "night", + "security", + "right", + "old", + "deal", + "people", + "understand", + "dead", + "donald", + "bora", + "for", + "ice", + "everything", + "individuals", + "musharraf", + "attack.", + "month.", + "denied", + "christmas", + "payment", + "losing", + "post", + "manufacturing", + "attacks", + "airline's", + "dollars", + "months", + "costs", + "ensure", + "islands", + "efforts", + "palestinians", + "jacques", + "presence", + "civil", + "two", + "down", + "crowd", + "support", + "tennis", + "fight", + "absolutely", + "way", + "crews", + "factions", + "was", + "war", + "happy", + "head", + "form", + "offer", + "ford", + "statement.", + "tasmania", + "surrender", + "responding", + "inside", + "tell", + "economic", + "150", + "classic", + "evidence", + "peres", + "promised", + "trip", + "sydney's", + "adelaide", + "palestinian", + "no", + "when", + "actor", + "role", + "holding", + "test", + "scored", + "felt", + "fell", + "authorities", + "weekend", + "died", + "longer", + "australians", + "yacht", + "together", + "time", + "serious", + "mountains.", + "\"his", + "government,", + "anglican", + "government.", + "coach", + "austar", + "global", + "focus", + "manager", + "battle", + "bomber", + "hijacked", + "certainly", + "suicide", + "environment", + "charge", + "terror", + "month,", + "suffered", + "daryl", + "tanks", + "celebrations", + "timor", + "level", + "did", + "proposals", + "gun", + "leave", + "team", + "round", + "batsmen", + "prevent", + "says", + "findings", + "\"these", + "sign", + "colin", + "cost", + "targets", + "afghanistan", + "assistance", + "current", + "suspect", + "international", + "muslim", + "french", + "understanding", + "water", + "groups", + "address", + "gorge", + "along", + "appears", + "change", + "sending", + "neville", + "flames", + "battling", + "institute", + "guilty", + "industry.", + "retired", + "hicks,", + "pakistan's", + "nablus", + "crisis", + "sharon,", + "seekers.", + "troops", + "working", + "ariel", + "visit", + "france", + "territories", + "live", + "andy", + "australian", + "ruddock", + "today", + "commissioner", + "effort", + "boucher", + "bowler", + "car", + "believes", + "can", + "believed", + "making", + "australia.", + "claim", + "december", + "didn't", + "heard", + "dropped", + "council", + "allowed", + "redundancy", + "1", + "state's", + "economy", + "staying", + "information", + "may", + "southern", + "washington.", + "interlaken", + "crashed", + "such", + "revealed", + "man", + "natural", + "st", + "freeze.", + "jail", + "ambush.", + "african", + "representation", + "increase", + "pulled", + "years", + "course", + "still", + "group", + "he's", + "organisation", + "facility", + "months,", + "months.", + "policy", + "main", + "happened", + "halt", + "reveal", + "year,", + "year.", + "taliban", + "half", + "not", + "now", + "killed", + "january", + "drop", + "bowling", + "quarter", + "fired", + "peacekeepers", + "fires", + "begun", + "year", + "\"that", + "tried", + "adelaide.", + "opened", + "space", + "tensions", + "factory", + "looking", + "seriously", + "investigation", + "washington,", + "internet", + "entitlements", + "receiving", + "advice", + "shows", + "earlier", + "cars", + "million", + "possibility", + "quite", + "marine", + "advance", + "training", + "ministry", + "british", + "turn", + "\"we're", + "aboard", + "rumsfeld", + "think", + "first", + "flying", + "fleeing", + "one", + "americans", + "fast", + "suspended", + "carry", + "open", + "tomorrow", + "city", + "little", + "ian", + "virgin", + "caught", + "anyone", + "2", + "white", + "speaking", + "gives", + "million.", + "allegedly", + "that", + "\"there", + "released", + "representing", + "than", + "population", + "11", + "10", + "13", + "12", + "15", + "14", + "18", + "diplomatic", + "spokeswoman", + "authority.", + "victorian", + "future", + "were", + "marines", + "and", + "premier", + "say", + "saw", + "any", + "anz", + "potential", + "take", + "channel", + "200", + "begin", + "sure", + "normal", + "track", + "knew", + "harrison's", + "paid", + "afternoon,", + "kallis", + "later", + "senior", + "terrorism.", + "laws", + "shot", + "show", + "allegations", + "hopes", + "television.", + "ground", + "weapons", + "storms", + "behind", + "crime", + "september", + "only", + "going", + "dispute", + "get", + "meanwhile,", + "mission", + "cannot", + "nearly", + "honours", + "prime", + "krishna", + "morning", + "embassy", + "where", + "declared", + "elected", + "concern", + "israeli", + "farmers", + "federal", + "review", + "seekers", + "forecast", + "whereabouts", + "enough", + "bureau", + "between", + "nauru", + "before", + "across", + "jobs", + "killing", + "australia's", + "jets", + "come", + "israel.", + "israel,", + "many", + "region", + "according", + "called", + "tour", + "senator", + "comes", + "nearby", + "among", + "containment", + "cancer", + "period", + "approval", + "boat", + "late", + "howard", + "west", + "airlines", + "mark", + "helicopter", + "500", + "wants", + "shopping", + "offered", + "observers", + "wake", + "minister", + "suspected", + "former", + "those", + "pilot", + "paying", + "these", + "tribal", + "w", + "situation", + "eventually", + "self-rule", + "telephone", + "commander", + "middle", + "technology", + "different", + "pay", + "same", + "inquiry", + "negotiations", + "\"i", + "document", + "week", + "oil", + "director", + "running", + "charges", + "severe", + "without", + "can't", + "charged", + "pakistan", + "being", + "money", + "rest", + "violent", + "handed", + "guides", + "captured", + "death", + "we've", + "perth", + "treatment", + "republic", + "struck", + "scheduled", + "around", + "read", + "early", + "action,", + "action.", + "using", + "disappointed", + "ruled", + "served", + "reduced", + "pacific", + "confirm", + "attacks,", + "attacks.", + "recorded", + "legal", + "custody", + "sydney.", + "sydney,", + "victory", + "business", + "leadership", + "wickets", + "on", + "central", + "area,", + "hicks", + "island", + "industry", + "violence", + "community.", + "must", + "airline", + "act", + "mean", + "provisional", + "road", + "bichel", + "burning", + "determine", + "parties", + "morning,", + "your", + "morning.", + "vaughan", + "prepare", + "area", + "there", + "alleged", + "strip", + "start", + "low", + "lot", + "hare", + "downer", + "gaza", + "strikes", + "cabinet", + "trying", + "with", + "they're", + "monday,", + "assa", + "\"it's", + "gone", + "am", + "al", + "fellow", + "britain", + "at", + "senate", + "crean", + "again", + "personnel", + "insurance", + "field", + "summit", + "5", + "you", + "hospital.", + "shaun", + "4,000", + "separate", + "students", + "important", + "queensland", + "building", + "calls", + "qantas", + "directors", + "mass", + "adam", + "starting", + "all", + "caused", + "lack", + "month", + "unrest", + "talks", + "follow", + "settlement", + "children", + "north.", + "thursday", + "to", + "program", + "safety", + "earlier,", + "case", + "returned", + "returning", + "very", + "\"he", + "detention", + "\"every", + "worst", + "decide", + "fall", + "tomorrow.", + "condition", + "list", + "large", + "small", + "manslaughter", + "streets", + "past", + "winds", + "rate", + "further", + "investment", + "what", + "defence", + "consumers", + "him.", + "public", + "movement", + "full", + "28-year-old", + "hours", + "operating", + "civilians", + "november", + "strong", + "search", + "ahead", + "prior", + "airport", + "action", + "options", + "followed", + "family", + "africa", + "ask", + "gunmen", + "armed", + "finally", + "pollock", + "afghanistan's", + "taken", + "markets", + "more", + "ahead.", + "israel", + "company", + "landed", + "known", + "town", + "hour", + "remain", + "nine", + "male", + "share", + "accept", + "states", + "hours,", + "huge", + "needs", + "court", + "bank,", + "rather", + "american", + "reject", + "talks.", + "plans", + "b-52", + "brett", + "state.", + "plane", + "adventure", + "coming", + "response", + "a", + "short", + "overnight", + "responsibility", + "media", + "banks", + "playing", + "that's", + "\"in", + "help", + "don't", + "\"if", + "soon", + "trade", + "held", + "already", + "through", + "\"it", + "its", + "24", + "25", + "26", + "20", + "21", + "23", + "afghanistan.", + "border", + "actually", + "clashes", + "speech", + "might", + "it.", + "it,", + "good", + "return", + "seeking", + "food", + "number", + "always", + "ashes", + "stopped", + "found", + "heavy", + "neil", + "house", + "energy", + "hard", + "reduce", + "expect", + "operation", + "beyond", + "event", + "really", + "robert", + "since", + "research", + "hayden", + "acting", + "health", + "hill", + "issue", + "sharon", + "highway", + "confidence", + "base", + "members", + "put", + "beginning", + "yasser", + "year's", + "conducted", + "threat", + "major", + "feel", + "radical", + "tailenders", + "done", + "guess", + "leading", + "threatening", + "least", + "militant", + "station", + "statement", + "group,", + "hundred", + "passed", + "relationship", + "trapped", + "hotel", + "park", + "part", + "doctors", + "believe", + "canyoning", + "king", + "determined", + "coast.", + "treated", + "alongside", + "organisations", + "aged", + "mountain", + "built", + "officers", + "also", + "labour", + "chairman", + "finding", + "play", + "towards", + "singles", + "measures", + "reach", + "most", + "virus", + "negotiating", + "significant", + "services", + "clear", + "hamid", + "night,", + "attacking", + "night.", + "sector", + "find", + "giant", + "northern", + "justice", + "failed", + "flights", + "wayne", + "his", + "hit", + "hiv", + "trees", + "5,000", + "commission,", + "hih", + "during", + "him", + "alexander", + "resolve", + "banking", + "militants.", + "activity", + "switzerland", + "doubles", + "river", + "set", + "ses", + "city,", + "intelligence", + "ansett", + "geoff", + "are", + "sea", + "close", + "currently", + "unions", + "won", + "years,", + "years.", + "probably", + "conditions", + "europe", + "days.", + "aircraft", + "opposition", + "both", + "last", + "sultan", + "annual", + "foreign", + "connection", + "became", + "however,", + "whole", + "point", + "melbourne,", + "whatever", + "throughout", + "there,", + "described", + "create", + "political", + "due", + "convicted", + "secret", + "them,\"", + "maintenance", + "territory", + "meeting", + "firm", + "flight", + "champion", + "boy", + "fire", + "firefighters", + "gas", + "unidentified", + "anthony", + "races", + "lives", + "extensive", + "handling", + "look", + "bill", + "governor", + "pace", + "while", + "real", + "hoping", + "owen", + "ready", + "strip,", + "grant", + "arafat's", + "grand", + "conflict", + "used", + "temporary", + "affairs", + "yesterday", + "levels", + "arrived", + "cent.", + "residents", + "recent", + "lower", + "people,", + "people.", + "person", + "edge", + "swiss", + "lording", + "know", + "endeavour", + "questions", + "world", + "wage", + "cut", + "cup", + "workers", + "friedli", + "source", + "capital,", + "sydney", + "remaining", + "bin", + "...", + "indonesian", + "australia", + "march", + "emergency", + "big", + "bid", + "game", + "bit", + "projects", + "lost", + "follows", + "commanders", + "heart", + "zinni", + "continue", + "often", + "overnight.", + "some", + "back", + "metres", + "understood", + "added", + "\"we", + "investigating", + "delivered", + "decision", + "per", + "market", + "be", + "run", + "continuing", + "agreement", + "refused", + "step", + "union's", + "by", + "it,\"", + "anything", + "melbourne", + "range", + "militia", + "stuart", + "plan", + "into", + "within", + "osama", + "nothing", + "wicket", + "pentagon", + "centre.", + "statistics", + "long", + "timor's", + "crackdown", + "infected", + "we're", + "heritage", + "forward", + "mountains", + "himself", + "jewish", + "laden,", + "immigration", + "hoped", + "russian", + "line", + "deployed", + "up", + "us", + "un", + "planes", + "medical", + "argentina's", + "single", + "warning", + "well,\"", + "as", + "traditional", + "ballot", + "peace", + "department", + "nice", + "problems", + "prepared", + "militants", + "sides", + "ago", + "land", + "fighter", + "walked", + "2002", + "2001", + "far", + "having", + "jason", + "whiting", + "issued", + "resistance", + "steve", + "go", + "issues", + "seemed", + "simon", + "concerned", + "young", + "blaze", + "kieren", + "afroz", + "include", + "sent", + "fatah", + "outside", + "illawarra", + "continues", + "wave", + "putting", + "continued", + "afghanistan,", + "positions", + "michael", + "eve", + "try", + "race", + "verdict", + "laden's", + "government's", + "tora", + "power", + "giving", + "expressed", + "access", + "waiting", + "indian", + "capital", + "body", + "led", + "lee", + "growing", + "river.", + "others", + "hobart", + "great", + "receive", + "involved", + "leaving", + "india.", + "survey", + "added.", + "perth.", + "deputy", + "win", + "private", + "names", + "use", + "from", + "remains", + "ministers", + "next", + "few", + "doubt", + "save", + "themselves", + "sort", + "parliament", + "started", + "initial", + "local", + "carrying", + "israelis", + "women", + "this", + "minister,", + "crossed", + "of", + "meet", + "control", + "arafat", + "process", + "high", + "something", + "sir", + "united", + "boxing", + "escalating", + "hamas,", + "afp", + "stand", + "buildings", + "farm", + "abuse", + "ethnic", + "bombers", + "light", + "or", + "chief", + "out.", + "allow", + "volunteers", + "six", + "meeting.", + "alliance", + "including", + "mcgrath", + "helicopters", + "sunday", + "labor", + "criminal", + "world,", + "crash", + "greater", + "front", + "day", + "kilometres", + "yesterday.", + "warned", + "university", + "accompanied", + "commonwealth", + "3,000", + "gary", + "related", + "our", + "80", + "special", + "out", + "anti-taliban", + "ricky", + "time,", + "time.", + "cause", + "red", + "approached", + "weekend.", + "york", + "philip", + "her", + "islamic", + "could", + "times", + "south", + "williams,", + "2,000", + "strategic", + "reached", + "doesn't", + "city.", + "management", + "swept", + "data", + "system", + "relations", + "their", + "attack", + "israelis.", + "sergeant", + "travelled", + "pakistani", + "final", + "explanation", + "july", + "sex", + "australia,", + "hearings", + "see", + "pakistan.", + "have", + "need", + "region,", + "apparently", + "clearly", + "documents", + "agency", + "able", + "concerns", + "which", + "so", + "centre", + "waugh", + "who", + "eight", + "why", + "request", + "disease", + "face", + "1,000", + "wounded", + "fact", + "son", + "area.", + "agreed", + "bring", + "planning", + "soldiers", + "fear", + "asylum", + "debate", + "staff", + "based", + "knowledge", + "winner", + "should", + "bombings", + "tape", + "various", + "thousands", + "hope", + "move", + "means", + "beat", + "overall", + "hopman", + "areas", + "following", + "well.\"", + "ended", + "mohammed", + "calling", + "reid", + "extremists", + "control.", + "she", + "arafat,", + "available", + "national", + "freeze", + "officials", + "attempting", + "state", + "hollingworth", + "closed", + "ability", + "opening", + "gunships", + "job", + "key", + "police", + "david", + "karzai", + "taking", + "incident", + "drug", + "figures", + "wall", + "walk", + "kandahar", + "winning", + "attorney-general", + "tragedy.", + "it's", + "cent", + "\"i'm", + "general", + "moved", + "finished", + "an", + "present", + "homes", + "holiday", + "macgill", + "will", + "almost", + "helped", + "claimed", + "finance", + "terrorist", + "began", + "woomera", + "administration", + "member", + "matthew", + "unity", + "parts", + "largest", + "shuttle", + "party", + "terrorism", + "powell", + "difficult", + "injured", + "\"they", + "innings", + "fierce", + "afghan", + "off", + "48", + "i", + "indonesia", + "well", + "fighting", + "thought", + "position", + "latest", + "less", + "executive", + "domestic", + "sources", + "interim", + "test.", + "work.", + "headed", + "arrest", + "match", + "rafter", + "increased", + "government", + "zimbabwe", + "five", + "community", + "press", + "immediately", + "\"but", + "like", + "success", + "martin", + "become", + "yesterday,", + "because", + "searching", + "authority", + "growth", + "choosing", + "home", + "peter", + "employment", + "transport", + "happens", + "\"what", + "contested", + "lead", + "avoid", + "detainees", + "does", + "leader", + "pressure", + "although", + "stage", + "about", + "carried", + "getting", + "suharto", + "own", + "tourists", + "glenn", + "washington", + "guard", + "weather", + "lung", + "accused", + "confident", + "spread", + "biggest", + "place,", + "cricket", + "north", + "i've", + "shane", + "bus", + "but", + "administrators", + "construction", + "match.", + "he", + "made", + "places", + "whether", + "official", + "signed", + "record", + "problem", + "deaths", + "areas.", + "deadly", + "attacked", + "40", + "detain", + "other", + "details", + "better", + "you're", + "monday", + "stay", + "chance", + "resolution", + "rule", + "rural", + "\"the" + ], + "type": "scatter", + "x": [ + 0.3441716432571411, + -36.2669563293457, + 19.514047622680664, + 27.077457427978516, + -27.413311004638672, + -16.72726058959961, + 14.781585693359375, + -38.34743881225586, + 5.635685920715332, + 11.950584411621094, + -27.09663200378418, + -15.486586570739746, + 17.922334671020508, + 26.447107315063477, + -40.15137481689453, + -8.763297080993652, + -41.80199432373047, + -17.284311294555664, + 30.668914794921875, + 1.8460625410079956, + -39.81226348876953, + 23.482791900634766, + -3.469357967376709, + -0.07683272659778595, + 16.823055267333984, + 15.843067169189453, + 5.222157955169678, + 11.708001136779785, + -35.857601165771484, + -21.579833984375, + 23.33793067932129, + -12.320472717285156, + 34.06637954711914, + -12.86152458190918, + 16.33005714416504, + -4.908562183380127, + -33.672115325927734, + -20.26957893371582, + -17.83944320678711, + 13.13978099822998, + 1.0177682638168335, + 13.852602005004883, + 11.614957809448242, + 28.638872146606445, + -22.271793365478516, + -40.84769821166992, + -1.5715281963348389, + -10.064399719238281, + 34.20647048950195, + 1.5823731422424316, + 7.698818206787109, + -18.559370040893555, + -7.7181243896484375, + 7.985690593719482, + 9.65930461883545, + -5.47237491607666, + -26.925086975097656, + 10.278138160705566, + 26.12872886657715, + 13.641818046569824, + 33.239341735839844, + 10.524492263793945, + -31.00865364074707, + -9.118504524230957, + -26.35927963256836, + 3.941861867904663, + -25.549877166748047, + -36.432071685791016, + 18.563526153564453, + -38.8581657409668, + 22.018474578857422, + -22.7045841217041, + 34.37922286987305, + 12.438255310058594, + -40.742408752441406, + 22.07271385192871, + -39.65869140625, + 6.775811672210693, + 19.172849655151367, + -11.5621919631958, + -25.17427635192871, + -12.06090259552002, + -41.99275207519531, + -21.078670501708984, + -10.364314079284668, + 2.347712993621826, + 17.71481704711914, + 27.81553077697754, + -24.668556213378906, + 23.837844848632812, + 10.992938041687012, + 18.314453125, + 36.78922653198242, + -15.969558715820312, + -13.830667495727539, + -17.569873809814453, + 23.195358276367188, + 11.093222618103027, + 14.216841697692871, + -41.72689437866211, + 25.644468307495117, + -14.055258750915527, + 5.497405529022217, + 4.7616143226623535, + 13.14283275604248, + 23.63823699951172, + 25.398300170898438, + 21.102109909057617, + 17.53806495666504, + 35.5933952331543, + 4.381110668182373, + 10.122457504272461, + -40.3548698425293, + 21.647939682006836, + -6.522067070007324, + -10.010257720947266, + -19.908493041992188, + 35.58885192871094, + -37.10378646850586, + -2.11910080909729, + -28.97340965270996, + 28.538002014160156, + -12.469653129577637, + 23.053462982177734, + -39.99082565307617, + 22.64803695678711, + 9.213294982910156, + -9.02323055267334, + -9.048445701599121, + -15.328261375427246, + -10.589115142822266, + -12.439894676208496, + 16.501937866210938, + 15.578611373901367, + 9.476787567138672, + 35.10286331176758, + -12.821276664733887, + -1.0290251970291138, + -28.482240676879883, + -20.328372955322266, + -40.946449279785156, + 12.212675094604492, + -8.288383483886719, + -40.540592193603516, + 35.26898193359375, + 4.020646572113037, + 3.209683418273926, + 31.770708084106445, + -31.428325653076172, + 19.170114517211914, + 16.749540328979492, + 19.657033920288086, + -8.268899917602539, + 22.941049575805664, + 16.943527221679688, + 23.43215560913086, + 9.542856216430664, + 36.98458480834961, + -6.407179832458496, + 8.396486282348633, + -15.910055160522461, + 31.92619514465332, + 17.623615264892578, + -7.686980247497559, + 20.126184463500977, + 18.030317306518555, + 5.599037170410156, + -18.3237247467041, + 16.12378692626953, + 6.547216415405273, + 22.621679306030273, + 23.759859085083008, + 29.58074378967285, + -42.78729248046875, + 1.2752625942230225, + -39.78318786621094, + 25.0133056640625, + -41.898468017578125, + 11.324217796325684, + -15.153000831604004, + 7.873316287994385, + -41.14445495605469, + -14.100486755371094, + -10.717774391174316, + -40.18273162841797, + 2.179619550704956, + -41.41764450073242, + 8.313145637512207, + -12.422985076904297, + 31.39737319946289, + 35.13945770263672, + 27.244247436523438, + -16.10032844543457, + -41.0919189453125, + -34.001670837402344, + 13.603058815002441, + -14.241552352905273, + 5.653632164001465, + 24.565093994140625, + 4.273399353027344, + 31.67224884033203, + 21.763639450073242, + -38.871856689453125, + 2.980417490005493, + -20.853708267211914, + -41.95659637451172, + 22.868316650390625, + -4.132803440093994, + -21.067893981933594, + 32.128273010253906, + -15.465106010437012, + 13.129064559936523, + -35.14118194580078, + 20.13435935974121, + -27.715595245361328, + 7.454703330993652, + 3.3910107612609863, + -27.71367073059082, + -29.698774337768555, + 17.11701202392578, + 8.75468635559082, + -0.9203447699546814, + 23.345434188842773, + -6.246405124664307, + 34.99287033081055, + 31.242244720458984, + 4.329998016357422, + 17.282798767089844, + 24.16130828857422, + 26.493249893188477, + -29.385696411132812, + -16.481128692626953, + 25.84217071533203, + 18.61680030822754, + -29.51050567626953, + 21.880125045776367, + -15.03094482421875, + 21.632740020751953, + -1.7015608549118042, + -30.23459243774414, + -40.92909622192383, + -22.354049682617188, + -8.117551803588867, + 10.755376815795898, + -27.624746322631836, + -6.488640308380127, + -8.397943496704102, + -28.040761947631836, + 25.8380126953125, + -7.699199199676514, + -7.806941986083984, + 7.553912162780762, + -11.801652908325195, + 23.079330444335938, + 23.38890838623047, + 33.954837799072266, + 30.66902732849121, + -25.68922233581543, + -32.55316162109375, + 4.157405376434326, + 12.024250984191895, + 11.59543514251709, + -8.803746223449707, + -3.379915952682495, + 20.793575286865234, + 8.995561599731445, + -12.20897102355957, + -13.61474609375, + -13.293936729431152, + 20.435190200805664, + 16.13978385925293, + 34.11552429199219, + 14.20251178741455, + 20.931509017944336, + -3.824336528778076, + -6.989230632781982, + 11.353005409240723, + 15.047530174255371, + 3.2912509441375732, + 10.382299423217773, + 23.400211334228516, + 13.245428085327148, + 2.8338522911071777, + -26.0164794921875, + 36.71220779418945, + -1.173091173171997, + 21.273113250732422, + 32.27873992919922, + -0.1564653515815735, + 23.387229919433594, + -0.6504931449890137, + 14.265704154968262, + 13.91089916229248, + 24.5725040435791, + -37.58041763305664, + -39.49471664428711, + -12.738682746887207, + 30.593971252441406, + 35.13435745239258, + -13.966958999633789, + -6.459129810333252, + -15.922602653503418, + -18.352983474731445, + -8.586660385131836, + -7.7278242111206055, + -10.89254379272461, + 35.17725372314453, + 34.673343658447266, + 17.78322982788086, + -38.035945892333984, + 17.197294235229492, + -12.925386428833008, + 10.858497619628906, + -18.673032760620117, + 24.637537002563477, + 29.408321380615234, + 22.402036666870117, + -12.661136627197266, + 20.152666091918945, + 0.23137906193733215, + 10.585941314697266, + 16.273609161376953, + -34.88552474975586, + 26.921598434448242, + 32.194522857666016, + 19.138010025024414, + -7.741628646850586, + 21.827978134155273, + 28.421140670776367, + -36.087677001953125, + -16.27273941040039, + 6.403769016265869, + 7.504460334777832, + -36.256126403808594, + 1.688079595565796, + 36.220245361328125, + 5.072277069091797, + 4.8949055671691895, + 20.780153274536133, + 30.701297760009766, + 18.22875213623047, + 34.244895935058594, + 19.073402404785156, + -0.9242315888404846, + -31.893692016601562, + 32.103546142578125, + -42.24107360839844, + -5.8882880210876465, + 2.194720506668091, + -21.205039978027344, + -41.65480422973633, + 15.978181838989258, + -15.726758003234863, + 6.560624599456787, + -5.230326175689697, + 18.128477096557617, + -28.820234298706055, + 36.15542221069336, + -15.143564224243164, + -35.21653747558594, + 3.5054550170898438, + 24.115066528320312, + -8.794840812683105, + 6.901574611663818, + 0.7343757152557373, + 2.901069402694702, + -39.41712951660156, + 3.559549331665039, + 21.926761627197266, + -31.425626754760742, + -19.906003952026367, + -23.41631507873535, + 34.71387481689453, + -28.170190811157227, + -42.82838439941406, + -9.785712242126465, + -26.428955078125, + -13.200310707092285, + 10.835572242736816, + -14.773995399475098, + 10.982085227966309, + -40.693031311035156, + 21.41518783569336, + -11.849876403808594, + 5.587285041809082, + -6.821585178375244, + 33.39649963378906, + -10.070737838745117, + 18.352752685546875, + -22.923892974853516, + -0.28001901507377625, + 6.441034317016602, + 12.056329727172852, + -17.736223220825195, + 35.192527770996094, + -11.592900276184082, + -42.6396598815918, + 32.2723274230957, + -30.37262535095215, + -5.920992851257324, + 7.431147575378418, + 25.62916374206543, + -15.392983436584473, + -40.719364166259766, + 28.305822372436523, + 6.572179794311523, + -34.217124938964844, + 3.2613115310668945, + -42.39794921875, + -14.895818710327148, + -4.292418479919434, + -13.22745418548584, + -19.017240524291992, + -38.22163391113281, + 31.16456413269043, + 13.611600875854492, + 19.81173324584961, + 23.67908477783203, + 10.574554443359375, + 20.5964412689209, + 2.191901922225952, + 23.487682342529297, + 25.162439346313477, + 3.455176830291748, + -1.2308259010314941, + -25.553564071655273, + 10.537508010864258, + 32.227664947509766, + 6.136610507965088, + 7.323597431182861, + 32.157440185546875, + 1.339239239692688, + 33.365535736083984, + -8.165526390075684, + 31.209888458251953, + -40.93687438964844, + 9.10838508605957, + 28.57964515686035, + 29.97601890563965, + -20.281339645385742, + -10.291215896606445, + -39.20972442626953, + 8.253121376037598, + -1.5140866041183472, + 11.02096176147461, + 34.34604263305664, + 12.560676574707031, + 23.433242797851562, + -14.398913383483887, + -8.61042594909668, + 24.700693130493164, + 22.857393264770508, + -42.89187240600586, + 13.342815399169922, + -36.353973388671875, + -23.217243194580078, + 36.81663131713867, + 22.787668228149414, + 37.74707794189453, + 28.659833908081055, + -19.61472511291504, + -14.083924293518066, + -22.223833084106445, + 4.215460300445557, + -5.439958095550537, + 24.199003219604492, + -28.54169273376465, + -35.28537368774414, + 23.212377548217773, + -14.69186019897461, + -12.56456470489502, + 26.23053550720215, + 11.543251037597656, + -32.7660026550293, + -28.2899227142334, + 14.408480644226074, + -10.45701789855957, + 23.810102462768555, + -13.35201644897461, + -2.5502490997314453, + 8.998308181762695, + 20.295703887939453, + 10.212111473083496, + -17.144298553466797, + -29.04439926147461, + 26.969982147216797, + 5.076303005218506, + 5.67524528503418, + 2.0579748153686523, + -9.75886344909668, + 24.06614875793457, + 30.154558181762695, + 32.11421203613281, + -9.077534675598145, + 18.527454376220703, + -0.3790321946144104, + 28.15855598449707, + 21.92653465270996, + 7.553927898406982, + -38.31031036376953, + 24.979053497314453, + 1.5914021730422974, + -21.330007553100586, + 32.57120895385742, + -40.12417221069336, + -12.902202606201172, + 30.120967864990234, + 4.776141166687012, + -40.74917221069336, + -18.806638717651367, + 11.329346656799316, + 22.87773323059082, + 33.77981185913086, + -18.958810806274414, + 1.369333267211914, + -31.4913330078125, + -38.869163513183594, + -41.1978759765625, + 35.769718170166016, + -29.00092124938965, + 18.80598258972168, + -26.40456771850586, + 27.409761428833008, + -17.410778045654297, + 19.362276077270508, + 28.079153060913086, + -21.416444778442383, + 15.678470611572266, + -38.370540618896484, + -6.59579610824585, + 6.481317520141602, + -4.476906776428223, + 3.002472162246704, + -11.683700561523438, + -10.388267517089844, + 4.837961673736572, + -10.040055274963379, + 35.549896240234375, + 15.277955055236816, + 8.057889938354492, + 15.482254981994629, + -30.062902450561523, + -27.64145278930664, + 28.949743270874023, + -19.660499572753906, + 12.331584930419922, + 26.454416275024414, + 35.28300094604492, + 23.299888610839844, + 35.23591995239258, + -0.23602376878261566, + 17.894622802734375, + -4.40733528137207, + 6.758347034454346, + 10.945722579956055, + -10.347949028015137, + 28.595012664794922, + -35.45340347290039, + 11.895983695983887, + 14.952543258666992, + 6.550088882446289, + 28.933435440063477, + -27.456893920898438, + 23.80829620361328, + 8.672101974487305, + -39.07120895385742, + -7.886715888977051, + -1.434611439704895, + 7.338818073272705, + -5.219017505645752, + -26.293882369995117, + 7.869836807250977, + 17.645565032958984, + 17.548377990722656, + 26.384714126586914, + -1.2438222169876099, + -2.877965211868286, + 16.167722702026367, + -5.670554161071777, + -33.63566207885742, + -12.359522819519043, + -43.009098052978516, + -3.9784493446350098, + 33.67066955566406, + 13.564026832580566, + 19.091859817504883, + 22.006513595581055, + -33.492557525634766, + 8.253482818603516, + -16.3770694732666, + 24.29869842529297, + 12.092488288879395, + -4.571499824523926, + 19.95214080810547, + 22.438861846923828, + 20.32243537902832, + -21.600391387939453, + 0.7602234482765198, + -34.50156021118164, + 19.018390655517578, + 31.849674224853516, + -28.506826400756836, + 17.1005916595459, + 13.731721878051758, + 21.647268295288086, + -28.555959701538086, + -20.428403854370117, + 13.58320426940918, + 5.740431308746338, + -5.006318092346191, + -33.13893508911133, + 31.551671981811523, + -3.230564832687378, + 30.404739379882812, + -41.968265533447266, + 27.779766082763672, + 5.4957709312438965, + -40.20009231567383, + 6.239660263061523, + 21.513233184814453, + 22.40679931640625, + 25.77332878112793, + 4.547318935394287, + -40.98807907104492, + 37.57950210571289, + -34.57196807861328, + -36.590450286865234, + -15.052699089050293, + -34.83523941040039, + 7.766080856323242, + 33.805877685546875, + -13.077191352844238, + -41.66187286376953, + -26.092670440673828, + 33.213050842285156, + -7.213265419006348, + 28.652881622314453, + 22.470062255859375, + 18.374094009399414, + -13.398845672607422, + 17.492063522338867, + -14.885294914245605, + 4.4451003074646, + -33.48265075683594, + 35.956058502197266, + 13.403523445129395, + 25.214557647705078, + -20.604093551635742, + 23.95758056640625, + -13.264147758483887, + 16.161287307739258, + -15.65074634552002, + 27.19449806213379, + 3.7627997398376465, + -20.431821823120117, + -3.3399465084075928, + 35.33587646484375, + 8.538660049438477, + 9.362167358398438, + -4.00653076171875, + -21.966800689697266, + 34.82295227050781, + -33.66490173339844, + 35.9077033996582, + 18.136234283447266, + 13.574141502380371, + -1.1701887845993042, + 12.631327629089355, + 4.119241714477539, + -41.777496337890625, + -31.69370460510254, + 16.720666885375977, + 33.41749954223633, + -37.63968276977539, + -15.151747703552246, + -25.448440551757812, + -41.16664123535156, + 36.31774139404297, + 34.76136779785156, + -13.761948585510254, + -14.089491844177246, + -11.160415649414062, + 8.69224739074707, + -20.85268783569336, + 23.986263275146484, + 13.383834838867188, + 20.716121673583984, + -42.709739685058594, + 20.656997680664062, + 22.086042404174805, + 19.120283126831055, + -40.3531379699707, + -28.597700119018555, + 35.86021423339844, + 19.399120330810547, + -2.6791136264801025, + -21.39299201965332, + 31.128406524658203, + -2.240569829940796, + -41.1016845703125, + -7.711807727813721, + 33.76472854614258, + -5.501819610595703, + -15.549766540527344, + 13.940384864807129, + 12.994425773620605, + -37.73945236206055, + 22.3478946685791, + -18.93701934814453, + -22.701091766357422, + -9.821317672729492, + 5.370711326599121, + 25.4454402923584, + -2.6243703365325928, + 17.148693084716797, + -21.80069923400879, + -37.155696868896484, + 10.187382698059082, + 26.57404899597168, + 22.611055374145508, + 35.57776641845703, + 27.864791870117188, + 19.894235610961914, + -41.870849609375, + -18.444490432739258, + 20.959800720214844, + -14.246930122375488, + -34.75833511352539, + -42.14898681640625, + 29.79160499572754, + -36.32900619506836, + 34.09635543823242, + -17.868791580200195, + 32.691341400146484, + 5.747817039489746, + -33.619041442871094, + -25.48594093322754, + -9.610151290893555, + 10.63562297821045, + 13.1804780960083, + 1.7847059965133667, + 32.87369918823242, + 29.161144256591797, + -10.713772773742676, + 34.788856506347656, + 0.8377949595451355, + -20.192899703979492, + -20.407840728759766, + -6.3150835037231445, + -41.17596435546875, + 23.490447998046875, + 9.535750389099121, + 13.308808326721191, + -2.6385340690612793, + 20.183616638183594, + 5.323507308959961, + -34.80276107788086, + 3.403327226638794, + 27.087568283081055, + -4.821794509887695, + -20.3345947265625, + -35.65996170043945, + -36.77903366088867, + 30.37443733215332, + -41.96854782104492, + 15.418079376220703, + 3.9583637714385986, + -13.732425689697266, + -3.4484634399414062, + 1.1774235963821411, + 29.262998580932617, + 20.02873992919922, + 36.70588684082031, + -13.255624771118164, + -34.62184524536133, + -8.83012866973877, + -38.841793060302734, + 21.526975631713867, + -14.362652778625488, + 0.005943025462329388, + 21.0327205657959, + 2.1897993087768555, + -10.313132286071777, + 0.7487372756004333, + 21.926326751708984, + -11.515154838562012, + -41.115474700927734, + -7.619329929351807, + -33.97452163696289, + -37.41495895385742, + 13.497930526733398, + 31.96378517150879, + -23.424238204956055, + -33.73350143432617, + 10.296224594116211, + 0.7267763018608093, + 23.519290924072266, + 14.714529037475586, + -7.300425052642822, + -9.441391944885254, + -40.77896499633789, + 35.96951675415039, + 34.4238166809082, + -19.991382598876953, + 34.058895111083984, + -41.35506057739258, + -7.657968521118164, + 29.655696868896484, + -1.5376529693603516, + -13.152314186096191, + -5.549350738525391, + -6.019003391265869, + 2.1406121253967285, + -12.075727462768555, + -36.46196746826172, + 11.643309593200684, + 10.22955322265625, + 0.5215966701507568, + -16.6376895904541, + 34.274105072021484, + 27.38661766052246, + -15.15928840637207, + 20.778568267822266, + 28.542150497436523, + -6.344390869140625, + 3.4559524059295654, + 22.20368003845215, + -42.69802474975586, + -37.95822525024414, + 16.873437881469727, + -27.331575393676758, + -42.75210952758789, + -35.64015579223633, + 33.90262985229492, + 25.51144790649414, + -34.06315994262695, + 9.589845657348633, + 22.230876922607422, + -18.73003578186035, + 23.126161575317383, + -20.3041934967041, + 16.18963623046875, + -0.9436594843864441, + -41.56926345825195, + -11.563255310058594, + 6.799639701843262, + -3.2740113735198975, + 1.5690891742706299, + 30.994997024536133, + -41.233245849609375, + 9.663934707641602, + -8.365379333496094, + -28.14630889892578, + 20.144319534301758, + -16.392990112304688, + -6.2551116943359375, + 30.079866409301758, + 29.457735061645508, + -28.378313064575195, + -9.869866371154785, + -40.114383697509766, + 4.520865440368652, + -7.269228458404541, + -41.04510498046875, + -17.03011131286621, + -19.227848052978516, + 33.13481521606445, + -43.034393310546875, + 33.26664352416992, + 21.31254768371582, + 34.29552459716797, + 26.420019149780273, + 20.51741600036621, + 1.01149320602417, + 17.235612869262695, + -34.92913818359375, + -16.952640533447266, + -13.171865463256836, + 28.682170867919922, + -38.04417419433594, + 19.008094787597656, + -34.389156341552734, + -23.163007736206055, + 16.92605972290039, + -16.315576553344727, + -18.141942977905273, + 35.20695114135742, + 31.569194793701172, + 0.24186326563358307, + -41.20363998413086, + 32.433494567871094, + -21.939149856567383, + 11.66385269165039, + 13.59213924407959, + 34.696144104003906, + 33.247344970703125, + 11.532203674316406, + 35.60234832763672, + 2.757457733154297, + -16.10559844970703, + 24.27556610107422, + -8.683338165283203, + -41.84921646118164, + 31.352210998535156, + 5.068970680236816, + -22.744619369506836, + 3.2241179943084717, + -32.65812301635742, + -41.107730865478516, + 32.775028228759766, + -37.729923248291016, + -30.881086349487305, + 26.905073165893555, + -42.82952880859375, + 3.8383712768554688, + 33.19145965576172, + -1.675382375717163, + 18.89812469482422, + 29.827232360839844, + 22.093767166137695, + 1.0752538442611694, + 23.65761375427246, + -2.0960943698883057, + 22.985876083374023, + 35.7919921875, + 7.574285507202148, + 17.629859924316406, + -10.856526374816895, + 16.095609664916992, + 23.930994033813477, + -5.556952476501465, + -25.575586318969727, + -10.449138641357422, + 12.214472770690918, + -1.062213659286499, + 2.672656536102295, + -31.903085708618164, + 5.067280292510986, + 36.73414611816406, + -9.446503639221191, + 26.300241470336914, + -19.206851959228516, + 16.54561996459961, + 10.920074462890625, + -25.37654685974121, + -8.42446231842041, + -7.912299633026123, + -12.915019989013672, + -2.6219606399536133, + -1.083502173423767, + -0.22428539395332336, + 23.45298957824707, + -32.81148147583008, + -0.738736093044281, + 19.781702041625977, + -8.609883308410645, + 28.071887969970703, + 23.724653244018555, + 4.273060321807861, + 32.412384033203125, + -38.07188415527344, + -41.94694900512695, + 26.495248794555664, + -5.943386077880859, + -17.61503791809082, + 34.332340240478516, + 13.435355186462402, + -32.90852737426758, + 3.800069570541382, + 6.338272571563721, + -42.62565612792969, + 8.037069320678711, + 18.510791778564453, + 9.774521827697754, + -37.14213943481445, + -11.084701538085938, + 9.450480461120605, + 8.284170150756836, + -41.113014221191406, + -39.253414154052734, + -23.71526527404785, + 3.614091157913208, + -22.555051803588867, + -31.487998962402344, + 27.732284545898438, + 0.6760968565940857, + -14.780158042907715, + -14.094841003417969, + -34.191097259521484, + -26.887020111083984, + 13.928889274597168, + 31.381141662597656, + 21.476598739624023, + 16.884822845458984, + -40.8863525390625, + 23.168611526489258, + 23.207332611083984, + 5.4488325119018555, + -33.95857238769531, + -41.6834831237793, + -14.10073184967041, + -16.646617889404297, + 8.948871612548828, + -40.21477508544922, + -9.403465270996094, + 13.80239486694336, + -9.123040199279785, + 32.75171661376953, + -27.276023864746094, + -38.90724563598633, + 23.851409912109375, + 23.550886154174805, + -40.14568328857422, + -36.64610290527344, + 6.3558502197265625, + 7.738945960998535, + -20.75424575805664, + -1.4652290344238281, + 17.008895874023438, + 6.371554851531982, + -13.453227043151855, + 19.678369522094727, + 5.8979339599609375, + 16.22273063659668, + -41.22439193725586, + -19.77043342590332, + 34.49575424194336, + 23.767610549926758, + 20.475915908813477, + 12.37694263458252, + 0.31962117552757263, + -21.033435821533203, + -33.49580764770508, + 28.995756149291992, + -34.324703216552734, + 13.106755256652832, + -40.4100456237793, + -2.561028242111206, + -28.99853515625, + 11.752958297729492, + 4.560832977294922, + 5.626742362976074, + 24.883588790893555, + 6.713851451873779, + 18.503555297851562, + -3.390573024749756, + -22.11180877685547, + 8.215935707092285, + -21.703704833984375, + 34.175926208496094, + 26.925867080688477, + 16.86043357849121, + 23.475040435791016, + 15.050912857055664, + 23.445491790771484, + -31.020008087158203, + -1.432361364364624, + 16.97001838684082, + 9.454224586486816, + 32.08891677856445, + -27.89272689819336, + 19.776962280273438, + 30.292240142822266, + 35.74813461303711, + -2.5942978858947754, + 6.159162521362305, + -20.095149993896484, + -40.31454849243164, + -5.240176200866699, + -16.699443817138672, + 35.5908088684082, + 14.317322731018066, + 8.298852920532227, + -0.9840238094329834, + 32.52766418457031, + 14.150247573852539, + 26.131044387817383, + 9.182361602783203, + -12.937155723571777, + 1.2721984386444092, + 21.034896850585938, + 1.5887941122055054, + -9.887898445129395, + 13.217021942138672, + 34.791603088378906, + -15.410173416137695, + 6.252806663513184, + 21.90877342224121, + 20.726093292236328, + -15.388117790222168, + -40.70173645019531, + -7.1225762367248535, + 31.131221771240234, + 30.4782772064209, + -1.2909224033355713, + 15.733417510986328, + 2.9259283542633057, + 14.515764236450195, + 36.303985595703125, + -12.960878372192383, + 18.145919799804688, + -28.277956008911133, + -22.8345947265625, + 27.732770919799805, + 19.53671646118164, + -9.256217002868652, + 30.115079879760742, + -18.75785255432129, + 21.154176712036133, + -40.92526626586914, + -15.525068283081055, + -41.78668975830078, + -35.724220275878906, + 19.680580139160156, + -30.441509246826172, + -20.709970474243164, + -34.875762939453125, + 32.159942626953125, + -12.211539268493652, + 18.752771377563477, + 6.607948303222656, + -42.34769821166992, + -20.2247257232666, + 35.275047302246094, + -37.881370544433594, + 10.1520357131958, + 21.42133903503418, + -39.03042984008789, + -22.586530685424805, + 14.524286270141602, + 32.39199447631836, + 23.148860931396484, + -1.533204436302185, + 33.57130813598633, + 3.6240265369415283, + 23.57706069946289, + 9.1644926071167, + -20.155040740966797, + -22.03279685974121, + 2.883829355239868, + -33.751922607421875, + -16.542156219482422, + -28.175554275512695, + 23.029752731323242, + -40.940391540527344, + 23.55242156982422, + 23.629554748535156, + 27.420682907104492, + 26.552780151367188, + -40.00288009643555, + -26.197431564331055, + 33.136959075927734, + -6.221242904663086, + 4.368266582489014, + 0.739434540271759, + 20.925811767578125, + -14.4081392288208, + 11.168207168579102, + -36.53255844116211, + 9.173493385314941, + 35.19451904296875, + -16.118770599365234, + -7.830896377563477, + 13.23817253112793, + -40.89425277709961, + 30.95062828063965, + 16.43170738220215, + 21.072927474975586, + 17.506671905517578, + -7.194361209869385, + 10.52149772644043, + -40.667869567871094, + -36.03284454345703, + 1.030883550643921, + -1.9632076025009155, + -1.2190378904342651, + 22.587093353271484, + 29.216508865356445, + 14.122586250305176, + -12.440491676330566, + -41.30535888671875, + 17.764286041259766, + 30.799074172973633, + 0.32221564650535583, + -0.8745545148849487, + 32.843963623046875, + 10.044925689697266, + -40.335750579833984, + -3.1932454109191895, + -37.14716339111328, + 29.58164405822754, + 3.1914682388305664, + -28.9583740234375, + -20.285749435424805, + 26.2498779296875, + 19.505950927734375, + 4.974336624145508, + -22.03314781188965, + 35.51939010620117, + 3.889078378677368, + 23.405025482177734, + 33.7302360534668, + 27.598190307617188, + 23.973447799682617, + 11.571702003479004, + -1.5015196800231934, + -0.47105085849761963, + 11.227555274963379, + 29.67080307006836, + 20.59065818786621, + 7.866603851318359, + -0.2905783951282501, + -40.9521484375, + 21.66354751586914, + 34.702735900878906, + -5.604195594787598, + -30.19735336303711, + 2.5795814990997314, + -24.03499412536621, + 35.160743713378906, + -11.165702819824219, + 13.176756858825684, + 21.959291458129883, + -27.269222259521484, + 27.409643173217773, + -4.374024391174316, + -22.715694427490234, + 5.3080620765686035, + 10.275603294372559, + 1.2578907012939453, + 33.49661636352539, + 14.510002136230469, + 36.59795379638672, + 8.906756401062012, + 31.940153121948242, + -5.198551654815674, + -9.14240550994873, + 8.940909385681152, + -1.1971280574798584, + -34.946144104003906, + 12.70836067199707, + -32.10350036621094, + 2.6618075370788574, + -2.058574914932251, + -8.590977668762207, + 5.797741889953613, + 2.485365629196167, + 1.8723502159118652, + 6.945380687713623, + 12.864154815673828, + -40.005733489990234, + -19.3056697845459, + -19.456125259399414, + 33.3516960144043, + -2.993602752685547, + 23.82805633544922, + 19.571287155151367, + -18.42544937133789, + 19.86695671081543, + -0.6397964954376221, + 16.317148208618164, + 33.79291534423828, + -29.950841903686523, + -0.2245328724384308, + 33.19890213012695, + -9.150367736816406, + -29.70229721069336, + -18.743492126464844, + 10.694613456726074, + 29.592222213745117, + 32.16978454589844, + -5.642026424407959, + -16.51129913330078, + 2.300837993621826, + -32.54656982421875, + 22.14823341369629, + 17.865158081054688, + -42.25654602050781, + 21.908632278442383, + 34.314022064208984, + -10.190545082092285, + -18.046695709228516, + 15.961782455444336, + 1.1493905782699585, + 25.578798294067383, + -6.949272632598877, + -2.1920926570892334, + -1.722141981124878, + -5.359021186828613, + -6.463685512542725, + 17.75419807434082, + 6.0773491859436035, + -36.083675384521484, + 17.945051193237305, + -40.965877532958984, + -7.907982349395752, + -40.265655517578125, + -38.30506134033203, + 21.72896385192871, + -22.72304344177246, + -19.7296085357666, + -7.378566265106201, + -11.928963661193848, + 14.229740142822266, + -11.328550338745117, + -8.257034301757812, + -37.15234375, + 17.38343048095703, + 9.472164154052734, + 21.3681697845459, + -7.357054233551025, + 3.9846205711364746, + 35.65682601928711, + -13.705218315124512, + 3.156575918197632, + -18.30979347229004, + 22.052921295166016, + -15.665862083435059, + 26.37824249267578, + 20.41219711303711, + -27.25690269470215, + 15.945565223693848, + 24.306480407714844, + -8.353825569152832, + 27.811758041381836, + -7.930908679962158, + -7.896631717681885, + 7.452703952789307, + 22.057231903076172, + -41.4764289855957, + -38.29524612426758, + -42.335899353027344, + -4.242672920227051, + 33.22549819946289, + -23.42986488342285, + -32.7601432800293, + 22.63214111328125, + -32.0562744140625, + -14.771409034729004, + -36.4437141418457, + -41.68143081665039, + -41.13272476196289, + 23.65250015258789, + 33.30725860595703, + -26.598312377929688, + 32.820247650146484, + -40.13612365722656, + 33.42859649658203, + -33.064186096191406, + 35.15824508666992, + 31.135108947753906, + 35.25199508666992, + 8.83517074584961, + 3.4903724193573, + -12.531219482421875, + 35.553314208984375, + 31.436267852783203, + 8.353874206542969, + -42.291893005371094, + -37.11055374145508, + 20.411691665649414, + -21.082670211791992, + -9.225667953491211, + 14.832189559936523, + 22.405719757080078, + -35.428958892822266, + -43.41513442993164, + -39.00556182861328, + -7.611827373504639, + 23.427230834960938, + 36.18344497680664, + 4.545933246612549, + 19.56460189819336, + -0.2342565655708313, + 12.203118324279785, + 21.198867797851562, + -41.99233627319336, + 8.87612247467041, + -7.759870529174805, + 4.832760334014893, + -33.432464599609375, + 0.536600649356842, + -38.246952056884766, + -37.49674987792969, + 29.713600158691406, + -17.79979133605957, + -41.83468246459961, + 7.749581336975098, + -14.143150329589844, + 29.10352897644043, + -13.07437801361084, + -16.42338752746582, + 12.041471481323242, + 3.1221883296966553, + 3.815453052520752, + 9.741093635559082, + 26.253925323486328, + 5.667520523071289, + 34.39023208618164, + 15.848939895629883, + -30.43429946899414, + 27.46099090576172, + 5.473353862762451, + 4.344359874725342, + -35.79289245605469, + -42.538272857666016, + 31.83509635925293, + -14.375887870788574, + 24.117300033569336, + 35.076812744140625, + -14.425128936767578, + -14.133423805236816, + -19.14742660522461, + 5.863757610321045, + -32.75071334838867, + 3.4637153148651123, + -10.95847225189209, + -41.66207504272461, + -0.480092853307724, + -15.161439895629883, + 12.9270601272583, + -5.732761383056641, + -9.612813949584961, + -15.846092224121094, + -42.96913528442383, + 20.70514488220215, + -20.909164428710938, + 1.848104476928711, + -41.80708694458008, + 13.627616882324219, + -3.9661667346954346, + 23.242279052734375, + 24.843175888061523, + -24.877058029174805, + -40.528377532958984, + 13.4859037399292, + 12.088449478149414, + -7.190152645111084, + 3.1484739780426025, + -37.387699127197266, + 1.023643136024475, + 34.17557144165039, + -6.9046735763549805, + -14.83070182800293, + 19.23175811767578, + 33.86227035522461, + -21.879568099975586, + 5.495102882385254, + 6.615853786468506, + -37.47934341430664, + -33.968875885009766, + -36.7241096496582, + -22.772266387939453, + -12.762992858886719, + -14.93494987487793, + -8.788796424865723, + 3.272709369659424, + 28.125947952270508, + 6.018498420715332, + -16.063077926635742, + -2.853231906890869, + -6.535486221313477, + -32.00550842285156, + 28.933439254760742, + 33.62485885620117, + -35.81085968017578, + 26.165321350097656, + 19.277671813964844, + -8.734709739685059, + 35.36589813232422, + -41.85238265991211, + 12.574785232543945, + -1.6294138431549072, + 7.020055294036865, + -1.627120852470398, + -37.00338363647461, + -11.142776489257812, + 24.59052276611328, + 33.717525482177734, + -32.18458938598633, + -40.08710479736328, + 36.612762451171875, + 1.2783867120742798, + -40.73082733154297, + 11.493650436401367, + 11.884822845458984, + 24.37686538696289, + -26.874631881713867, + -9.136053085327148, + 17.196853637695312, + 35.42644500732422, + 0.5330314040184021, + -5.65974760055542, + -14.576261520385742, + -36.21036148071289, + -6.362594127655029, + -41.792240142822266, + -39.324485778808594, + -39.350860595703125, + -28.345518112182617, + -13.672765731811523, + 0.7410794496536255, + -15.97929859161377, + 20.714847564697266, + -7.553438186645508, + 30.073041915893555, + 8.99191951751709, + 19.152435302734375, + 34.27243423461914, + -31.310897827148438, + -20.683889389038086, + -10.809209823608398, + 14.062344551086426, + 18.750089645385742, + 13.959158897399902, + -8.645380973815918, + 23.788658142089844, + 22.035282135009766, + 18.044673919677734, + -41.75737380981445, + -41.31781768798828, + 32.19172286987305, + -12.388429641723633, + 24.06170654296875, + -16.11063003540039, + -16.608327865600586, + 35.45128631591797, + -21.5465145111084, + -41.050270080566406, + -42.05463790893555, + -0.6157612800598145, + 23.858266830444336, + 4.945340633392334, + 23.73905372619629, + -37.99441146850586, + 15.15748405456543, + 9.55198860168457, + 14.732538223266602, + -40.78012466430664, + 16.501951217651367, + 19.81125259399414, + -38.802276611328125, + 3.4446568489074707, + -31.811925888061523, + -11.924962997436523, + -34.01521301269531, + -11.77328109741211, + 29.429662704467773, + 23.282684326171875, + 22.76887321472168, + -13.897069931030273, + 24.63739585876465, + 24.547758102416992, + -6.784965991973877, + 3.5353200435638428, + 29.946332931518555, + 32.52227783203125, + 14.524889945983887, + 31.11566162109375, + 6.500742435455322, + 10.821308135986328, + 24.635740280151367, + 9.537750244140625, + -17.91515350341797, + 19.76047134399414, + -41.76491165161133, + -2.7922191619873047, + -7.154927730560303, + -22.69426918029785, + 32.132354736328125, + -19.798263549804688, + -22.878387451171875, + -1.3629356622695923, + 15.9620943069458, + 4.919292449951172, + -19.76166343688965, + 33.27949142456055, + -37.418617248535156, + -3.033407688140869, + 25.00918197631836, + 36.10431671142578, + -11.827169418334961, + 29.70917320251465, + -30.47922134399414, + -20.954191207885742, + 12.5928316116333, + 16.05235481262207, + 35.00455093383789, + 20.658048629760742, + -13.705899238586426, + -14.050765037536621, + -14.206786155700684, + -12.490314483642578, + -39.77098846435547, + 34.621368408203125, + -1.2785608768463135, + -15.189940452575684, + 1.8724192380905151, + -5.914083480834961, + -15.96410083770752, + -8.066412925720215, + 17.20330810546875, + -1.940897822380066, + -22.14067268371582, + -13.54328441619873, + -6.960697174072266, + -1.442679762840271, + -17.10752296447754, + 21.484874725341797, + 26.125211715698242, + 9.664216995239258, + -42.02814865112305, + 35.31327819824219, + 16.39208984375, + 18.59504508972168, + -34.12205123901367, + -40.42576599121094, + -41.52042007446289, + 34.008644104003906, + 7.176661491394043, + 16.850587844848633, + -29.375213623046875, + -7.718750476837158, + 31.245471954345703, + -3.4010841846466064, + 8.111698150634766, + 32.321468353271484, + -32.772762298583984, + -7.296995639801025, + -17.48038101196289, + -35.90983200073242, + -9.048584938049316, + 31.69009017944336, + 13.938096046447754, + -37.818260192871094, + -11.163557052612305, + 34.60731506347656, + -4.933875560760498, + 17.35405731201172, + -21.62071418762207, + -21.587984085083008, + -2.0981905460357666, + 24.754350662231445, + 13.314946174621582, + -31.041582107543945, + 3.6371617317199707, + -1.0978262424468994, + 36.462642669677734, + 23.4324893951416, + 27.699182510375977, + -13.913179397583008, + -41.21064758300781, + -15.399881362915039, + 16.2537899017334, + 19.833614349365234, + -8.575786590576172, + -19.841386795043945, + 34.48988342285156, + -20.53133773803711, + 19.870676040649414, + 32.118934631347656, + -2.723710536956787, + 22.04938316345215, + -7.72926664352417, + 1.873970627784729, + -40.167564392089844, + 3.8291873931884766, + -32.44989776611328, + 15.004900932312012, + 17.3597412109375, + 14.511397361755371, + -39.21103286743164, + 36.02815628051758, + -9.423357009887695, + -25.085813522338867, + -34.54728317260742, + -6.558016777038574, + -37.112754821777344, + -26.574220657348633, + -36.531761169433594, + 33.27244186401367, + 7.190450191497803, + 22.446924209594727, + 16.5830078125, + 2.8010201454162598, + 33.05457305908203, + 29.691181182861328, + -41.19761657714844, + -6.274199962615967, + -28.96893882751465, + 23.621461868286133, + 12.337835311889648, + -9.87059497833252, + -33.4103889465332, + -13.509648323059082, + 1.9265937805175781, + 34.01472091674805, + 2.942348003387451, + -6.067962169647217, + 12.946046829223633, + -19.032007217407227, + 21.527111053466797, + 16.587913513183594, + -6.044271945953369, + 4.195749282836914, + -4.166802883148193, + -38.27409362792969, + -40.676902770996094, + -30.03792381286621, + 33.24101638793945, + -13.414498329162598, + 34.26243591308594, + 5.034850120544434, + 11.35783863067627, + 19.286258697509766, + -23.48755645751953, + -7.0145158767700195, + 24.38704490661621, + 35.95271301269531, + 33.504432678222656, + 11.488479614257812, + -37.8311767578125, + 0.8079329133033752 + ], + "y": [ + -61.480674743652344, + -12.043272972106934, + -32.592308044433594, + 31.40899085998535, + -20.96391487121582, + 4.989370822906494, + 36.536251068115234, + 17.84284210205078, + -59.7054557800293, + -2.9420740604400635, + 28.417268753051758, + 5.252799034118652, + 34.427120208740234, + 26.723302841186523, + 12.01998233795166, + -26.878860473632812, + -1.1715153455734253, + 4.4166975021362305, + 22.560705184936523, + 39.11564254760742, + 12.541595458984375, + 33.4960823059082, + 2.7638087272644043, + 38.141357421875, + -53.601505279541016, + -30.03963851928711, + -0.1265784651041031, + -57.15496063232422, + 22.387067794799805, + 33.999855041503906, + -38.47835159301758, + 35.29441452026367, + 5.065643787384033, + -63.97444534301758, + 34.297462463378906, + -62.78593826293945, + -15.652792930603027, + 34.028446197509766, + -24.545751571655273, + -2.991508722305298, + 2.8946549892425537, + -0.19948166608810425, + 37.6116828918457, + -0.18985752761363983, + 33.35417938232422, + 7.079122543334961, + -27.298622131347656, + -26.061328887939453, + 6.224752902984619, + 0.6329492926597595, + -59.06143569946289, + -24.603940963745117, + 38.29323196411133, + 0.6298580765724182, + 37.81545639038086, + 2.9122257232666016, + -20.977357864379883, + -58.102169036865234, + -4.3929762840271, + 38.497928619384766, + 3.635345697402954, + 37.940818786621094, + 26.916149139404297, + -63.53215408325195, + -21.434703826904297, + -27.3466854095459, + -21.91029930114746, + -12.542204856872559, + 33.65286636352539, + 17.35704803466797, + 32.4138298034668, + 3.717416763305664, + 13.092041969299316, + 37.02755355834961, + -5.1270670890808105, + -0.5751668810844421, + 11.249330520629883, + -28.09562110900879, + -32.09378433227539, + 5.610830307006836, + -21.681278228759766, + -63.56985855102539, + 4.295847415924072, + 4.6663360595703125, + -26.447593688964844, + -27.749736785888672, + -30.958724975585938, + -1.4097768068313599, + -22.315702438354492, + -4.155525207519531, + -28.62801742553711, + -3.1580920219421387, + 16.24398422241211, + -25.26816177368164, + -25.68657112121582, + 35.67549133300781, + -38.1112060546875, + -0.8647691607475281, + -29.359477996826172, + 6.962841510772705, + -0.22972171008586884, + -64.13935852050781, + 38.8275260925293, + -59.92277145385742, + 34.659461975097656, + -0.6840454339981079, + 30.43796730041504, + -33.774925231933594, + -2.9898998737335205, + 11.9513578414917, + 0.06580480188131332, + 38.79294204711914, + -6.018031120300293, + -3.772249937057495, + 4.737522602081299, + -63.37661361694336, + 34.00006103515625, + 14.978324890136719, + -12.781704902648926, + 0.6900022029876709, + -19.80195426940918, + 23.35162925720215, + 38.4743537902832, + -36.07777786254883, + -7.313512325286865, + -46.12015151977539, + -58.155517578125, + 38.099769592285156, + 4.712123394012451, + 34.57962417602539, + -63.47708511352539, + 4.884887218475342, + -54.287025451660156, + 37.112083435058594, + -28.137651443481445, + 16.674354553222656, + -25.34832000732422, + 39.641414642333984, + 27.788631439208984, + 4.330867767333984, + 9.949804306030273, + -0.7418996095657349, + 37.00556945800781, + 7.265267372131348, + 4.451849937438965, + 38.15793228149414, + 39.815208435058594, + 3.1408278942108154, + -18.437936782836914, + -31.49749183654785, + -0.16939221322536469, + -32.05527877807617, + 4.025228977203369, + -1.6776552200317383, + -2.86260986328125, + -43.414058685302734, + 36.79518127441406, + 16.94497299194336, + 3.9295217990875244, + -58.743343353271484, + 36.237186431884766, + 22.90700912475586, + -53.24271011352539, + 4.162847995758057, + -50.54399490356445, + 35.34428405761719, + -28.347715377807617, + 35.05683135986328, + -30.449325561523438, + -27.772428512573242, + -36.6129264831543, + 31.660144805908203, + 25.916866302490234, + 5.381734371185303, + -27.484569549560547, + 10.842187881469727, + 31.470340728759766, + 5.853597164154053, + 37.90468978881836, + 37.82222366333008, + 0.35587093234062195, + -2.972116470336914, + -25.57817268371582, + 3.753777265548706, + 10.594511032104492, + 1.875398874282837, + 0.1050434559583664, + 40.165138244628906, + 37.91365051269531, + 19.487796783447266, + 3.927654266357422, + 29.071487426757812, + -25.243059158325195, + 1.9291791915893555, + -16.384580612182617, + -56.405948638916016, + 4.8278021812438965, + -60.05055236816406, + -2.4691202640533447, + -60.64045333862305, + 21.199909210205078, + -34.98977279663086, + 15.274322509765625, + 38.3557014465332, + 4.016332149505615, + 10.750792503356934, + 32.462493896484375, + 39.40964889526367, + 32.05412673950195, + 3.0690815448760986, + -24.96396827697754, + -29.151479721069336, + 20.727752685546875, + -49.94529342651367, + 27.349319458007812, + -59.321983337402344, + -26.99539566040039, + 28.213804244995117, + -19.503271102905273, + 33.344120025634766, + -28.38852310180664, + 1.125257134437561, + -39.780128479003906, + -26.87063217163086, + 7.4502410888671875, + 26.98569107055664, + -27.59294891357422, + -53.221065521240234, + -42.18768310546875, + -3.222277879714966, + -19.727157592773438, + 36.89710998535156, + 27.24711799621582, + 32.645931243896484, + 28.123720169067383, + -47.67127227783203, + 4.017451286315918, + 33.71159362792969, + 3.888524055480957, + 26.026023864746094, + 3.511535882949829, + -23.006662368774414, + -63.375205993652344, + 38.27859878540039, + 29.724611282348633, + -26.799402236938477, + 4.982662677764893, + 28.835433959960938, + -1.7858989238739014, + -63.414031982421875, + 39.04183578491211, + 37.96654510498047, + 4.793552398681641, + -45.52837371826172, + -3.5055088996887207, + 21.57052993774414, + 1.0034664869308472, + -22.00567054748535, + 24.459545135498047, + 37.265525817871094, + 34.95800018310547, + 1.018982172012329, + -62.96417999267578, + 37.99553298950195, + -33.64772033691406, + 39.18976593017578, + 37.56856155395508, + -63.690555572509766, + 38.052852630615234, + -50.047279357910156, + -2.582291841506958, + 13.910746574401855, + 37.20184326171875, + -49.511573791503906, + -62.598087310791016, + -63.15800476074219, + 36.69036102294922, + -55.019020080566406, + -28.18705940246582, + -28.675968170166016, + -42.81169509887695, + 36.70280838012695, + -1.2047396898269653, + -21.627946853637695, + 9.881550788879395, + -27.05532455444336, + -34.28832244873047, + 22.395450592041016, + 0.917619526386261, + -44.20471954345703, + 3.2996346950531006, + -55.55419158935547, + -55.74802780151367, + 29.57701301574707, + -13.465386390686035, + -7.428638935089111, + -25.82907485961914, + 24.80486488342285, + 6.747568130493164, + -63.475242614746094, + -63.05765914916992, + -64.33155822753906, + -24.329357147216797, + -63.633052825927734, + -63.01185989379883, + -25.937339782714844, + 20.136545181274414, + 3.101802349090576, + -52.6250114440918, + 17.380388259887695, + -52.89921188354492, + -26.17481231689453, + 39.25913619995117, + -24.138647079467773, + 29.777095794677734, + 23.366090774536133, + -47.13315200805664, + -63.84328079223633, + -50.542518615722656, + -61.88264083862305, + 39.723575592041016, + -29.833965301513672, + -15.97392463684082, + 29.420543670654297, + 2.5693418979644775, + -2.3625645637512207, + 3.282620429992676, + -47.77857971191406, + -1.2275155782699585, + -14.229364395141602, + -64.37805938720703, + 40.53861999511719, + 39.1164436340332, + -13.448114395141602, + -27.309993743896484, + 18.525068283081055, + -28.004867553710938, + -1.3116968870162964, + 34.144718170166016, + 20.434810638427734, + -52.216453552246094, + 18.77467918395996, + -32.309906005859375, + -62.164493560791016, + -17.77534294128418, + 8.553162574768066, + 7.040752410888672, + -62.88189697265625, + 37.47264862060547, + -23.361698150634766, + 0.8775835633277893, + -54.35594177246094, + -64.23775482177734, + 37.04502868652344, + 38.23442840576172, + -2.9214038848876953, + 27.919095993041992, + 5.48887825012207, + 5.050047397613525, + 22.307523727416992, + -27.266193389892578, + 29.39238739013672, + 5.455445766448975, + 39.71530532836914, + 3.0306360721588135, + -60.87746810913086, + -6.682908058166504, + 39.347347259521484, + -35.23627853393555, + 25.49798011779785, + 33.73427200317383, + 32.013668060302734, + 20.72621726989746, + -20.667129516601562, + 3.11320424079895, + 3.6428818702697754, + 28.465930938720703, + -64.03304290771484, + -57.60094451904297, + 36.852684020996094, + -28.6494140625, + -7.015733242034912, + 31.402727127075195, + 35.838863372802734, + -27.611543655395508, + 5.013535976409912, + 18.463258743286133, + -63.45197677612305, + -31.239688873291016, + 3.591519832611084, + -26.961605072021484, + -1.66299569606781, + -28.897733688354492, + 4.910057544708252, + 19.57660484313965, + 4.5836181640625, + 4.193397045135498, + 4.437515735626221, + 28.04106330871582, + 4.20413875579834, + -28.006959915161133, + 29.13387680053711, + 4.232264995574951, + 10.55494499206543, + -1.425222635269165, + 38.83818817138672, + 22.651548385620117, + 40.215110778808594, + 6.44537878036499, + -64.05548095703125, + -62.68120574951172, + -63.4276123046875, + 4.544284820556641, + -10.718592643737793, + 4.695982933044434, + -55.729881286621094, + 31.02854347229004, + 32.121910095214844, + -0.9634580016136169, + -33.80723190307617, + 40.65547561645508, + -38.86298370361328, + 33.000003814697266, + -27.629268646240234, + 39.44746780395508, + 30.237226486206055, + -57.7022819519043, + 20.895063400268555, + -1.1455742120742798, + -1.4443011283874512, + 3.9629061222076416, + 37.479393005371094, + 15.69947624206543, + 37.18579864501953, + 22.4757137298584, + 8.977503776550293, + -0.7441676259040833, + 27.086698532104492, + 24.0317325592041, + 32.6879997253418, + 4.130821228027344, + 14.372479438781738, + -58.80418395996094, + 1.2958229780197144, + 37.096412658691406, + 9.108587265014648, + -1.8399581909179688, + -0.7300185561180115, + 35.31788635253906, + 39.68400573730469, + -1.8879802227020264, + -2.837442398071289, + 1.5225698947906494, + -29.197080612182617, + 20.65998077392578, + 3.422218084335327, + 14.471817970275879, + -45.630558013916016, + 17.220706939697266, + 0.6541041731834412, + 32.932891845703125, + -63.390892028808594, + 3.8643622398376465, + 37.65583801269531, + 2.9329545497894287, + -0.6905434727668762, + 28.580150604248047, + -13.912064552307129, + -44.59450149536133, + 4.458897113800049, + 36.63665008544922, + 29.483503341674805, + -57.25037384033203, + 25.16649627685547, + 27.062782287597656, + 0.17897994816303253, + -26.565187454223633, + -40.81708908081055, + 37.446170806884766, + 2.950362205505371, + -28.1679744720459, + 34.6766242980957, + -28.476757049560547, + 4.641027450561523, + 28.394514083862305, + 29.13966941833496, + 40.169857025146484, + -0.22232122719287872, + -27.215269088745117, + 35.91492462158203, + -3.28307843208313, + 23.5399112701416, + 24.75715446472168, + 3.383347511291504, + -0.7112878561019897, + 1.7551109790802002, + 29.94927978515625, + -47.76029586791992, + -28.049259185791016, + -11.975086212158203, + 29.402305603027344, + 0.7294430136680603, + 4.388776779174805, + 7.0768632888793945, + 11.057950019836426, + -63.550533294677734, + -0.6732178926467896, + -60.5140495300293, + -6.499748229980469, + 4.636255264282227, + 36.01210403442383, + -44.96311569213867, + 11.708202362060547, + 34.649696350097656, + -61.36470031738281, + -18.296627044677734, + 15.3972806930542, + 6.282619953155518, + 15.865091323852539, + -20.20248031616211, + 33.60688018798828, + -22.185991287231445, + 27.50990104675293, + -24.570768356323242, + -1.4608176946640015, + 0.7444074749946594, + 33.16304016113281, + 36.41374588012695, + -10.296102523803711, + 3.5354506969451904, + -27.7725830078125, + -27.10236358642578, + -27.39808464050293, + 5.702514171600342, + 36.60171127319336, + -1.6929082870483398, + -26.73485565185547, + 11.60741138458252, + -54.84814453125, + 36.66768264770508, + -3.7641286849975586, + 26.46001625061035, + -21.4643611907959, + -2.7438156604766846, + -23.237518310546875, + 39.051082611083984, + 0.04965012148022652, + 18.686250686645508, + -45.172176361083984, + 16.605697631835938, + -61.633697509765625, + -52.63259506225586, + 38.073219299316406, + 37.8465461730957, + -0.1381797045469284, + 5.004022598266602, + 29.26926040649414, + -14.065816879272461, + 36.260498046875, + -1.399993658065796, + -2.799293279647827, + -0.25038692355155945, + 27.137758255004883, + -40.019371032714844, + -58.58118438720703, + -8.498489379882812, + -63.447731018066406, + -61.97050094604492, + -59.14287185668945, + 2.1864354610443115, + -22.015087127685547, + 39.460330963134766, + -1.6611998081207275, + 32.1303596496582, + 28.35546112060547, + -27.486278533935547, + 3.2647342681884766, + -29.925336837768555, + 5.441708564758301, + 23.021812438964844, + 4.404475212097168, + 6.67734432220459, + -27.15538787841797, + 7.5084004402160645, + -1.4707857370376587, + -51.35947036743164, + -2.981966495513916, + 24.41407585144043, + -2.2152678966522217, + 35.65385055541992, + -1.1496080160140991, + 37.96308517456055, + 3.377830982208252, + 30.721410751342773, + -46.674400329589844, + 31.881120681762695, + -24.260234832763672, + 0.29261675477027893, + -15.189901351928711, + 34.99309158325195, + 25.527326583862305, + -20.28346061706543, + 34.28883361816406, + -29.424861907958984, + -1.43039870262146, + 27.847869873046875, + 4.718268394470215, + -0.8817710280418396, + -60.10219192504883, + -62.80086898803711, + 22.230100631713867, + 6.762414932250977, + -62.48054122924805, + 3.6052544116973877, + -1.534804105758667, + 27.729394912719727, + 38.83906555175781, + -5.125649929046631, + 37.67529296875, + -34.54294204711914, + 33.39748001098633, + 28.32366943359375, + 0.7696217894554138, + 4.915186405181885, + 15.513355255126953, + 22.71554183959961, + -13.380609512329102, + 36.80825424194336, + 23.8537540435791, + -2.17038893699646, + 7.631438255310059, + -63.39493179321289, + 3.417362689971924, + -21.335172653198242, + 10.940052032470703, + -62.84935760498047, + 23.11026382446289, + -36.677978515625, + -31.79317855834961, + 34.968170166015625, + -30.966861724853516, + -25.65357780456543, + -27.756553649902344, + -17.709331512451172, + 7.697620391845703, + 36.23600769042969, + -0.6898511052131653, + 33.21560287475586, + 30.669408798217773, + -64.0248794555664, + -1.9956063032150269, + -64.07804870605469, + -0.7674408555030823, + -60.669342041015625, + 4.0422773361206055, + -62.50288009643555, + 12.767143249511719, + 37.19669723510742, + -58.08538055419922, + 4.963796138763428, + 32.44614028930664, + 16.047285079956055, + 22.17544174194336, + 9.31136417388916, + 32.93110656738281, + 34.82060623168945, + 38.311553955078125, + 35.60554122924805, + 1.62831449508667, + 11.968926429748535, + -18.31017303466797, + -30.263683319091797, + 15.217058181762695, + 18.01797103881836, + -25.505544662475586, + -22.4351806640625, + -5.9645256996154785, + 11.484642028808594, + 11.127676963806152, + 36.83308029174805, + 38.48106002807617, + 36.11284255981445, + -28.15666961669922, + 3.9227585792541504, + -43.14402770996094, + -56.13011169433594, + -49.28879165649414, + 2.202096939086914, + -49.13059997558594, + -47.626670837402344, + -2.1677112579345703, + 11.508316040039062, + 29.322481155395508, + 13.928443908691406, + -51.05385971069336, + 38.75053024291992, + -23.812549591064453, + 2.2937073707580566, + -62.27455139160156, + 10.9794921875, + 5.579909801483154, + 22.37540626525879, + -62.869049072265625, + 5.105968952178955, + -55.50702667236328, + -0.05386164039373398, + -12.500872611999512, + -2.4063663482666016, + 4.118222236633301, + 32.77030563354492, + -26.656665802001953, + -59.79287338256836, + 31.35134506225586, + -62.36713409423828, + -30.76654815673828, + -23.320842742919922, + -12.369174003601074, + -57.93106460571289, + -0.5931814908981323, + -36.467098236083984, + 22.126117706298828, + -0.24769264459609985, + -50.73255920410156, + 2.0914785861968994, + -25.082181930541992, + -49.34811782836914, + 35.7319221496582, + -14.980013847351074, + 7.247718334197998, + 26.92633819580078, + -13.39889907836914, + 5.258970260620117, + -24.959457397460938, + 15.44324016571045, + -0.37913069128990173, + 24.04711151123047, + -21.6185359954834, + 39.14898681640625, + -57.87785720825195, + 37.881378173828125, + -27.27126693725586, + 25.001018524169922, + 26.45905113220215, + -26.20281982421875, + 8.643841743469238, + -0.6031095385551453, + 3.8727056980133057, + 33.357879638671875, + -62.94544982910156, + -4.666679382324219, + -40.60042953491211, + -58.12790298461914, + -2.8687286376953125, + 1.854156732559204, + -49.90854263305664, + 40.197914123535156, + 23.09784698486328, + 38.6463623046875, + -2.046619176864624, + 3.788607358932495, + 4.9086761474609375, + 21.19991683959961, + -12.73623275756836, + 21.94483184814453, + 0.3259892463684082, + -29.93279457092285, + -28.037717819213867, + 36.836204528808594, + 39.41072082519531, + -61.40550994873047, + 1.677136778831482, + -32.77293395996094, + 15.609216690063477, + -26.300546646118164, + 22.08193016052246, + 3.4255714416503906, + -9.7802734375, + -34.610198974609375, + 34.730506896972656, + -27.295299530029297, + -34.1237907409668, + -61.10762405395508, + 36.2121696472168, + -0.2146104872226715, + -1.4764163494110107, + 3.558354616165161, + 11.141556739807129, + -27.011510848999023, + -16.551990509033203, + -12.25707721710205, + 36.019493103027344, + 23.15512466430664, + 3.290153980255127, + 23.811948776245117, + 36.885101318359375, + -61.747283935546875, + -2.0988786220550537, + -29.697751998901367, + 38.04241943359375, + 38.2957878112793, + -5.097221374511719, + 7.182695388793945, + 15.450820922851562, + 4.774181842803955, + 7.78124475479126, + 11.837586402893066, + 38.43436050415039, + 25.563491821289062, + 39.63302230834961, + 36.00912094116211, + -26.91862678527832, + 4.599719047546387, + 0.1693262755870819, + -26.269794464111328, + 18.376266479492188, + 40.19384765625, + 0.7535735964775085, + 38.5643424987793, + -63.99296188354492, + 23.237333297729492, + 26.78429412841797, + 34.77974319458008, + -4.122694492340088, + 25.991472244262695, + -26.949975967407227, + -2.2986044883728027, + -35.82746887207031, + 4.092322826385498, + -13.407011032104492, + 36.49249267578125, + 27.90200424194336, + 2.9560136795043945, + -12.933928489685059, + 20.631067276000977, + 28.408933639526367, + 21.971141815185547, + 37.95622253417969, + -35.893272399902344, + -23.801454544067383, + -2.161376953125, + 4.17488431930542, + -30.555795669555664, + -61.77583312988281, + 5.725335121154785, + 37.11252975463867, + -28.129959106445312, + 38.89986801147461, + -27.598876953125, + 1.2029330730438232, + 0.2849107086658478, + -58.465450286865234, + -26.49777603149414, + -20.862525939941406, + -33.001609802246094, + -64.3543930053711, + 37.76679229736328, + 3.322338581085205, + 0.3116052746772766, + -20.532785415649414, + 4.581684112548828, + -8.79466438293457, + -60.706695556640625, + 37.58601379394531, + 12.263519287109375, + -64.15077209472656, + 4.243093013763428, + 5.994231700897217, + 4.872600555419922, + 8.858481407165527, + 30.77275848388672, + 14.762014389038086, + -1.1449681520462036, + 31.16255760192871, + -61.60895538330078, + 32.73565673828125, + 20.40921974182129, + 34.059669494628906, + 5.114436149597168, + 24.596254348754883, + -11.217272758483887, + -31.592782974243164, + -16.495922088623047, + -23.000831604003906, + -53.91639709472656, + 4.3218607902526855, + 4.241258144378662, + 22.3723201751709, + 27.0317440032959, + -61.87722396850586, + -0.13052931427955627, + 5.441511631011963, + -23.462831497192383, + -1.8765075206756592, + -29.163307189941406, + 17.593265533447266, + 4.855567455291748, + -28.789764404296875, + 10.365987777709961, + 1.2838808298110962, + -63.72731399536133, + -0.3499872088432312, + -26.24040985107422, + -2.6023058891296387, + 4.001850605010986, + 39.7894172668457, + 3.6797165870666504, + -60.77792739868164, + -18.164609909057617, + 8.557841300964355, + 21.50970458984375, + -12.27089786529541, + 25.898569107055664, + -2.3520278930664062, + 1.7338147163391113, + -0.8907151222229004, + 17.013200759887695, + -27.54244041442871, + 32.44309616088867, + 24.2348575592041, + -0.3836762011051178, + -26.922143936157227, + -39.388832092285156, + -27.016376495361328, + -44.685157775878906, + 17.012378692626953, + -59.05735778808594, + -52.99447250366211, + 5.143078327178955, + -0.48179715871810913, + -40.45746994018555, + 39.336238861083984, + -22.338571548461914, + 4.738315105438232, + -56.86899948120117, + 38.00872039794922, + 37.4780387878418, + 23.935428619384766, + -27.414527893066406, + 7.222578525543213, + 36.98308181762695, + 30.091903686523438, + 33.560176849365234, + -53.42158508300781, + -2.6249232292175293, + 30.426259994506836, + -26.52850341796875, + -27.53760528564453, + 4.246921539306641, + 39.55330276489258, + -26.914525985717773, + 2.078949451446533, + 30.262502670288086, + 23.362995147705078, + -27.505435943603516, + -2.371814727783203, + -62.94947052001953, + 0.4788060784339905, + -43.39000701904297, + -60.174102783203125, + 3.2157673835754395, + 16.84161949157715, + 1.5968194007873535, + 30.27251434326172, + -27.316123962402344, + 34.804508209228516, + 17.560592651367188, + 34.52561950683594, + 22.956317901611328, + -60.260066986083984, + -2.098966121673584, + 2.748415470123291, + 36.97267150878906, + -31.314172744750977, + 39.61389923095703, + 18.955280303955078, + -26.706933975219727, + -0.5326884388923645, + -1.5437140464782715, + 6.398122310638428, + 13.832923889160156, + -22.712038040161133, + 2.222168445587158, + 33.544837951660156, + -18.819536209106445, + 0.5109617114067078, + 39.7147216796875, + -63.74007797241211, + 37.67893600463867, + -15.901487350463867, + 28.6321964263916, + 35.90068435668945, + 26.953475952148438, + 33.60068130493164, + -30.76392364501953, + -4.084541320800781, + -45.23905563354492, + -43.845436096191406, + -28.245502471923828, + 23.696863174438477, + 5.082270622253418, + -25.772619247436523, + -24.966873168945312, + -58.691810607910156, + -7.607051849365234, + -63.07357406616211, + 36.857975006103516, + 36.17024230957031, + 6.741005897521973, + 29.76398468017578, + 16.79330062866211, + 31.564029693603516, + -40.640907287597656, + 11.692161560058594, + -14.102388381958008, + 39.236083984375, + -1.301102876663208, + -24.424020767211914, + 0.4930482804775238, + 35.47406005859375, + -27.83707046508789, + -25.618043899536133, + 32.75431442260742, + 39.00019454956055, + -53.790252685546875, + -2.198779582977295, + 4.216226577758789, + 17.406036376953125, + -42.63969421386719, + 31.791492462158203, + 35.7048454284668, + -27.2637996673584, + -23.90845489501953, + -17.140317916870117, + 28.058378219604492, + 22.332487106323242, + -1.946228265762329, + 12.745601654052734, + -27.366979598999023, + -20.213396072387695, + 38.07920455932617, + -59.981197357177734, + 38.143089294433594, + -2.845381736755371, + 0.0017187658231705427, + -31.796371459960938, + -27.17812156677246, + 31.377683639526367, + -28.288312911987305, + 31.95099449157715, + 16.587059020996094, + 30.446308135986328, + -53.198509216308594, + -39.853145599365234, + 34.8203239440918, + -41.972469329833984, + -18.510196685791016, + 2.604130506515503, + 34.718162536621094, + -28.509185791015625, + 22.928176879882812, + -20.310882568359375, + 33.442134857177734, + 23.115095138549805, + 8.03622055053711, + -27.3338623046875, + -1.4667940139770508, + -23.96548843383789, + -5.169042110443115, + -27.08736801147461, + -25.149396896362305, + 14.08089542388916, + 35.460933685302734, + -1.4050744771957397, + 1.938452124595642, + 5.541860103607178, + -1.838897466659546, + -3.0214004516601562, + -28.48262596130371, + 5.160024166107178, + -28.268146514892578, + -33.603729248046875, + 1.5257902145385742, + 5.340751647949219, + -0.5197934508323669, + 9.577101707458496, + 35.59562301635742, + 39.26670455932617, + -2.8982152938842773, + 33.38420867919922, + 5.377727031707764, + -5.379171371459961, + -63.2160758972168, + 24.652334213256836, + 21.63873863220215, + 0.23861873149871826, + -30.010643005371094, + -27.90915298461914, + -3.047614812850952, + 13.329619407653809, + 36.017250061035156, + -52.28601837158203, + 28.975690841674805, + 31.81147003173828, + -0.22203683853149414, + -31.986066818237305, + 37.8968620300293, + 27.40378761291504, + 4.96359395980835, + -2.114614486694336, + -3.304506778717041, + 37.8709602355957, + 4.187405109405518, + 21.4754581451416, + -50.52713394165039, + -19.04728126525879, + -23.933269500732422, + 20.53144645690918, + 16.480615615844727, + -63.593475341796875, + -32.109474182128906, + -0.3344844877719879, + 1.1176507472991943, + 32.98955154418945, + 18.342859268188477, + 18.06956672668457, + -57.79457473754883, + -48.458255767822266, + -10.016047477722168, + 32.73568344116211, + -0.5465750098228455, + 4.655638217926025, + 31.03536033630371, + 1.5775032043457031, + 3.650477409362793, + -27.583576202392578, + -41.542572021484375, + -1.057565450668335, + 34.036170959472656, + 33.160274505615234, + -0.1496047079563141, + 23.670255661010742, + -63.83967208862305, + 28.137989044189453, + -37.6281623840332, + 4.704788684844971, + -42.428955078125, + -39.459228515625, + 28.165424346923828, + 1.1066405773162842, + -6.960291385650635, + -22.460174560546875, + 19.66263198852539, + 36.97003936767578, + -27.893463134765625, + -27.717472076416016, + -49.14589309692383, + -63.65694046020508, + -2.1659247875213623, + 18.9816951751709, + -58.67420196533203, + 13.288150787353516, + 4.2735819816589355, + -27.299545288085938, + 0.13628697395324707, + 10.243351936340332, + 25.852008819580078, + -0.25356534123420715, + 32.548465728759766, + -1.356724739074707, + 3.8489468097686768, + -1.6355146169662476, + -7.793449878692627, + -14.84836483001709, + -1.0650187730789185, + 39.754249572753906, + 2.22868275642395, + -36.646610260009766, + -0.050244737416505814, + -55.97161102294922, + 4.03416109085083, + 8.044095993041992, + 35.36585235595703, + 27.69380760192871, + -61.49150466918945, + -27.796289443969727, + 14.26133918762207, + -1.1663901805877686, + -3.6283984184265137, + 38.9509391784668, + 18.065641403198242, + 1.9264339208602905, + 0.6719098091125488, + 29.291500091552734, + -23.99098014831543, + -2.0498242378234863, + 34.672630310058594, + -60.329078674316406, + 3.982858657836914, + 6.0357537269592285, + 40.36344528198242, + -2.8225412368774414, + 9.224143028259277, + 26.773836135864258, + -40.41542434692383, + -0.4712863862514496, + 2.1779515743255615, + -27.83637237548828, + 0.5422235727310181, + -0.6953023672103882, + -33.2484130859375, + -0.8258787989616394, + 39.689109802246094, + -5.9947052001953125, + 32.540687561035156, + 5.194436073303223, + 37.99980545043945, + 25.662830352783203, + 2.114962100982666, + -22.589962005615234, + 14.885028839111328, + -26.05512237548828, + -2.8924615383148193, + -47.25772476196289, + 29.056489944458008, + -2.612872838973999, + -62.69695281982422, + -23.26530647277832, + -27.836584091186523, + -28.498939514160156, + -61.376312255859375, + 7.084342002868652, + 37.729244232177734, + 16.238754272460938, + -58.317081451416016, + 25.84549903869629, + -62.83806228637695, + 4.3709940910339355, + -2.038520097732544, + -62.22673797607422, + 22.14586067199707, + -29.034284591674805, + -17.693668365478516, + 41.08356475830078, + 38.86286163330078, + 5.121357440948486, + 1.7736495733261108, + 39.43232345581055, + 3.1867551803588867, + 38.320770263671875, + 37.32357406616211, + -5.671106338500977, + -24.26873779296875, + 4.5910234451293945, + 23.856155395507812, + -62.4300422668457, + -39.635581970214844, + -50.66555404663086, + 4.40753698348999, + -1.5631937980651855, + -61.76934051513672, + -2.0087203979492188, + 18.37723159790039, + -19.327226638793945, + -61.898502349853516, + 16.876049041748047, + -63.59306335449219, + 27.487152099609375, + -24.65072250366211, + -28.623411178588867, + 26.653919219970703, + 23.967802047729492, + 3.255126714706421, + -64.33305358886719, + 40.637168884277344, + 23.989030838012695, + -47.016380310058594, + -1.8743349313735962, + 4.842494964599609, + -1.9477990865707397, + 16.406835556030273, + -63.41006088256836, + -24.174264907836914, + -53.970035552978516, + 2.709540843963623, + 29.58982276916504, + -27.2517032623291, + 2.058258056640625, + 37.50181198120117, + -26.978517532348633, + 2.515031576156616, + -2.2505815029144287, + 0.5121996998786926, + -14.42166805267334, + 33.067359924316406, + 11.382640838623047, + -26.565149307250977, + -6.097373008728027, + 16.487831115722656, + 29.91762351989746, + 31.802902221679688, + 4.9023118019104, + 38.693206787109375, + -25.832775115966797, + 37.43745422363281, + -63.53795623779297, + -62.95209884643555, + -13.58823013305664, + -3.9219186305999756, + 40.528499603271484, + -1.8405629396438599, + 4.554493427276611, + 1.5983705520629883, + 3.9333322048187256, + -64.0775146484375, + -2.3036677837371826, + 33.150394439697266, + -35.406654357910156, + -25.424381256103516, + -0.6471800804138184, + 34.30892562866211, + 28.946149826049805, + -29.681602478027344, + -2.161604642868042, + -26.392436981201172, + -2.9252800941467285, + 39.510684967041016, + 5.053046226501465, + 1.2459185123443604, + 32.357948303222656, + -6.056866645812988, + 16.08070945739746, + 2.8824005126953125, + 39.36650466918945, + 22.76073455810547, + 3.2830684185028076, + -17.605016708374023, + -46.71043014526367, + -18.296785354614258, + 4.438990116119385, + 19.44968605041504, + -0.9538967609405518, + -3.6671547889709473, + 31.46181297302246, + 2.3968288898468018, + 29.962989807128906, + 19.915904998779297, + -6.383547782897949, + 4.341724395751953, + -16.777708053588867, + 9.707676887512207, + 23.593856811523438, + 15.878902435302734, + 0.14776451885700226, + 38.91976547241211, + -25.934722900390625, + 5.841156959533691, + 5.293880939483643, + 38.639732360839844, + -0.20858073234558105, + -13.953810691833496, + 32.43086624145508, + -23.06887435913086, + 39.01001739501953, + -55.140350341796875, + -46.531982421875, + 21.96519660949707, + 4.153124809265137, + 15.86575698852539, + 2.844680070877075, + -39.11983871459961, + 16.9582462310791, + -0.1299743950366974, + 33.702659606933594, + -27.08370590209961, + -1.0887905359268188, + 32.58169937133789, + -3.3841216564178467, + 38.037513732910156, + -26.949155807495117, + 39.19319534301758, + 24.108112335205078, + 1.2062193155288696, + 16.95845603942871, + 16.453784942626953, + 2.227854013442993, + 34.241180419921875, + 5.8759541511535645, + -28.072729110717773, + 37.38779830932617, + -2.648912191390991, + -25.5162353515625, + -63.80318069458008, + 38.3602409362793, + 37.65060043334961, + -60.640323638916016, + -28.328371047973633, + -0.9273831248283386, + 0.976649820804596, + 20.959630966186523, + -2.346435308456421, + 26.955402374267578, + 25.915433883666992, + 37.88669204711914, + -60.21174240112305, + -13.643136024475098, + -0.1432453840970993, + 24.26072120666504, + -63.58436965942383, + -41.97905731201172, + 22.32252311706543, + -64.1368637084961, + 36.4217414855957, + -24.440235137939453, + -59.74687576293945, + -16.509307861328125, + -28.01661491394043, + 37.83428955078125, + 3.955993175506592, + -62.18614959716797, + 36.379150390625, + -0.77024245262146, + 38.34869384765625, + 36.97224807739258, + 4.684527397155762, + 0.848071813583374, + -3.172745704650879, + -23.544767379760742, + -0.14866529405117035, + 1.2386960983276367, + -1.816688895225525, + -62.61982727050781, + -38.23335266113281, + -3.361351251602173, + -22.13477897644043, + 13.63122272491455, + -56.15132522583008, + -2.0477421283721924, + -26.810733795166016, + -60.791259765625, + -11.612616539001465, + -27.653966903686523, + 19.472070693969727, + -26.524471282958984, + 5.2015700340271, + -0.2515028715133667, + 11.758316040039062, + 32.07234573364258, + 37.31429672241211, + -59.513641357421875, + -11.215829849243164, + 24.264694213867188, + 19.80866050720215, + 3.6724066734313965, + 36.73297882080078, + 36.989540100097656, + 38.30718994140625, + 0.798355758190155, + 26.22112274169922, + -59.77694320678711, + 35.281898498535156, + -27.140371322631836, + -62.942039489746094, + 23.64890480041504, + -1.1313040256500244, + 21.266572952270508, + 20.03721046447754, + 31.836273193359375, + -3.7517285346984863, + 3.4908909797668457, + 6.122950553894043, + 9.70647144317627, + 0.03308623656630516, + -26.979305267333984, + -59.347511291503906, + -62.14955139160156, + -14.720474243164062, + -63.52603530883789, + 30.89692497253418, + 8.888566017150879, + 24.853931427001953, + 13.433610916137695, + 17.471975326538086, + 1.7564135789871216, + 6.334708213806152, + -2.4383559226989746, + -1.5902831554412842, + -4.2765679359436035, + -21.009740829467773, + -63.16373825073242, + -52.86893844604492, + 14.289836883544922, + 0.4050450325012207, + 3.9224584102630615, + 36.22104263305664, + -14.925239562988281, + 4.402613162994385, + 2.398420572280884, + 12.144015312194824, + -8.561134338378906, + 28.501800537109375, + -25.333396911621094, + 38.60236358642578, + -63.7545051574707, + -33.60231018066406, + 37.25978088378906, + 25.313209533691406, + -0.5758141279220581, + -4.0009284019470215, + 13.31080150604248, + -17.75765037536621, + 4.859969139099121, + -63.48576354980469, + -56.028446197509766, + -51.69991683959961, + -29.495641708374023, + -63.34651184082031, + -42.598106384277344, + 31.439218521118164, + -1.0416678190231323, + 6.817438125610352, + 1.3891685009002686, + 1.0885322093963623, + 36.10781478881836, + 32.568668365478516, + 37.214202880859375, + 35.462745666503906, + 19.100635528564453, + 32.847129821777344, + -7.180542945861816, + -0.8401433229446411, + 1.9241902828216553, + -41.274757385253906, + 39.97462463378906, + -41.988525390625, + 17.36005401611328, + -0.9170210361480713, + 1.0956847667694092, + -55.28605651855469, + 5.398019313812256, + 33.891937255859375, + -3.408128499984741, + 15.218342781066895, + -0.11333345621824265, + -17.380956649780273, + 38.679012298583984, + 21.5768985748291, + 36.80526351928711, + 25.00821304321289, + -44.8200798034668, + -46.133018493652344, + 4.66328763961792, + 27.95464515686035, + 0.7409499287605286, + 38.40158462524414, + -0.3511541187763214, + 27.117353439331055, + 19.943735122680664, + -55.54768371582031, + 5.402984142303467, + 39.02949142456055, + -57.615684509277344, + 28.58266258239746, + -58.50999069213867, + 4.673342704772949, + -50.32365417480469, + 9.889006614685059, + 38.26711654663086, + 4.778020858764648, + 31.388525009155273, + 21.787578582763672, + -23.602853775024414, + -23.114309310913086, + -62.08277130126953, + -30.531150817871094, + 38.00404739379883, + -24.502653121948242, + 10.13082218170166, + 17.211111068725586, + 39.5972900390625, + 30.18435287475586, + 6.612991809844971, + -26.3031063079834, + 4.497177600860596, + 26.957033157348633, + 4.342648983001709, + -56.6527214050293, + -54.42863464355469, + 7.2056403160095215, + -49.74263000488281, + 5.231359958648682, + 5.320628643035889, + -64.09492492675781, + 3.9145476818084717, + -7.543032169342041, + 8.957488059997559, + 3.012892961502075, + -63.757354736328125, + 38.49504089355469, + 37.085662841796875, + -25.004209518432617, + 38.21625518798828, + -30.257360458374023, + 37.33488082885742, + 31.784975051879883, + -25.982078552246094, + 37.57215118408203, + 38.879940032958984, + 4.509792804718018, + -0.5124152302742004, + -2.2195496559143066, + 36.64984893798828, + -3.364670753479004, + 18.019269943237305, + 35.606544494628906, + 35.300254821777344, + -16.630786895751953, + 9.7494535446167, + 10.403175354003906, + 6.010842800140381, + -59.259185791015625, + -53.821449279785156, + 26.803993225097656, + -62.9509391784668, + 25.513092041015625, + -27.196386337280273, + -28.157363891601562, + 23.555137634277344, + -17.12669563293457, + -26.50241470336914, + 35.86952590942383, + 20.856666564941406, + 3.041579484939575, + 19.050785064697266, + -29.24886703491211, + -13.180072784423828, + 4.433002471923828, + 6.291081428527832, + -27.024656295776367, + -30.756860733032227, + 31.651472091674805, + 4.052292823791504, + -62.264339447021484, + 32.46986389160156, + -56.107818603515625, + -18.137331008911133, + 38.479000091552734, + 38.447654724121094, + 14.741260528564453, + -42.63761520385742, + 1.3299680948257446, + 35.95125198364258, + -2.7822539806365967, + -25.296371459960938, + -54.040042877197266, + -1.8072234392166138, + -27.124515533447266, + -24.539522171020508, + 14.804998397827148, + -23.292150497436523, + -32.535640716552734, + 8.11711597442627, + 1.1332297325134277, + -3.4888503551483154, + 36.5699577331543, + -0.39776554703712463, + -6.49199914932251, + -0.9094511270523071, + -17.80312156677246, + -29.69569969177246, + -53.54084014892578, + -29.42601203918457, + 12.434128761291504, + 9.327139854431152, + -63.35926818847656, + -22.548171997070312, + -14.853911399841309, + 39.16135025024414, + 17.622228622436523, + 29.5159912109375, + 19.269851684570312, + 2.0788097381591797, + -0.3456469774246216, + -36.041507720947266, + 34.61992645263672, + -27.13702392578125, + 5.828062057495117, + -1.8593902587890625, + 11.930411338806152, + 3.196420669555664, + -19.756893157958984, + -43.987545013427734, + 36.77129364013672, + -26.33139991760254, + -16.167308807373047, + -63.423194885253906, + 1.0056897401809692, + 3.841773271560669, + -1.169779658317566, + -63.1141471862793, + -56.43079376220703, + 33.24720764160156, + -48.24141311645508, + -30.01872444152832, + 38.93962478637695, + -1.6013084650039673, + 3.7845945358276367, + -10.595367431640625, + 12.8846435546875, + 26.32992172241211, + 22.50519561767578, + 3.9998526573181152, + 21.58686065673828, + -60.298030853271484, + 39.328887939453125, + -32.17926788330078, + 32.47746276855469, + 37.84578323364258, + -3.5259218215942383, + 5.053607940673828, + 16.239458084106445, + 36.995140075683594, + 16.380924224853516, + -61.4214973449707 + ] + } + ], + "layout": {} + }, + "text/html": [ + "
" + ], + "text/vnd.plotly.v1+html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "reduce_dimensions(model)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conclusion\n", + "\n", + "In this tutorial we learned how to train word2vec models on your custom data and also how to evaluate it. Hope that you too will find this popular tool useful in your Machine Learning tasks!\n", + "\n", + "## Links\n", + "\n", + "\n", + "Full `word2vec` API docs [here](http://radimrehurek.com/gensim/models/word2vec.html); get [gensim](http://radimrehurek.com/gensim/) here. Original C toolkit and `word2vec` papers by Google [here](https://code.google.com/archive/p/word2vec/)." + ] } ], "metadata": { @@ -1336,7 +6831,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", - "version": "2.7.13" + "version": "2.7.12" } }, "nbformat": 4, diff --git a/docs/src/apiref.rst b/docs/src/apiref.rst index c4587f14f9..d67d27a16a 100644 --- a/docs/src/apiref.rst +++ b/docs/src/apiref.rst @@ -88,6 +88,7 @@ Modules: summarization/commons summarization/graph summarization/keywords + summarization/mz_entropy summarization/pagerank_weighted summarization/summariser summarization/syntactic_unit diff --git a/docs/src/models/rpmodel.rst b/docs/src/models/rpmodel.rst index 47eba01262..91ef71872a 100644 --- a/docs/src/models/rpmodel.rst +++ b/docs/src/models/rpmodel.rst @@ -5,4 +5,6 @@ :synopsis: Random Projections :members: :inherited-members: - + :undoc-members: + :show-inheritance: + :special-members: __getitem__ diff --git a/docs/src/summarization/graph.rst b/docs/src/summarization/graph.rst index 909b15cf5e..eb3588077d 100644 --- a/docs/src/summarization/graph.rst +++ b/docs/src/summarization/graph.rst @@ -1,8 +1,8 @@ -:mod:`summarization.graph` -- TextRank graph -========================================================= +:mod:`summarization.graph` -- Graph +=================================== .. automodule:: gensim.summarization.graph - :synopsis: TextRank graph + :synopsis: Graph :members: :inherited-members: :undoc-members: diff --git a/docs/src/summarization/mz_entropy.rst b/docs/src/summarization/mz_entropy.rst new file mode 100644 index 0000000000..31222ca6ab --- /dev/null +++ b/docs/src/summarization/mz_entropy.rst @@ -0,0 +1,9 @@ +:mod:`summarization.mz_entropy` -- Keywords for the Montemurro and Zanette entropy algorithm +============================================================================================ + +.. automodule:: gensim.summarization.mz_entropy + :synopsis: Keywords for the Montemurro and Zanette entropy algorithm + :members: + :inherited-members: + :undoc-members: + :show-inheritance: diff --git a/gensim/models/__init__.py b/gensim/models/__init__.py index c25e8e7795..88e0abf28d 100644 --- a/gensim/models/__init__.py +++ b/gensim/models/__init__.py @@ -20,6 +20,7 @@ from .atmodel import AuthorTopicModel # noqa:F401 from .ldaseqmodel import LdaSeqModel # noqa:F401 from .fasttext import FastText # noqa:F401 +from .translation_matrix import TranslationMatrix, BackMappingTranslationMatrix # noqa:F401 from . import wrappers # noqa:F401 diff --git a/gensim/models/fasttext.py b/gensim/models/fasttext.py index d7e8598b8d..2210c4e0ed 100644 --- a/gensim/models/fasttext.py +++ b/gensim/models/fasttext.py @@ -188,7 +188,7 @@ def __init__( If you don't supply `sentences`, the model is left uninitialized -- use if you plan to initialize it in some other way. sg : int {1, 0} - Defines the training algorithm. If 1, CBOW is used, otherwise, skip-gram is employed. + Defines the training algorithm. If 1, skip-gram is used, otherwise, CBOW is employed. size : int Dimensionality of the feature vectors. window : int diff --git a/gensim/models/rpmodel.py b/gensim/models/rpmodel.py index 0c8f7c8b26..0826a7c359 100644 --- a/gensim/models/rpmodel.py +++ b/gensim/models/rpmodel.py @@ -5,6 +5,35 @@ # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""Random Projections (also known as Random Indexing). + +For theoretical background on Random Projections, see [1]_. + + +Examples +-------- +>>> from gensim.models import RpModel +>>> from gensim.corpora import Dictionary +>>> from gensim.test.utils import common_texts, temporary_file +>>> +>>> dictionary = Dictionary(common_texts) # fit dictionary +>>> corpus = [dictionary.doc2bow(text) for text in common_texts] # convert texts to BoW format +>>> +>>> model = RpModel(corpus, id2word=dictionary) # fit model +>>> result = model[corpus[3]] # apply model to document, result is vector in BoW format +>>> +>>> with temporary_file("model_file") as fname: +... model.save(fname) # save model to file +... loaded_model = RpModel.load(fname) # load model + + +References +---------- +.. [1] Kanerva et al., 2000, Random indexing of text samples for Latent Semantic Analysis, + https://cloudfront.escholarship.org/dist/prd/content/qt5644k0w6/qt5644k0w6.pdf + +""" + import logging import numpy as np @@ -16,30 +45,21 @@ class RpModel(interfaces.TransformationABC): - """ - Objects of this class allow building and maintaining a model for Random Projections - (also known as Random Indexing). For theoretical background on RP, see: - - Kanerva et al.: "Random indexing of text samples for Latent Semantic Analysis." - The main methods are: + def __init__(self, corpus, id2word=None, num_topics=300): + """ - 1. constructor, which creates the random projection matrix - 2. the [] method, which transforms a simple count representation into the TfIdf - space. + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. - >>> rp = RpModel(corpus) - >>> print(rp[some_doc]) - >>> rp.save('/tmp/foo.rp_model') + id2word : {dict of (int, str), :class:`~gensim.corpora.dictionary.Dictionary`}, optional + Mapping `token_id` -> `token`, will be determine from corpus if `id2word == None`. - Model persistency is achieved via its load/save methods. - """ + num_topics : int, optional + Number of topics. - def __init__(self, corpus, id2word=None, num_topics=300): - """ - `id2word` is a mapping from word ids (integers) to words (strings). It is - used to determine the vocabulary size, as well as for debugging and topic - printing. If not set, it will be determined from the corpus. """ self.id2word = id2word self.num_topics = num_topics @@ -50,8 +70,13 @@ def __str__(self): return "RpModel(num_terms=%s, num_topics=%s)" % (self.num_terms, self.num_topics) def initialize(self, corpus): - """ - Initialize the random projection matrix. + """Initialize the random projection matrix. + + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. + """ if self.id2word is None: logger.info("no word id mapping provided; initializing from corpus, assuming identity") @@ -73,8 +98,32 @@ def initialize(self, corpus): # are smarter and this is no longer needed? def __getitem__(self, bow): - """ - Return RP representation of the input vector and/or corpus. + """Get random-projection representation of the input vector or corpus. + + Parameters + ---------- + bow : {list of (int, int), iterable of list of (int, int)} + Input document or corpus. + + Returns + ------- + list of (int, float) + if `bow` is document OR + :class:`~gensim.interfaces.TransformedCorpus` + if `bow` is corpus. + + Examples + ---------- + >>> from gensim.models import RpModel + >>> from gensim.corpora import Dictionary + >>> from gensim.test.utils import common_texts + >>> + >>> dictionary = Dictionary(common_texts) # fit dictionary + >>> corpus = [dictionary.doc2bow(text) for text in common_texts] # convert texts to BoW format + >>> + >>> model = RpModel(corpus, id2word=dictionary) # fit model + >>> result = model[corpus[0]] # apply model to document, result is vector in BoW format, i.e. [(1, 0.3), ... ] + """ # if the input vector is in fact a corpus, return a transformed corpus as result is_corpus, bow = utils.is_corpus(bow) @@ -96,5 +145,13 @@ def __getitem__(self, bow): ] def __setstate__(self, state): + """Sets the internal state and updates freshly_loaded to True, called when unpicked. + + Parameters + ---------- + state : dict + State of the class. + + """ self.__dict__ = state self.freshly_loaded = True diff --git a/gensim/models/translation_matrix.py b/gensim/models/translation_matrix.py index 78233136d2..1dd7cd6b25 100644 --- a/gensim/models/translation_matrix.py +++ b/gensim/models/translation_matrix.py @@ -1,60 +1,105 @@ #!/usr/bin/env python # encoding: utf-8 -import warnings -import numpy as np -from collections import OrderedDict -from gensim import utils -from six import string_types - - -""" -Produce translation matrix to translate the word from one language to another language, using either -standard nearest neighbour method or globally corrected neighbour retrieval method [1]. +"""Produce translation matrix to translate the word from one language to another language, using either +standard nearest neighbour method or globally corrected neighbour retrieval method [1]_. This method can be used to augment the existing phrase tables with more candidate translations, or -filter out errors from the translation tables and known dictionaries [2]. What's more, It also work +filter out errors from the translation tables and known dictionaries [2]_. What's more, It also work for any two sets of named-vectors where there are some paired-guideposts to learn the transformation. -Initialize a model with e.g.:: +Examples +-------- +**How to make translation between two set of word-vectors** + +Initialize a word-vector models + +>>> from gensim.models import KeyedVectors +>>> from gensim.test.utils import datapath, temporary_file +>>> from gensim.models import TranslationMatrix +>>> +>>> model_en = KeyedVectors.load_word2vec_format(datapath("EN.1-10.cbow1_wind5_hs0_neg10_size300_smpl1e-05.txt")) +>>> model_it = KeyedVectors.load_word2vec_format(datapath("IT.1-10.cbow1_wind5_hs0_neg10_size300_smpl1e-05.txt")) + +Define word pairs (that will be used for construction of translation matrix + +>>> word_pairs = [ +... ("one", "uno"), ("two", "due"), ("three", "tre"), ("four", "quattro"), ("five", "cinque"), +... ("seven", "sette"), ("eight", "otto"), +... ("dog", "cane"), ("pig", "maiale"), ("fish", "cavallo"), ("birds", "uccelli"), +... ("apple", "mela"), ("orange", "arancione"), ("grape", "acino"), ("banana", "banana") +... ] + +Fit :class:`~gensim.models.translation_matrix.TranslationMatrix` + +>>> trans_model = TranslationMatrix(model_en, model_it, word_pairs=word_pairs) + +Apply model (translate words "dog" and "one") + +>>> trans_model.translate(["dog", "one"], topn=3) +OrderedDict([('dog', [u'cane', u'gatto', u'cavallo']), ('one', [u'uno', u'due', u'tre'])]) + - >>> transmat = TranslationMatrix(word_pair, source_word_vec, target_word_vec) +Save / load model -Train a model with e.g.:: +>>> with temporary_file("model_file") as fname: +... trans_model.save(fname) # save model to file +... loaded_trans_model = TranslationMatrix.load(fname) # load model - >>> transmat.train(word_pair) -Persist a model to disk with:: +**How to make translation between two :class:`~gensim.models.doc2vec.Doc2Vec` models** - >>> transmat.save(fname) - >>> transmat = TranslationMatrix.load(fname) +Prepare data and models -Translate the source words to target words, for example +>>> from gensim.test.utils import datapath +>>> from gensim.test.test_translation_matrix import read_sentiment_docs +>>> from gensim.models import Doc2Vec, BackMappingTranslationMatrix +>>> +>>> data = read_sentiment_docs(datapath("alldata-id-10.txt"))[:5] +>>> src_model = Doc2Vec.load(datapath("small_tag_doc_5_iter50")) +>>> dst_model = Doc2Vec.load(datapath("large_tag_doc_10_iter50")) - >>> transmat.translate(["one", "two", "three"], topn=3) +Train backward translation +>>> model_trans = BackMappingTranslationMatrix(data, src_model, dst_model) +>>> trans_matrix = model_trans.train(data) + + +Apply model + +>>> result = model_trans.infer_vector(dst_model.docvecs[data[3].tags]) + + +References +---------- .. [1] Dinu, Georgiana, Angeliki Lazaridou, and Marco Baroni. "Improving zero-shot learning by mitigating the - hubness problem." arXiv preprint arXiv:1412.6568 (2014). + hubness problem", https://arxiv.org/abs/1412.6568 .. [2] Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg Corrado, and Jeffrey Dean. - Distributed Representations of Words and Phrases and their Compositionality. - In Proceedings of NIPS, 2013. + "Distributed Representations of Words and Phrases and their Compositionality", https://arxiv.org/abs/1310.4546 + """ +import warnings +import numpy as np + +from collections import OrderedDict +from gensim import utils +from six import string_types + class Space(object): - """ - An auxiliary class for storing the the words space + """An auxiliary class for storing the the words space.""" - Attributes: - `mat` (ndarray): each row is the word vector of the lexicon - `index2word` (list): a list of words in the `Space` object - `word2index` (dict): map the word to index - """ def __init__(self, matrix, index2word): """ - `matrix`: N * length_of_word_vec, which store the word's vector - `index2word`: a list of words in the `Space` object - `word2index`: a dict which for word indexing + + Parameters + ---------- + matrix : iterable of numpy.ndarray + Matrix that contains word-vectors. + index2word : list of str + Words which correspond to the `matrix`. + """ self.mat = matrix self.index2word = index2word @@ -66,14 +111,20 @@ def __init__(self, matrix, index2word): @classmethod def build(cls, lang_vec, lexicon=None): - """ - Construct a space class for the lexicon, if it's provided. - Args: - `lang_vec`: word2vec model that extract word vector for lexicon - `lexicon`: the default is None, if it is not provided, the lexicon is all the lang_vec's word, - i.e. lang_vec.vocab.keys() - Returns: - `Space` object for the lexicon + """Construct a space class for the lexicon, if it's provided. + + Parameters + ---------- + lang_vec : :class:`~gensim.models.keyedvectors.KeyedVectors` + Model from which the vectors will be extracted. + lexicon : list of str, optional + Words which contains in the `lang_vec`, if `lexicon = None`, the lexicon is all the lang_vec's word. + + Returns + ------- + :class:`~gensim.models.translation_matrix.Space` + Object that stored word-vectors + """ # `words` to store all the word that # `mat` to store all the word vector for the word in 'words' list @@ -93,41 +144,58 @@ def build(cls, lang_vec, lexicon=None): return Space(mat, words) def normalize(self): - """ Normalize the word vector's matrix """ + """Normalize the word vector's matrix.""" self.mat = self.mat / np.sqrt(np.sum(np.multiply(self.mat, self.mat), axis=1, keepdims=True)) class TranslationMatrix(utils.SaveLoad): - """ - Objects of this class realize the translation matrix which map the source language - to the target language. + """Objects of this class realize the translation matrix which map the source language to the target language. The main methods are: - 1. constructor, - 2. the `train` method, which initialize everything needed to build a translation matrix - 3. the `translate` method, which given new word and its vector representation. - We map it to the other language space by computing z = Wx, then return the word whose representation is close to z. - The details use seen the notebook (translation_matrix.ipynb) - - >>> transmat = TranslationMatrix(source_lang_vec, target_lang_vec, word_pair) - >>> transmat.train(word_pair) - >>> translated_word = transmat.translate(words, topn=3) + The details use seen the notebook [3]_ + + Examples + -------- + >>> from gensim.models import KeyedVectors + >>> from gensim.test.utils import datapath, temporary_file + >>> + >>> model_en = KeyedVectors.load_word2vec_format(datapath("EN.1-10.cbow1_wind5_hs0_neg10_size300_smpl1e-05.txt")) + >>> model_it = KeyedVectors.load_word2vec_format(datapath("IT.1-10.cbow1_wind5_hs0_neg10_size300_smpl1e-05.txt")) + >>> + >>> word_pairs = [ + ... ("one", "uno"), ("two", "due"), ("three", "tre"), ("four", "quattro"), ("five", "cinque"), + ... ("seven", "sette"), ("eight", "otto"), + ... ("dog", "cane"), ("pig", "maiale"), ("fish", "cavallo"), ("birds", "uccelli"), + ... ("apple", "mela"), ("orange", "arancione"), ("grape", "acino"), ("banana", "banana") + ... ] + >>> + >>> trans_model = TranslationMatrix(model_en, model_it) + >>> trans_model.train(word_pairs) + >>> trans_model.translate(["dog", "one"], topn=3) + OrderedDict([('dog', [u'cane', u'gatto', u'cavallo']), ('one', [u'uno', u'due', u'tre'])]) + + + References + ---------- + .. [3] https://github.com/RaRe-Technologies/gensim/blob/3.2.0/docs/notebooks/translation_matrix.ipynb """ def __init__(self, source_lang_vec, target_lang_vec, word_pairs=None, random_state=None): """ - Initialize the model from a list pair of `word_pair`. Each word_pair is tupe - with source language word and target language word. + Parameters + ---------- + source_lang_vec : :class:`~gensim.models.keyedvectors.KeyedVectors` + Word vectors for source language. + target_lang_vec : :class:`~gensim.models.keyedvectors.KeyedVectors` + Word vectors for target language. + word_pairs : list of (str, str), optional + Pairs of words that will be used for training. + random_state : {None, int, array_like}, optional + Seed for random state. - Examples: [("one", "uno"), ("two", "due")] - - Args: - `word_pair` (list): a list pair of words - `source_lang_vec` (KeyedVectors): a set of word vector of source language - `target_lang_vec` (KeyedVectors): a set of word vector of target language """ self.source_word = None @@ -146,14 +214,13 @@ def __init__(self, source_lang_vec, target_lang_vec, word_pairs=None, random_sta self.train(word_pairs) def train(self, word_pairs): - """ - Build the translation matrix that mapping from source space to target space. + """Build the translation matrix that mapping from source space to target space. - Args: - `word_pairs` (list): a list pair of words + Parameters + ---------- + word_pairs : list of (str, str), optional + Pairs of words that will be used for training. - Returns: - `translation matrix` that mapping from the source language to target language """ self.source_word, self.target_word = zip(*word_pairs) @@ -169,50 +236,50 @@ def train(self, word_pairs): self.translation_matrix = np.linalg.lstsq(m1, m2, -1)[0] def save(self, *args, **kwargs): - """ - Save the model to file but ignoring the souce_space and target_space - """ + """Save the model to file but ignoring the `source_space` and `target_space`""" kwargs['ignore'] = kwargs.get('ignore', ['source_space', 'target_space']) - super(TranslationMatrix, self).save(*args, **kwargs) - @classmethod - def load(cls, *args, **kwargs): - """ Load the pre-trained translation matrix model""" - model = super(TranslationMatrix, cls).load(*args, **kwargs) - return model - def apply_transmat(self, words_space): - """ - Map the source word vector to the target word vector using translation matrix - Args: - `words_space`: the `Space` object that constructed for those words to be translate + """Map the source word vector to the target word vector using translation matrix. + + Parameters + ---------- + words_space : :class:`~gensim.models.translation_matrix.Space` + Object that constructed for those words to be translate. + + Returns + ------- + :class:`~gensim.models.translation_matrix.Space` + Object that constructed for those mapped words. - Returns: - A `Space` object that constructed for those mapped words """ return Space(np.dot(words_space.mat, self.translation_matrix), words_space.index2word) def translate(self, source_words, topn=5, gc=0, sample_num=None, source_lang_vec=None, target_lang_vec=None): - """ - Translate the word from the source language to the target language, and return the topn - most similar words. - Args: - `source_words`(str/list): single word or a list of words to be translated - `topn`: return the top N similar words. By default (`topn=5`) - `gc`: defines the training algorithm. By default (`gc=0`), use standard NN retrieval. - Otherwise use globally corrected neighbour retrieval method(as described in[1]). - `sample_num`: an int parameter that specify the number of word to sample from the source lexicon. - if `gc=1`, then `sample_num` must be provided. - `source_lang_vec`: you can specify the source language vector for translation, the default is to use - the model's source language vector. - `target_lang_vec`: you can specify the target language vector for retrieving the most similar word, - the default is to use the model's target language vector. - Returns: - A OrderedDict object, each item is (word : `topn` translated words) - - [1] Dinu, Georgiana, Angeliki Lazaridou, and Marco Baroni. "Improving zero-shot learning by mitigating the - hubness problem." arXiv preprint arXiv:1412.6568 (2014). + """Translate the word from the source language to the target language. + + Parameters + ---------- + source_words : {str, list of str} + Single word or a list of words to be translated + topn : int, optional + Number of words than will be returned as translation for each `source_words` + gc : int, optional + Define translation algorithm, if `gc == 0` - use standard NN retrieval, + otherwise, use globally corrected neighbour retrieval method (as described in [1]_). + sample_num : int, optional + Number of word to sample from the source lexicon, if `gc == 1`, then `sample_num` **must** be provided. + source_lang_vec : :class:`~gensim.models.keyedvectors.KeyedVectors`, optional + New source language vectors for translation, by default, used the model's source language vector. + target_lang_vec : :class:`~gensim.models.keyedvectors.KeyedVectors`, optional + New target language vectors for translation, by default, used the model's target language vector. + + Returns + ------- + :class:`collections.OrderedDict` + Ordered dict where each item is `word`: [`translated_word_1`, `translated_word_2`, ...] + """ if isinstance(source_words, string_types): @@ -280,38 +347,45 @@ def translate(self, source_words, topn=5, gc=0, sample_num=None, source_lang_vec class BackMappingTranslationMatrix(utils.SaveLoad): - """ - Objects of this class realize the BackMapping translation matrix which map the - source model's document vector to the target model's document vector(old model). - The main methods are: - - 1. constructor, initializing - 2. the `train` method, which build a translation matrix - 3. the `infer_vector` method, which given the target model's document vector - - We map it to the other language space by computing z = Wx, then return the - word whose representation is close to z. + """Realize the BackMapping translation matrix which map the source model's document vector + to the target model's document vector(old model). - the details use seen the notebook (translation matrix revist.ipynb) + We map it to the other language space by computing z = Wx, then return the + word whose representation is close to z. - >>> transmat = BackMappingTranslationMatrix(tagged, source_lang_vec, target_lang_vec) - >>> transmat.train(word_pair) - >>> infered_vec = transmat.infer_vector(tagged_doc) + the details use seen the notebook [3]_. + + Examples + -------- + >>> from gensim.test.utils import datapath + >>> from gensim.test.test_translation_matrix import read_sentiment_docs + >>> from gensim.models import Doc2Vec, BackMappingTranslationMatrix + >>> + >>> data = read_sentiment_docs(datapath("alldata-id-10.txt"))[:5] + >>> src_model = Doc2Vec.load(datapath("small_tag_doc_5_iter50")) + >>> dst_model = Doc2Vec.load(datapath("large_tag_doc_10_iter50")) + >>> + >>> model_trans = BackMappingTranslationMatrix(data, src_model, dst_model) + >>> trans_matrix = model_trans.train(data) + >>> + >>> result = model_trans.infer_vector(dst_model.docvecs[data[3].tags]) - """ + """ def __init__(self, tagged_docs, source_lang_vec, target_lang_vec, random_state=None): """ - Initialize the model from a list of `tagged_docs`. Each word_pair is tupe - with source language word and target language word. - Examples: [("one", "uno"), ("two", "due")] + Parameters + ---------- + tagged_docs : list of :class:`~gensim.models.doc2vec.TaggedDocument`, optional + Documents that will be used for training + source_lang_vec : :class:`~gensim.models.doc2vec.Doc2Vec` + Source Doc2Vec model. + target_lang_vec : :class:`~gensim.models.doc2vec.Doc2Vec` + Target Doc2Vec model. + random_state : {None, int, array_like}, optional + Seed for random state. - Args: - `tagged_docs` (list): a list of tagged document - `source_lang_vec` (Doc2vec): provide the document vector - `target_lang_vec` (Doc2vec): provide the document vector """ - self.tagged_docs = tagged_docs self.source_lang_vec = source_lang_vec self.target_lang_vec = target_lang_vec @@ -320,13 +394,19 @@ def __init__(self, tagged_docs, source_lang_vec, target_lang_vec, random_state=N self.translation_matrix = None def train(self, tagged_docs): - """ - Build the translation matrix that mapping from the source model's vector to target model's vector + """Build the translation matrix that mapping from the source model's vector to target model's vector - Returns: - `translation matrix` that mapping from the source model's vector to target model's vector - """ + Parameters + ---------- + tagged_docs : list of :class:`~gensim.models.doc2vec.TaggedDocument`, optional + THIS ARGUMENT WILL BE IGNORED. + + Returns + ------- + numpy.ndarray + Translation matrix that mapping from the source model's vector to target model's vector. + """ m1 = [self.source_lang_vec.docvecs[item.tags].flatten() for item in self.tagged_docs] m2 = [self.target_lang_vec.docvecs[item.tags].flatten() for item in self.tagged_docs] @@ -334,11 +414,17 @@ def train(self, tagged_docs): return self.translation_matrix def infer_vector(self, target_doc_vec): - """ - Translate the target model's document vector to the source model's document vector + """Translate the target model's document vector to the source model's document vector + + Parameters + ---------- + target_doc_vec : numpy.ndarray + Document vector + + Returns + ------- + numpy.ndarray + Vector `target_doc_vec` in the source model. - Returns: - `infered_vec` the tagged_doc's document vector in the source model """ - infered_vec = np.dot(target_doc_vec, self.translation_matrix) - return infered_vec + return np.dot(target_doc_vec, self.translation_matrix) diff --git a/gensim/parsing/preprocessing.py b/gensim/parsing/preprocessing.py index f0cf22a6e8..cc15b4665b 100644 --- a/gensim/parsing/preprocessing.py +++ b/gensim/parsing/preprocessing.py @@ -363,7 +363,7 @@ def preprocess_documents(docs): Returns ------- - list of (list of str) + list of list of str Processed documents split by whitespace. Examples diff --git a/gensim/similarities/index.py b/gensim/similarities/index.py index e9323f6998..10a79dc8b7 100644 --- a/gensim/similarities/index.py +++ b/gensim/similarities/index.py @@ -3,6 +3,33 @@ # # Copyright (C) 2013 Radim Rehurek # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html + +""" +Intro +----- +This module contains integration Annoy with :class:`~gensim.models.word2vec.Word2Vec`, +:class:`~gensim.models.doc2vec.Doc2Vec` and :class:`~gensim.models.keyedvectors.KeyedVectors`. + + +What is Annoy +------------- +Annoy (Approximate Nearest Neighbors Oh Yeah) is a C++ library with Python bindings to search for points in space +that are close to a given query point. It also creates large read-only file-based data structures that are mmapped +into memory so that many processes may share the same data. + + +How it works +------------ +Using `random projections `_ +and by building up a tree. At every intermediate node in the tree, a random hyperplane is chosen, +which divides the space into two subspaces. This hyperplane is chosen by sampling two points from the subset +and taking the hyperplane equidistant from them. + +More information about Annoy: `github repository `_, +`author in twitter `_ +and `annoy-user maillist `_. + +""" import os from smart_open import smart_open @@ -23,8 +50,34 @@ class AnnoyIndexer(object): + """This class allows to use `Annoy `_ as indexer for ``most_similar`` method + from :class:`~gensim.models.word2vec.Word2Vec`, :class:`~gensim.models.doc2vec.Doc2Vec` + and :class:`~gensim.models.keyedvectors.KeyedVectors` classes. + """ def __init__(self, model=None, num_trees=None): + """ + Parameters + ---------- + model : :class:`~gensim.models.word2vec.Word2Vec`, :class:`~gensim.models.doc2vec.Doc2Vec` or + :class:`~gensim.models.keyedvectors.KeyedVectors`, optional + Model, that will be used as source for index. + num_trees : int, optional + Number of trees for Annoy indexer. + + Examples + -------- + >>> from gensim.similarities.index import AnnoyIndexer + >>> from gensim.models import Word2Vec + >>> + >>> sentences = [['cute', 'cat', 'say', 'meow'], ['cute', 'dog', 'say', 'woof']] + >>> model = Word2Vec(sentences, min_count=1, seed=1) + >>> + >>> indexer = AnnoyIndexer(model, 2) + >>> model.most_similar("cat", topn=2, indexer=indexer) + [('cat', 1.0), ('dog', 0.32011348009109497)] + + """ self.index = None self.labels = None self.model = model @@ -41,6 +94,20 @@ def __init__(self, model=None, num_trees=None): raise ValueError("Only a Word2Vec, Doc2Vec or KeyedVectors instance can be used") def save(self, fname, protocol=2): + """Save AnnoyIndexer instance. + + Parameters + ---------- + fname : str + Path to output file, will produce 2 files: `fname` - parameters and `fname`.d - :class:`~annoy.AnnoyIndex`. + protocol : int, optional + Protocol for pickle. + + Notes + ----- + This method save **only** index (**model isn't preserved**). + + """ fname_dict = fname + '.d' self.index.save(fname) d = {'f': self.model.vector_size, 'num_trees': self.num_trees, 'labels': self.labels} @@ -48,6 +115,31 @@ def save(self, fname, protocol=2): _pickle.dump(d, fout, protocol=protocol) def load(self, fname): + """Load AnnoyIndexer instance + + Parameters + ---------- + fname : str + Path to dump with AnnoyIndexer. + + Examples + -------- + >>> from gensim.similarities.index import AnnoyIndexer + >>> from gensim.models import Word2Vec + >>> from tempfile import mkstemp + >>> + >>> sentences = [['cute', 'cat', 'say', 'meow'], ['cute', 'dog', 'say', 'woof']] + >>> model = Word2Vec(sentences, min_count=1, seed=1, iter=10) + >>> + >>> indexer = AnnoyIndexer(model, 2) + >>> _, temp_fn = mkstemp() + >>> indexer.save(temp_fn) + >>> + >>> new_indexer = AnnoyIndexer() + >>> new_indexer.load(temp_fn) + >>> new_indexer.model = model + + """ fname_dict = fname + '.d' if not (os.path.exists(fname) and os.path.exists(fname_dict)): raise IOError( @@ -62,13 +154,13 @@ def load(self, fname): self.labels = d['labels'] def build_from_word2vec(self): - """Build an Annoy index using word vectors from a Word2Vec model""" + """Build an Annoy index using word vectors from a Word2Vec model.""" self.model.init_sims() return self._build_from_model(self.model.wv.syn0norm, self.model.wv.index2word, self.model.vector_size) def build_from_doc2vec(self): - """Build an Annoy index using document vectors from a Doc2Vec model""" + """Build an Annoy index using document vectors from a Doc2Vec model.""" docvecs = self.model.docvecs docvecs.init_sims() @@ -76,7 +168,7 @@ def build_from_doc2vec(self): return self._build_from_model(docvecs.doctag_syn0norm, labels, self.model.vector_size) def build_from_keyedvectors(self): - """Build an Annoy index using word vectors from a KeyedVectors model""" + """Build an Annoy index using word vectors from a KeyedVectors model.""" self.model.init_sims() return self._build_from_model(self.model.syn0norm, self.model.index2word, self.model.vector_size) @@ -92,7 +184,21 @@ def _build_from_model(self, vectors, labels, num_features): self.labels = labels def most_similar(self, vector, num_neighbors): - """Find the top-N most similar items""" + """Find the approximate `num_neighbors` most similar items. + + Parameters + ---------- + vector : numpy.array + Vector for word/document. + num_neighbors : int + Number of most similar items + + Returns + ------- + list of (str, float) + List of most similar items in format [(`item`, `cosine_distance`), ... ] + + """ ids, distances = self.index.get_nns_by_vector( vector, num_neighbors, include_distances=True) diff --git a/gensim/summarization/bm25.py b/gensim/summarization/bm25.py index bd4d70911a..ec484949cf 100644 --- a/gensim/summarization/bm25.py +++ b/gensim/summarization/bm25.py @@ -3,20 +3,75 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module contains function of computing rank scores for documents in +corpus and helper class `BM25` used in calculations. Original alhorithm +descibed in [1]_, also you may check Wikipedia page [2]_. + + +.. [1] Robertson, Stephen; Zaragoza, Hugo (2009). The Probabilistic Relevance Framework: BM25 and Beyond, + http://www.staff.city.ac.uk/~sb317/papers/foundations_bm25_review.pdf +.. [2] Okapi BM25 on Wikipedia, https://en.wikipedia.org/wiki/Okapi_BM25 + + + +Examples +-------- +>>> from gensim.summarization.bm25 import get_bm25_weights +>>> corpus = [ +... ["black", "cat", "white", "cat"], +... ["cat", "outer", "space"], +... ["wag", "dog"] +... ] +>>> result = get_bm25_weights(corpus) + + +Data: +----- +.. data:: PARAM_K1 - Free smoothing parameter for BM25. +.. data:: PARAM_B - Free smoothing parameter for BM25. +.. data:: EPSILON - Constant used for negative idf of document in corpus. + +""" + + import math from six import iteritems from six.moves import xrange -# BM25 parameters. PARAM_K1 = 1.5 PARAM_B = 0.75 EPSILON = 0.25 class BM25(object): + """Implementation of Best Matching 25 ranking function. + + Attributes + ---------- + corpus_size : int + Size of corpus (number of documents). + avgdl : float + Average length of document in `corpus`. + corpus : list of list of str + Corpus of documents. + f : list of dicts of int + Dictionary with terms frequencies for each document in `corpus`. Words used as keys and frequencies as values. + df : dict + Dictionary with terms frequencies for whole `corpus`. Words used as keys and frequencies as values. + idf : dict + Dictionary with inversed terms frequencies for whole `corpus`. Words used as keys and frequencies as values. + + """ def __init__(self, corpus): + """ + Parameters + ---------- + corpus : list of list of str + Given corpus. + + """ self.corpus_size = len(corpus) self.avgdl = sum(float(len(x)) for x in corpus) / self.corpus_size self.corpus = corpus @@ -26,6 +81,7 @@ def __init__(self, corpus): self.initialize() def initialize(self): + """Calculates frequencies of terms in documents and in corpus. Also computes inverse document frequencies.""" for document in self.corpus: frequencies = {} for word in document: @@ -43,6 +99,23 @@ def initialize(self): self.idf[word] = math.log(self.corpus_size - freq + 0.5) - math.log(freq + 0.5) def get_score(self, document, index, average_idf): + """Computes BM25 score of given `document` in relation to item of corpus selected by `index`. + + Parameters + ---------- + document : list of str + Document to be scored. + index : int + Index of document in corpus selected to score with `document`. + average_idf : float + Average idf in corpus. + + Returns + ------- + float + BM25 score. + + """ score = 0 for word in document: if word not in self.f[index]: @@ -53,6 +126,22 @@ def get_score(self, document, index, average_idf): return score def get_scores(self, document, average_idf): + """Computes and returns BM25 scores of given `document` in relation to + every item in corpus. + + Parameters + ---------- + document : list of str + Document to be scored. + average_idf : float + Average idf in corpus. + + Returns + ------- + list of float + BM25 scores. + + """ scores = [] for index in xrange(self.corpus_size): score = self.get_score(document, index, average_idf) @@ -61,6 +150,30 @@ def get_scores(self, document, average_idf): def get_bm25_weights(corpus): + """Returns BM25 scores (weights) of documents in corpus. + Each document has to be weighted with every document in given corpus. + + Parameters + ---------- + corpus : list of list of str + Corpus of documents. + + Returns + ------- + list of list of float + BM25 scores. + + Examples + -------- + >>> from gensim.summarization.bm25 import get_bm25_weights + >>> corpus = [ + ... ["black", "cat", "white", "cat"], + ... ["cat", "outer", "space"], + ... ["wag", "dog"] + ... ] + >>> result = get_bm25_weights(corpus) + + """ bm25 = BM25(corpus) average_idf = sum(float(val) for val in bm25.idf.values()) / len(bm25.idf) diff --git a/gensim/summarization/commons.py b/gensim/summarization/commons.py index 1c467098f9..f1a2264e46 100644 --- a/gensim/summarization/commons.py +++ b/gensim/summarization/commons.py @@ -3,10 +3,45 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module provides functions of creating graph from sequence of values and removing of unreachable nodes. + + +Examples +-------- + +Create simple graph and add edges. Let's take a look at nodes. + +>>> gg = build_graph(['Felidae', 'Lion', 'Tiger', 'Wolf']) +>>> gg.add_edge(("Felidae", "Lion")) +>>> gg.add_edge(("Felidae", "Tiger")) +>>> sorted(gg.nodes()) +['Felidae', 'Lion', 'Tiger', 'Wolf'] + +Remove nodes with no edges. + +>>> remove_unreachable_nodes(gg) +>>> sorted(gg.nodes()) +['Felidae', 'Lion', 'Tiger'] + +""" + from gensim.summarization.graph import Graph def build_graph(sequence): + """Creates and returns undirected graph with given sequence of values. + + Parameters + ---------- + sequence : list of hashable + Sequence of values. + + Returns + ------- + :class:`~gensim.summarization.graph.Graph` + Created graph. + + """ graph = Graph() for item in sequence: if not graph.has_node(item): @@ -15,6 +50,15 @@ def build_graph(sequence): def remove_unreachable_nodes(graph): + """Removes unreachable nodes (nodes with no edges), inplace. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + + """ + for node in graph.nodes(): if sum(graph.edge_weight((node, other)) for other in graph.neighbors(node)) == 0: graph.del_node(node) diff --git a/gensim/summarization/graph.py b/gensim/summarization/graph.py index c35a59a25d..79cd1a160f 100644 --- a/gensim/summarization/graph.py +++ b/gensim/summarization/graph.py @@ -3,141 +3,203 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module contains abstract class IGraph represents graphs interface and +class Graph (based on IGraph) which implements undirected graph. + +Examples +-------- + +Create simple graph with 4 nodes. + +>>> g = Graph() +>>> g.add_node('Felidae') +>>> g.add_node('Lion') +>>> g.add_node('Tiger') +>>> g.add_node('Wolf') +>>> sorted(g.nodes()) +['Felidae', 'Lion', 'Tiger', 'Wolf'] + +Add some edges and check neighbours. + +>>> g.add_edge(("Felidae", "Lion")) +>>> g.add_edge(("Felidae", "Tiger")) +>>> g.neighbors("Felidae") +['Lion', 'Tiger'] + +One node has no neighbours. + +>>> g.neighbors("Wolf") +[] + +""" + from abc import ABCMeta, abstractmethod class IGraph(object): - """ Represents the interface or contract that the graph for TextRank + """Represents the interface or contract that the graph for TextRank should implement. """ __metaclass__ = ABCMeta @abstractmethod def nodes(self): - """ - Return node list. + """Returns all nodes of graph. + + Returns + ------- + list of hashable + Nodes of graph. - @rtype: list - @return: Node list. """ pass @abstractmethod def edges(self): - """ - Return all edges in the graph. + """Returns all edges of graph. + + Returns + ------- + list of (hashable, hashable) + Edges of graph. - @rtype: list - @return: List of all edges in the graph. """ pass @abstractmethod def neighbors(self, node): - """ - Return all nodes that are directly accessible from given node. + """Return all nodes that are directly accessible from given node. + + Parameters + ---------- + node : hashable + Given node identifier. - @type node: node - @param node: Node identifier + Returns + ------- + list of hashable + Nodes directly accessible from given `node`. - @rtype: list - @return: List of nodes directly accessible from given node. """ pass @abstractmethod def has_node(self, node): - """ - Return whether the requested node exists. + """Returns whether the requested node exists. + + Parameters + ---------- + node : hashable + Given node identifier. - @type node: node - @param node: Node identifier + Returns + ------- + bool + True if `node` exists, False otherwise. - @rtype: boolean - @return: Truth-value for node existence. """ pass @abstractmethod def add_node(self, node, attrs=None): - """ - Add given node to the graph. + """Adds given node to the graph. - @attention: While nodes can be of any type, it's strongly recommended - to use only numbers and single-line strings as node identifiers if you - intend to use write(). + Note + ---- + While nodes can be of any type, it's strongly recommended to use only numbers and single-line strings + as node identifiers if you intend to use write(). - @type node: node - @param node: Node identifier. + Parameters + ---------- + node : hashable + Given node + attrs : list, optional + Node attributes specified as (attribute, value) - @type attrs: list - @param attrs: List of node attributes specified as (attribute, value) - tuples. """ pass @abstractmethod def add_edge(self, edge, wt=1, label='', attrs=None): - """ - Add an edge to the graph connecting two nodes. - - An edge, here, is a pair of nodes like C{(n, m)}. - - @type edge: tuple - @param edge: Edge. - - @type wt: number - @param wt: Edge weight. + """Adds an edge to the graph connecting two nodes. An edge, here, + is a tuple of two nodes. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + wt : float, optional + Weight of new edge. + label : str, optional + Edge label. + attrs : list, optional + Node attributes specified as (attribute, value) - @type label: string - @param label: Edge label. - - @type attrs: list - @param attrs: List of node attributes specified as (attribute, value) - tuples. """ pass @abstractmethod def has_edge(self, edge): - """ - Return whether an edge exists. + """Returns whether an edge exists. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. - @type edge: tuple - @param edge: Edge. + Returns + ------- + bool + True if `edge` exists, False otherwise. - @rtype: boolean - @return: Truth-value for edge existence. """ pass @abstractmethod def edge_weight(self, edge): - """ - Get the weight of an edge. + """Returns weigth of given edge. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. - @type edge: edge - @param edge: One edge. + Returns + ------- + float + Edge weight. - @rtype: number - @return: Edge weight. """ pass @abstractmethod def del_node(self, node): - """ - Remove a node from the graph. + """Removes node and its edges from the graph. + + Parameters + ---------- + node : hashable + Node to delete. - @type node: node - @param node: Node identifier. """ pass class Graph(IGraph): """ - Implementation of an undirected graph, based on Pygraph + Implementation of an undirected graph, based on IGraph. + + Attributes + ---------- + Graph.WEIGHT_ATTRIBUTE_NAME : str + Name of weight attribute in graph. + Graph.DEFAULT_WEIGHT : float + Weight set by default. + Graph.LABEL_ATTRIBUTE_NAME : str + Default name of attribute. Not used. + Graph.DEFAULT_LABEL : str + Label set by default. Not used. + """ WEIGHT_ATTRIBUTE_NAME = "weight" @@ -147,6 +209,8 @@ class Graph(IGraph): DEFAULT_LABEL = "" def __init__(self): + """Initializes object.""" + # Metadata about edges # Mapping: Edge -> Dict mapping, lablel-> str, wt->num self.edge_properties = {} @@ -160,19 +224,90 @@ def __init__(self): self.node_neighbors = {} def has_edge(self, edge): + """Returns whether an edge exists. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + Returns + ------- + bool + True if `edge` exists, False otherwise. + + """ u, v = edge return (u, v) in self.edge_properties and (v, u) in self.edge_properties def edge_weight(self, edge): + """Returns weight of given edge. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + Returns + ------- + float + Edge weight. + + """ return self.get_edge_properties(edge).setdefault(self.WEIGHT_ATTRIBUTE_NAME, self.DEFAULT_WEIGHT) def neighbors(self, node): + """Returns all nodes that are directly accessible from given node. + + Parameters + ---------- + node : hashable + Given node identifier. + + Returns + ------- + list of hashable + Nodes directly accessible from given `node`. + + """ return self.node_neighbors[node] def has_node(self, node): + """Returns whether the requested node exists. + + Parameters + ---------- + node : hashable + Given node. + + Returns + ------- + bool + True if `node` exists, False otherwise. + + """ return node in self.node_neighbors def add_edge(self, edge, wt=1, label='', attrs=None): + """Adds an edge to the graph connecting two nodes. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + wt : float, optional + Weight of new edge. + label : str, optional + Edge label. + attrs : list, optional + Node attributes specified as (attribute, value). + + Raises + ------ + ValueError + If `edge` already exists in graph. + + """ if attrs is None: attrs = [] u, v = edge @@ -187,6 +322,27 @@ def add_edge(self, edge, wt=1, label='', attrs=None): raise ValueError("Edge (%s, %s) already in graph" % (u, v)) def add_node(self, node, attrs=None): + """Adds given node to the graph. + + Note + ---- + While nodes can be of any type, it's strongly recommended + to use only numbers and single-line strings as node identifiers if you + intend to use write(). + + Parameters + ---------- + node : hashable + Given node. + attrs : list of (hashable, hashable), optional + Node attributes specified as (attribute, value) + + Raises + ------ + ValueError + If `node` already exists in graph. + + """ if attrs is None: attrs = [] if node not in self.node_neighbors: @@ -196,44 +352,138 @@ def add_node(self, node, attrs=None): raise ValueError("Node %s already in graph" % node) def nodes(self): + """Returns all nodes of the graph. + + Returns + ------- + list of hashable + Nodes of graph. + + """ return list(self.node_neighbors.keys()) def edges(self): + """Returns all edges of the graph. + + Returns + ------- + list of (hashable, hashable) + Edges of graph. + + """ return [a for a in self.edge_properties.keys()] def del_node(self, node): + """Removes given node and its edges from the graph. + + Parameters + ---------- + node : hashable + Given node. + + """ for each in list(self.neighbors(node)): if each != node: self.del_edge((each, node)) del self.node_neighbors[node] del self.node_attr[node] - # Helper methods def get_edge_properties(self, edge): + """Returns properties of given given edge. If edge doesn't exist + empty dictionary will be returned. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + Returns + ------- + dict + Properties of graph. + + """ return self.edge_properties.setdefault(edge, {}) def add_edge_attributes(self, edge, attrs): + """Adds attributes `attrs` to given edge, order of nodes in edge doesn't matter. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + attrs : list + Provided attributes to add. + + """ for attr in attrs: self.add_edge_attribute(edge, attr) def add_edge_attribute(self, edge, attr): + """Adds attribute `attr` to given edge, order of nodes in edge doesn't matter. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + attr : object + Provided attribute to add. + + """ self.edge_attr[edge] = self.edge_attributes(edge) + [attr] if edge[0] != edge[1]: self.edge_attr[(edge[1], edge[0])] = self.edge_attributes((edge[1], edge[0])) + [attr] def edge_attributes(self, edge): + """Returns attributes of given edge. + + Note + ---- + In case of non existing edge returns empty list. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + Returns + ------- + list + Attributes of given edge. + + """ try: return self.edge_attr[edge] except KeyError: return [] def set_edge_properties(self, edge, **properties): + """Adds `properties` to given edge, order of nodes in edge doesn't matter. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + properties : dict + Properties to add. + + """ self.edge_properties.setdefault(edge, {}).update(properties) if edge[0] != edge[1]: self.edge_properties.setdefault((edge[1], edge[0]), {}).update(properties) def del_edge(self, edge): + """Removes given edges from the graph. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + """ u, v = edge self.node_neighbors[u].remove(v) self.del_edge_labeling((u, v)) @@ -242,6 +492,14 @@ def del_edge(self, edge): self.del_edge_labeling((v, u)) def del_edge_labeling(self, edge): + """Removes attributes and properties of given edge. + + Parameters + ---------- + edge : (hashable, hashable) + Given edge. + + """ keys = [edge, edge[::-1]] for key in keys: diff --git a/gensim/summarization/keywords.py b/gensim/summarization/keywords.py index 1630c9389d..4074088a04 100644 --- a/gensim/summarization/keywords.py +++ b/gensim/summarization/keywords.py @@ -3,6 +3,35 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module contains functions to find keywords of the text and building graph on tokens from text. + +Examples +-------- +Extract keywords from text + +>>> from gensim.summarization import keywords +>>> text='''Challenges in natural language processing frequently involve +... speech recognition, natural language understanding, natural language +... generation (frequently from formal, machine-readable logical forms), +... connecting language and machine perception, dialog systems, or some +... combination thereof.''' +>>> keywords(text).split('\\n') +[u'natural language', u'machine', u'frequently'] + + +Notes +----- +Check tags in http://www.clips.ua.ac.be/pages/mbsp-tags and use only first two letters +for `INCLUDING_FILTER` and `EXCLUDING_FILTER` + +Data: +----- +.. data:: WINDOW_SIZE - Size of window, number of consecutive tokens in processing. +.. data:: INCLUDING_FILTER - Including part of speech filters. +.. data:: EXCLUDING_FILTER - Excluding part of speech filters. + +""" + from gensim.summarization.pagerank_weighted import pagerank_weighted as _pagerank from gensim.summarization.textcleaner import clean_text_by_word as _clean_text_by_word from gensim.summarization.textcleaner import tokenize_by_word as _tokenize_by_word @@ -17,20 +46,43 @@ WINDOW_SIZE = 2 -""" -Check tags in http://www.clips.ua.ac.be/pages/mbsp-tags and use only first two letters -Example: filter for nouns and adjectives: -INCLUDING_FILTER = ['NN', 'JJ'] -""" INCLUDING_FILTER = ['NN', 'JJ'] EXCLUDING_FILTER = [] def _get_pos_filters(): + """Get default including and excluding filters as frozen sets. + + Returns + ------- + (frozenset of str, frozenset of str) + Including and excluding filters. + + """ return frozenset(INCLUDING_FILTER), frozenset(EXCLUDING_FILTER) def _get_words_for_graph(tokens, pos_filter=None): + """Filters given dictionary of tokens using provided part of speech filters. + + Parameters + ---------- + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + pos_filter : iterable + Part of speech filters, optional. If `None` - using :func:`_get_pos_filters`. + + Returns + ------- + list of str + Filtered tokens. + + Raises + ------ + ValueError + If include and exclude filters ar not empty at the same time. + + """ if pos_filter is None: include_filters, exclude_filters = _get_pos_filters() else: @@ -49,10 +101,37 @@ def _get_words_for_graph(tokens, pos_filter=None): def _get_first_window(split_text): + """Get first :const:`~gensim.parsing.keywords.WINDOW_SIZE` tokens from given `split_text`. + + Parameters + ---------- + split_text : list of str + Splitted text. + + Returns + ------- + list of str + First :const:`~gensim.parsing.keywords.WINDOW_SIZE` tokens. + + """ return split_text[:WINDOW_SIZE] def _set_graph_edge(graph, tokens, word_a, word_b): + """Sets an edge between nodes named word_a and word_b if they exists in `tokens` and `graph`, inplace. + + Parameters + ---------- + graph : :class:~gensim.summarization.graph.Graph + Given graph. + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + word_a : str + First word, name of first node. + word_b : str + Second word, name of second node. + + """ if word_a in tokens and word_b in tokens: lemma_a = tokens[word_a].token lemma_b = tokens[word_b].token @@ -63,12 +142,38 @@ def _set_graph_edge(graph, tokens, word_a, word_b): def _process_first_window(graph, tokens, split_text): + """Sets an edges between nodes taken from first :const:`~gensim.parsing.keywords.WINDOW_SIZE` + words of `split_text` if they exist in `tokens` and `graph`, inplace. + + Parameters + ---------- + graph : :class:~gensim.summarization.graph.Graph + Given graph. + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + split_text : list of str + Splitted text. + + """ first_window = _get_first_window(split_text) for word_a, word_b in _combinations(first_window, 2): _set_graph_edge(graph, tokens, word_a, word_b) def _init_queue(split_text): + """Initialize queue by first words from `split_text`. + + Parameters + ---------- + split_text : list of str + Splitted text. + + Returns + ------- + Queue + Initialized queue. + + """ queue = _Queue() first_window = _get_first_window(split_text) for word in first_window[1:]: @@ -77,17 +182,56 @@ def _init_queue(split_text): def _process_word(graph, tokens, queue, word): + """Sets edge between `word` and each element in queue in `graph` if such nodes + exist in `tokens` and `graph`. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + queue : Queue + Given queue. + word : str + Word, possible `node` in graph and item in `tokens`. + + """ for word_to_compare in _queue_iterator(queue): _set_graph_edge(graph, tokens, word, word_to_compare) def _update_queue(queue, word): + """Updates given `queue` (removes last item and puts `word`). + + Parameters + ---------- + queue : Queue + Given queue. + word : str + Word to be added to queue. + + """ queue.get() queue.put(word) assert queue.qsize() == (WINDOW_SIZE - 1) def _process_text(graph, tokens, split_text): + """Process `split_text` by updating given `graph` with new eges between nodes + if they exists in `tokens` and `graph`. + Words are taken from `split_text` with window size :const:`~gensim.parsing.keywords.WINDOW_SIZE`. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + split_text : list of str + Splitted text. + + """ queue = _init_queue(split_text) for i in xrange(WINDOW_SIZE, len(split_text)): word = split_text[i] @@ -96,6 +240,19 @@ def _process_text(graph, tokens, split_text): def _queue_iterator(queue): + """Represents iterator of the given queue. + + Parameters + ---------- + queue : Queue + Given queue. + + Yields + ------ + str + Current item of queue. + + """ iterations = queue.qsize() for _ in xrange(iterations): var = queue.get() @@ -104,20 +261,63 @@ def _queue_iterator(queue): def _set_graph_edges(graph, tokens, split_text): + """Updates given `graph` by setting eges between nodes if they exists in `tokens` and `graph`. + Words are taken from `split_text` with window size :const:`~gensim.parsing.keywords.WINDOW_SIZE`. + + Parameters + ---------- + graph : :class:~gensim.summarization.graph.Graph + Given graph. + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + split_text : list of str + Splitted text. + + """ _process_first_window(graph, tokens, split_text) _process_text(graph, tokens, split_text) def _extract_tokens(lemmas, scores, ratio, words): - lemmas.sort(key=lambda s: scores[s], reverse=True) + """Extracts tokens from provided lemmas. Most scored lemmas are used if `words` not provided. + + Parameters + ---------- + lemmas : list of str + Given lemmas. + scores : dict + Dictionary with lemmas and its scores. + ratio : float + Proportion of lemmas used for final result. + words : int + Number of used words. If no "words" option is selected, the number of + sentences is reduced by the provided ratio, else, the ratio is ignored. + + Returns + ------- + list of (float, str) + Scores and corresponded lemmas. - # If no "words" option is selected, the number of sentences is - # reduced by the provided ratio, else, the ratio is ignored. + """ + lemmas.sort(key=lambda s: scores[s], reverse=True) length = len(lemmas) * ratio if words is None else words return [(scores[lemmas[i]], lemmas[i],) for i in range(int(length))] def _lemmas_to_words(tokens): + """Get words and lemmas from given tokens. Produces "reversed" `tokens`. + + Parameters + ---------- + tokens : dict + Original units (words) as keys and processed units (tokens) as values. + + Returns + ------- + dict + Lemmas as keys and lists corresponding words as values. + + """ lemma_to_word = {} for word, unit in iteritems(tokens): lemma = unit.token @@ -129,11 +329,22 @@ def _lemmas_to_words(tokens): def _get_keywords_with_score(extracted_lemmas, lemma_to_word): + """Get words of `extracted_lemmas` and its scores, words contains in `lemma_to_word`. + + Parameters + ---------- + extracted_lemmas : list of (float, str) + Given lemmas with scores + lemma_to_word : dict + Lemmas and corresponding words. + + Returns + ------- + dict + Keywords as keys and its scores as values. + """ - :param extracted_lemmas:list of tuples - :param lemma_to_word: dict of {lemma:list of words} - :return: dict of {keyword:score} - """ + keywords = {} for score, lemma in extracted_lemmas: keyword_list = lemma_to_word[lemma] @@ -143,15 +354,37 @@ def _get_keywords_with_score(extracted_lemmas, lemma_to_word): def _strip_word(word): + """Get cleaned `word`. + + Parameters + ---------- + word : str + Given word. + + Returns + ------- + str + Cleaned word. + """ stripped_word_list = list(_tokenize_by_word(word)) return stripped_word_list[0] if stripped_word_list else "" def _get_combined_keywords(_keywords, split_text): - """ - :param keywords:dict of keywords:scores - :param split_text: list of strings - :return: combined_keywords:list + """Get most scored words (`_keywords`) contained in `split_text` and it's combinations. + + Parameters + ---------- + _keywords : dict + Keywords as keys and its scores as values. + split_text : list of str + Splitted text. + + Returns + ------- + list of str + Keywords and/or its combinations. + """ result = [] _keywords = _keywords.copy() @@ -175,6 +408,21 @@ def _get_combined_keywords(_keywords, split_text): def _get_average_score(concept, _keywords): + """Get average score of words in `concept`. + + Parameters + ---------- + concept : str + Input text. + _keywords : dict + Keywords as keys and its scores as values. + + Returns + ------- + float + Average score. + + """ word_list = concept.split() word_counter = 0 total = 0 @@ -185,9 +433,29 @@ def _get_average_score(concept, _keywords): def _format_results(_keywords, combined_keywords, split, scores): - """ - :param keywords:dict of keywords:scores - :param combined_keywords:list of word/s + """Formats, sorts and returns `combined_keywords` in desired format. + + Parameters + ---------- + _keywords : dict + Keywords as keys and its scores as values. + combined_keywords : list of str + Most ranked words and/or its combinations. + split : bool + Split result if True or return string otherwise, optional. + scores : bool + Whether return `combined_keywords` with scores, optional. If True + `split` is ignored. + + Returns + ------- + result: list of (str, float) + If `scores`, keywords with scores **OR** + result: list of str + If `split`, keywords only **OR** + result: str + Keywords, joined by endl. + """ combined_keywords.sort(key=lambda w: _get_average_score(w, _keywords), reverse=True) if scores: @@ -199,6 +467,39 @@ def _format_results(_keywords, combined_keywords, split, scores): def keywords(text, ratio=0.2, words=None, split=False, scores=False, pos_filter=('NN', 'JJ'), lemmatize=False, deacc=True): + """Get most ranked words of provided text and/or its combinations. + + Parameters + ---------- + + text : str + Input text. + ratio : float, optional + If no "words" option is selected, the number of sentences is reduced by the provided ratio, + else, the ratio is ignored. + words : int, optional + Number of returned words. + split : bool, optional + Whether split keywords if True. + scores : bool, optional + Whether score of keyword. + pos_filter : tuple, optional + Part of speech filters. + lemmatize : bool, optional + If True - lemmatize words. + deacc : bool, optional + If True - remove accentuation. + + Returns + ------- + result: list of (str, float) + If `scores`, keywords with scores **OR** + result: list of str + If `split`, keywords only **OR** + result: str + Keywords, joined by endl. + + """ # Gets a dict of word -> lemma text = to_unicode(text) tokens = _clean_text_by_word(text, deacc=deacc) @@ -233,6 +534,19 @@ def keywords(text, ratio=0.2, words=None, split=False, scores=False, pos_filter= def get_graph(text): + """Creates and returns graph from given text, cleans and tokenize text before building graph. + + Parameters + ---------- + text : str + Sequence of values. + + Returns + ------- + :class:`~gensim.summarization.graph.Graph` + Created graph. + + """ tokens = _clean_text_by_word(text) split_text = list(_tokenize_by_word(text)) diff --git a/gensim/summarization/mz_entropy.py b/gensim/summarization/mz_entropy.py index b9c5c02f33..11437f5c86 100644 --- a/gensim/summarization/mz_entropy.py +++ b/gensim/summarization/mz_entropy.py @@ -11,52 +11,47 @@ def mz_keywords(text, blocksize=1024, scores=False, split=False, weighted=True, threshold=0.0): - """Extract keywords from text using the Montemurro and Zanette entropy - algorithm. [1]_ + """Extract keywords from text using the Montemurro and Zanette entropy algorithm. [1]_ Parameters ---------- text: str - document to summarize + Document for summarization. blocksize: int, optional - size of blocks to use in analysis, default is 1024 + Size of blocks to use in analysis. scores: bool, optional - Whether to return score with keywords, default is False + Whether to return score with keywords. split: bool, optional - Whether to return results as list, default is False + Whether to return results as list. weighted: bool, optional - Whether to weight scores by word frequency. Default is True. - False can useful for shorter texts, and allows automatic thresholding + Whether to weight scores by word frequency. + False can useful for shorter texts, and allows automatic thresholding. threshold: float or 'auto', optional - minimum score for returned keywords, default 0.0 - 'auto' calculates the threshold as n_blocks / (n_blocks + 1.0) + 1.0e-8 - Use 'auto' with weighted=False) + Minimum score for returned keywords, 'auto' calculates the threshold as n_blocks / (n_blocks + 1.0) + 1e-8, + use 'auto' with `weighted=False`. Returns ------- results: str - newline separated keywords if `split` == False OR + newline separated keywords if `split` == False **OR** results: list(str) - list of keywords if `scores` == False OR + list of keywords if `scores` == False **OR** results: list(tuple(str, float)) list of (keyword, score) tuples if `scores` == True Results are returned in descending order of score regardless of the format. - Notes - ----- + Note + ---- This algorithm looks for keywords that contribute to the structure of the - text on scales of blocksize words of larger. It is suitable for extracting + text on scales of `blocksize` words of larger. It is suitable for extracting keywords representing the major themes of long texts. References ---------- - [1] Marcello A Montemurro, Damian Zanette, - "Towards the quantification of the semantic information encoded in - written language" - Advances in Complex Systems, Volume 13, Issue 2 (2010), pp. 135-153 - DOI: 10.1142/S0219525910002530 - https://arxiv.org/abs/0907.1558 + .. [1] Marcello A Montemurro, Damian Zanette, "Towards the quantification of the semantic information encoded in + written language". Advances in Complex Systems, Volume 13, Issue 2 (2010), pp. 135-153, + DOI: 10.1142/S0219525910002530, https://arxiv.org/abs/0907.1558 """ text = to_unicode(text) diff --git a/gensim/summarization/pagerank_weighted.py b/gensim/summarization/pagerank_weighted.py index f5a24635a1..df1352367c 100644 --- a/gensim/summarization/pagerank_weighted.py +++ b/gensim/summarization/pagerank_weighted.py @@ -2,6 +2,36 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html + +"""This module calculate PageRank [1]_ based on wordgraph. + + +.. [1] https://en.wikipedia.org/wiki/PageRank + +Examples +-------- + +Calculate Pagerank for words + +>>> from gensim.summarization.keywords import get_graph +>>> from gensim.summarization.pagerank_weighted import pagerank_weighted +>>> graph = get_graph("The road to hell is paved with good intentions.") +>>> # result will looks like {'good': 0.70432858653171504, 'hell': 0.051128871128006126, ...} +>>> result = pagerank_weighted(graph) + +Build matrix from graph + +>>> from gensim.summarization.pagerank_weighted import build_adjacency_matrix +>>> build_adjacency_matrix(graph).todense() +matrix([[ 0., 0., 0., 0., 0.], + [ 0., 0., 1., 0., 0.], + [ 0., 1., 0., 0., 0.], + [ 0., 0., 0., 0., 0.], + [ 0., 0., 0., 0., 0.]]) + +""" + + import numpy from numpy import empty as empty_matrix from scipy.linalg import eig @@ -9,15 +39,23 @@ from scipy.sparse.linalg import eigs from six.moves import xrange -try: - from numpy import VisibleDeprecationWarning - import warnings - warnings.filterwarnings("ignore", category=VisibleDeprecationWarning) -except ImportError: - pass - def pagerank_weighted(graph, damping=0.85): + """Get dictionary of `graph` nodes and its ranks. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + damping : float + Damping parameter, optional + + Returns + ------- + dict + Nodes of `graph` as keys, its ranks as values. + + """ adjacency_matrix = build_adjacency_matrix(graph) probability_matrix = build_probability_matrix(graph) @@ -30,6 +68,19 @@ def pagerank_weighted(graph, damping=0.85): def build_adjacency_matrix(graph): + """Get matrix representation of given `graph`. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + + Returns + ------- + :class:`scipy.sparse.csr_matrix`, shape = [n, n] + Adjacency matrix of given `graph`, n is number of nodes. + + """ row = [] col = [] data = [] @@ -50,6 +101,20 @@ def build_adjacency_matrix(graph): def build_probability_matrix(graph): + """Get square matrix of shape (n, n), where n is number of nodes of the + given `graph`. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + + Returns + ------- + numpy.ndarray, shape = [n, n] + Eigenvector of matrix `a`, n is number of nodes of `graph`. + + """ dimension = len(graph.nodes()) matrix = empty_matrix((dimension, dimension)) @@ -60,6 +125,19 @@ def build_probability_matrix(graph): def principal_eigenvector(a): + """Get eigenvector of square matrix `a`. + + Parameters + ---------- + a : numpy.ndarray, shape = [n, n] + Given matrix. + + Returns + ------- + numpy.ndarray, shape = [n, ] + Eigenvector of matrix `a`. + + """ # Note that we prefer to use `eigs` even for dense matrix # because we need only one eigenvector. See #441, #438 for discussion. @@ -74,6 +152,22 @@ def principal_eigenvector(a): def process_results(graph, vec): + """Get `graph` nodes and corresponding absolute values of provided eigenvector. + This function is helper for :func:`~gensim.summarization.pagerank_weighted.pagerank_weighted` + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + vec : numpy.ndarray, shape = [n, ] + Given eigenvector, n is number of nodes of `graph`. + + Returns + ------- + dict + Graph nodes as keys, corresponding elements of eigenvector as values. + + """ scores = {} for i, node in enumerate(graph.nodes()): scores[node] = abs(vec[i]) diff --git a/gensim/summarization/summarizer.py b/gensim/summarization/summarizer.py index 1b1251b1d7..afeb359b15 100644 --- a/gensim/summarization/summarizer.py +++ b/gensim/summarization/summarizer.py @@ -3,7 +3,55 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module provides functions for summarizing texts. Summarizing is based on +ranks of text sentences using a variation of the TextRank algorithm [1]_. + +.. [1] Federico Barrios, Federico L´opez, Luis Argerich, Rosita Wachenchauzer (2016). + Variations of the Similarity Function of TextRank for Automated Summarization, + https://arxiv.org/abs/1602.03606 + + +Data +---- + +.. data:: INPUT_MIN_LENGTH - Minimal number of sentences in text +.. data:: WEIGHT_THRESHOLD - Minimal weight of edge between graph nodes. Smaller weights set to zero. + +Example +------- + +>>> from gensim.summarization.summarizer import summarize +>>> text = '''Rice Pudding - Poem by Alan Alexander Milne +... What is the matter with Mary Jane? +... She's crying with all her might and main, +... And she won't eat her dinner - rice pudding again - +... What is the matter with Mary Jane? +... What is the matter with Mary Jane? +... I've promised her dolls and a daisy-chain, +... And a book about animals - all in vain - +... What is the matter with Mary Jane? +... What is the matter with Mary Jane? +... She's perfectly well, and she hasn't a pain; +... But, look at her, now she's beginning again! - +... What is the matter with Mary Jane? +... What is the matter with Mary Jane? +... I've promised her sweets and a ride in the train, +... And I've begged her to stop for a bit and explain - +... What is the matter with Mary Jane? +... What is the matter with Mary Jane? +... She's perfectly well and she hasn't a pain, +... And it's lovely rice pudding for dinner again! +... What is the matter with Mary Jane?''' +>>> print(summarize(text)) +And she won't eat her dinner - rice pudding again - +I've promised her dolls and a daisy-chain, +I've promised her sweets and a ride in the train, +And it's lovely rice pudding for dinner again! + +""" + import logging +from gensim.utils import deprecated from gensim.summarization.pagerank_weighted import pagerank_weighted as _pagerank from gensim.summarization.textcleaner import clean_text_by_sentences as _clean_text_by_sentences from gensim.summarization.commons import build_graph as _build_graph @@ -22,6 +70,15 @@ def _set_graph_edge_weights(graph): + """Sets weights using BM25 algorithm. Leaves small weights as zeroes. If all weights are fairly small, + forces all weights to 1, inplace. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + + """ documents = graph.nodes() weights = _bm25_weights(documents) @@ -48,6 +105,14 @@ def _set_graph_edge_weights(graph): def _create_valid_graph(graph): + """Sets all weights of edges for different edges as 1, inplace. + + Parameters + ---------- + graph : :class:`~gensim.summarization.graph.Graph` + Given graph. + + """ nodes = graph.nodes() for i in xrange(len(nodes)): @@ -63,11 +128,45 @@ def _create_valid_graph(graph): graph.add_edge(edge, 1) +@deprecated("Function will be removed in 4.0.0") def _get_doc_length(doc): + """Get length of (tokenized) document. + + Parameters + ---------- + doc : list of (list of (tuple of int)) + Given document. + + Returns + ------- + int + Length of document. + + """ return sum([item[1] for item in doc]) +@deprecated("Function will be removed in 4.0.0") def _get_similarity(doc1, doc2, vec1, vec2): + """Returns similarity of two documents. + + Parameters + ---------- + doc1 : list of (list of (tuple of int)) + First document. + doc2 : list of (list of (tuple of int)) + Second document. + vec1 : array + ? of first document. + vec1 : array + ? of secont document. + + Returns + ------- + float + Similarity of two documents. + + """ numerator = vec1.dot(vec2.transpose()).toarray()[0][0] length_1 = _get_doc_length(doc1) length_2 = _get_doc_length(doc2) @@ -78,20 +177,63 @@ def _get_similarity(doc1, doc2, vec1, vec2): def _build_corpus(sentences): + """Construct corpus from provided sentences. + + Parameters + ---------- + sentences : list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Given sentences. + + Returns + ------- + list of list of (int, int) + Corpus built from sentences. + + """ split_tokens = [sentence.token.split() for sentence in sentences] dictionary = Dictionary(split_tokens) return [dictionary.doc2bow(token) for token in split_tokens] def _get_important_sentences(sentences, corpus, important_docs): + """Get most important sentences. + + Parameters + ---------- + sentences : list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Given sentences. + corpus : list of list of (int, int) + Provided corpus. + important_docs : list of list of (int, int) + Most important documents of the corpus. + + Returns + ------- + list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Most important sentences. + + """ hashable_corpus = _build_hasheable_corpus(corpus) sentences_by_corpus = dict(zip(hashable_corpus, sentences)) return [sentences_by_corpus[tuple(important_doc)] for important_doc in important_docs] def _get_sentences_with_word_count(sentences, word_count): - """ Given a list of sentences, returns a list of sentences with a - total word count similar to the word count provided.""" + """Get list of sentences. Total number of returned words close to specified `word_count`. + + Parameters + ---------- + sentences : list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Given sentences. + word_count : int or None + Number of returned words. If None full most important sentences will be returned. + + Returns + ------- + list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Most important sentences. + + """ length = 0 selected_sentences = [] @@ -111,6 +253,25 @@ def _get_sentences_with_word_count(sentences, word_count): def _extract_important_sentences(sentences, corpus, important_docs, word_count): + """Get most important sentences of the `corpus`. + + Parameters + ---------- + sentences : list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Given sentences. + corpus : list of list of (int, int) + Provided corpus. + important_docs : list of list of (int, int) + Most important docs of the corpus. + word_count : int + Number of returned words. If None full most important sentences will be returned. + + Returns + ------- + list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Most important sentences. + + """ important_sentences = _get_important_sentences(sentences, corpus, important_docs) # If no "word_count" option is provided, the number of sentences is @@ -121,29 +282,69 @@ def _extract_important_sentences(sentences, corpus, important_docs, word_count): def _format_results(extracted_sentences, split): + """Returns `extracted_sentences` in desired format. + + Parameters + ---------- + extracted_sentences : list of :class:~gensim.summarization.syntactic_unit.SyntacticUnit + Given sentences. + split : bool + If True sentences will be returned as list. Otherwise sentences will be merged and returned as string. + + Returns + ------- + list of str + If `split` **OR** + str + Formatted result. + + """ if split: return [sentence.text for sentence in extracted_sentences] return "\n".join([sentence.text for sentence in extracted_sentences]) def _build_hasheable_corpus(corpus): + """Hashes and get `corpus`. + + Parameters + ---------- + corpus : list of list of (int, int) + Given corpus. + + Returns + ------- + list of list of (int, int) + Hashable corpus. + + """ return [tuple(doc) for doc in corpus] def summarize_corpus(corpus, ratio=0.2): + """Get a list of the most important documents of a corpus using a variation of the TextRank algorithm [1]_. + Used as helper for summarize :func:`~gensim.summarization.summarizer.summarizer` + + Note + ---- + The input must have at least :const:`~gensim.summarization.summarizer.INPUT_MIN_LENGTH` documents for the summary + to make sense. + + + Parameters + ---------- + corpus : list of list of (int, int) + Given corpus. + ratio : float, optional + Number between 0 and 1 that determines the proportion of the number of + sentences of the original text to be chosen for the summary, optional. + + Returns + ------- + list of str + Most important documents of given `corpus` sorted by the document score, highest first. + """ - Returns a list of the most important documents of a corpus using a - variation of the TextRank algorithm. - The input must have at least INPUT_MIN_LENGTH (%d) documents for the - summary to make sense. - - The length of the output can be specified using the ratio parameter, - which determines how many documents will be chosen for the summary - (defaults at 20%% of the number of documents of the corpus). - - The most important documents are returned as a list sorted by the - document score, highest first. - """ % INPUT_MIN_LENGTH hashable_corpus = _build_hasheable_corpus(corpus) # If the corpus is empty, the function ends. @@ -173,29 +374,39 @@ def summarize_corpus(corpus, ratio=0.2): def summarize(text, ratio=0.2, word_count=None, split=False): - """ - Returns a summarized version of the given text using a variation of - the TextRank algorithm (see https://arxiv.org/abs/1602.03606). + """Get a summarized version of the given text. The output summary will consist of the most representative sentences and will be returned as a string, divided by newlines. - If the split parameter is set to True, a list of sentences will be - returned instead. - - The input should be a string, and must be longer than - INPUT_MIN_LENGTH sentences for the summary to make sense. The text - will be split into sentences using the split_sentences method in the - summarization.texcleaner module. - Note that newlines divide sentences. - - The length of the output can be specified using the ratio and - word_count parameters: - - ratio should be a number between 0 and 1 that determines the - percentage of the number of sentences of the original text to be - chosen for the summary (defaults at 0.2). - word_count determines how many words will the output contain. + + Note + ---- + The input should be a string, and must be longer than :const:`~gensim.summarization.summarizer.INPUT_MIN_LENGTH` + sentences for the summary to make sense. + The text will be split into sentences using the split_sentences method in the :mod:`gensim.summarization.texcleaner` + module. Note that newlines divide sentences. + + + Parameters + ---------- + text : str + Given text. + ratio : float, optional + Number between 0 and 1 that determines the proportion of the number of + sentences of the original text to be chosen for the summary. + word_count : int or None, optional + Determines how many words will the output contain. If both parameters are provided, the ratio will be ignored. + split : bool, optional + If True, list of sentences will be returned. Otherwise joined + strings will bwe returned. + + Returns + ------- + list of str + If `split` **OR** + str + Most representative sentences of given the text. """ # Gets a list of processed sentences. diff --git a/gensim/summarization/syntactic_unit.py b/gensim/summarization/syntactic_unit.py index 89842e1122..335ee6a212 100644 --- a/gensim/summarization/syntactic_unit.py +++ b/gensim/summarization/syntactic_unit.py @@ -3,13 +3,46 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module contains implementation of SyntacticUnit class. It generally used while text cleaning. +:class:`~gensim.summarization.syntactic_unit.SyntacticUnit` represents printable version of provided text. + +""" + class SyntacticUnit(object): + """SyntacticUnit class. + + Attributes + ---------- + text : str + Input text. + token : str + Tokenized text. + tag : str + Tag of unit, optional. + index : int + Index of sytactic unit in corpus, optional. + score : float + Score of synctatic unit, optional. + + """ def __init__(self, text, token=None, tag=None): + """ + + Parameters + ---------- + text : str + Input text. + token : str + Tokenized text, optional. + tag : str + Tag of unit, optional. + + """ self.text = text self.token = token - self.tag = tag[:2] if tag else None # Just first two letters of tag + self.tag = tag[:2] if tag else None # Just first two letters of tag self.index = -1 self.score = -1 diff --git a/gensim/summarization/textcleaner.py b/gensim/summarization/textcleaner.py index 4829d9f892..5af6bef257 100644 --- a/gensim/summarization/textcleaner.py +++ b/gensim/summarization/textcleaner.py @@ -3,6 +3,23 @@ # # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html +"""This module contains functions and processors used for processing text, +extracting sentences from text, working with acronyms and abbreviations. + +Data +---- + +.. data:: SEPARATOR - Special separator used in abbreviations. +.. data:: RE_SENTENCE - Pattern to split text to sentences. +.. data:: AB_SENIOR - Pattern for detecting abbreviations (example: Sgt. Pepper). +.. data:: AB_ACRONYM - Pattern for detecting acronyms. +.. data:: AB_ACRONYM_LETTERS - Pattern for detecting acronyms (example: P.S. I love you). +.. data:: UNDO_AB_SENIOR - Pattern like AB_SENIOR but with SEPARATOR between abbreviation and next word. +.. data:: UNDO_AB_ACRONYM - Pattern like AB_ACRONYM but with SEPARATOR between abbreviation and next word. + +""" + + from gensim.summarization.syntactic_unit import SyntacticUnit from gensim.parsing.preprocessing import preprocess_documents from gensim.utils import tokenize @@ -10,7 +27,7 @@ import re import logging -logger = logging.getLogger('summa.preprocessing.cleaner') +logger = logging.getLogger('summarizer.preprocessing.cleaner') try: from pattern.en import tag @@ -31,19 +48,96 @@ def split_sentences(text): + """Split and get list of sentences from given text. It preserves abbreviations set in + :const:`~gensim.summarization.textcleaner.AB_SENIOR` and :const:`~gensim.summarization.textcleaner.AB_ACRONYM`. + + Parameters + ---------- + text : str + Input text. + + Returns + ------- + list of str + Sentences of given text. + + Example + ------- + >>> from gensim.summarization.textcleaner import split_sentences + >>> text = '''Beautiful is better than ugly. + ... Explicit is better than implicit. Simple is better than complex.''' + >>> split_sentences(text) + ['Beautiful is better than ugly.', + 'Explicit is better than implicit.', + 'Simple is better than complex.'] + + """ processed = replace_abbreviations(text) return [undo_replacement(sentence) for sentence in get_sentences(processed)] def replace_abbreviations(text): + """Replace blank space to '@' separator after abbreviation and next word. + + Parameters + ---------- + text : str + Input sentence. + + Returns + ------- + str + Sentence with changed separator. + + Example + ------- + >>> replace_abbreviations("God bless you, please, Mrs. Robinson") + God bless you, please, Mrs.@Robinson + + """ return replace_with_separator(text, SEPARATOR, [AB_SENIOR, AB_ACRONYM]) def undo_replacement(sentence): + """Replace `@` separator back to blank space after each abbreviation. + + Parameters + ---------- + sentence : str + Input sentence. + + Returns + ------- + str + Sentence with changed separator. + + Example + ------- + >>> undo_replacement("God bless you, please, Mrs.@Robinson") + God bless you, please, Mrs. Robinson + + """ return replace_with_separator(sentence, r" ", [UNDO_AB_SENIOR, UNDO_AB_ACRONYM]) def replace_with_separator(text, separator, regexs): + """Get text with replaced separator if provided regular expressions were matched. + + Parameters + ---------- + text : str + Input text. + separator : str + The separator between words to be replaced. + regexs : list of `_sre.SRE_Pattern` + Regular expressions used in processing text. + + Returns + ------- + str + Text with replaced separators. + + """ replacement = r"\1" + separator + r"\2" result = text for regex in regexs: @@ -52,11 +146,51 @@ def replace_with_separator(text, separator, regexs): def get_sentences(text): + """Sentence generator from provided text. Sentence pattern set + in :const:`~gensim.summarization.textcleaner.RE_SENTENCE`. + + Parameters + ---------- + text : str + Input text. + + Yields + ------ + str + Single sentence extracted from text. + + Example + ------- + >>> text = "Does this text contains two sentences? Yes, it does." + >>> for sentence in get_sentences(text): + >>> print(sentence) + Does this text contains two sentences? + Yes, it does. + + """ for match in RE_SENTENCE.finditer(text): yield match.group() def merge_syntactic_units(original_units, filtered_units, tags=None): + """Process given sentences and its filtered (tokenized) copies into + :class:`~gensim.summarization.syntactic_unit.SyntacticUnit`. Also adds tags if they are provided to produced units. + + Parameters + ---------- + original_units : list + List of original sentences. + filtered_units : list + List of tokenized sentences. + tags : list of str, optional + List of strings used as tags for each unit. None as deafault. + + Returns + ------- + list of :class:~gensim.summarization.syntactic_unit.SyntacticUnit + List of syntactic units (sentences). + + """ units = [] for i in xrange(len(original_units)): if filtered_units[i] == '': @@ -74,12 +208,38 @@ def merge_syntactic_units(original_units, filtered_units, tags=None): def join_words(words, separator=" "): + """Concatenates `words` with `separator` between elements. + + Parameters + ---------- + words : list of str + Given words. + separator : str, optional + The separator between elements. + + Returns + ------- + str + String of merged words with separator between elements. + + """ return separator.join(words) def clean_text_by_sentences(text): - """ Tokenizes a given text into sentences, applying filters and lemmatizing them. - Returns a SyntacticUnit list. """ + """Tokenize a given text into sentences, applying filters and lemmatize them. + + Parameters + ---------- + text : str + Given text. + + Returns + ------- + list of :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` + Sentences of the given text. + + """ original_sentences = split_sentences(text) filtered_sentences = [join_words(sentence) for sentence in preprocess_documents(original_sentences)] @@ -87,8 +247,29 @@ def clean_text_by_sentences(text): def clean_text_by_word(text, deacc=True): - """ Tokenizes a given text into words, applying filters and lemmatizing them. - Returns a dict of word -> syntacticUnit. """ + """Tokenize a given text into words, applying filters and lemmatize them. + + Parameters + ---------- + text : str + Given text. + deacc : bool, optional + Remove accentuation if True. + + Returns + ------- + dict + Words as keys, :class:`~gensim.summarization.syntactic_unit.SyntacticUnit` as values. + + Example + ------- + >>> from gensim.summarization.textcleaner import clean_text_by_word + >>> clean_text_by_word("God helps those who help themselves") + {'god': Original unit: 'god' *-*-*-* Processed unit: 'god', + 'help': Original unit: 'help' *-*-*-* Processed unit: 'help', + 'helps': Original unit: 'helps' *-*-*-* Processed unit: 'help'} + + """ text_without_acronyms = replace_with_separator(text, "", [AB_ACRONYM_LETTERS]) original_words = list(tokenize(text_without_acronyms, to_lower=True, deacc=deacc)) filtered_words = [join_words(word_list, "") for word_list in preprocess_documents(original_words)] @@ -101,5 +282,30 @@ def clean_text_by_word(text, deacc=True): def tokenize_by_word(text): + """Tokenize input text. Before tokenizing transforms text to lower case and removes accentuation and acronyms set + :const:`~gensim.summarization.textcleaner.AB_ACRONYM_LETTERS`. + + Parameters + ---------- + text : str + Given text. + + Returns + ------- + generator + Generator that yields sequence words of the given text. + + Example + ------- + >>> from gensim.summarization.textcleaner import tokenize_by_word + >>> g = tokenize_by_word('Veni. Vedi. Vici.') + >>> print(next(g)) + veni + >>> print(next(g)) + vedi + >>> print(next(g)) + vici + + """ text_without_acronyms = replace_with_separator(text, "", [AB_ACRONYM_LETTERS]) return tokenize(text_without_acronyms, to_lower=True, deacc=True) diff --git a/gensim/utils.py b/gensim/utils.py index eb1cb6fff6..3f35824fed 100644 --- a/gensim/utils.py +++ b/gensim/utils.py @@ -4,9 +4,7 @@ # Copyright (C) 2010 Radim Rehurek # Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html -""" -This module contains various general utility functions. -""" +"""This module contains various general utility functions.""" from __future__ import with_statement @@ -43,50 +41,44 @@ from six import iterkeys, iteritems, u, string_types, unichr from six.moves import xrange +from smart_open import smart_open + if sys.version_info[0] >= 3: unicode = str logger = logging.getLogger(__name__) -try: - from smart_open import smart_open -except ImportError: - logger.info("smart_open library not found; falling back to local-filesystem-only") - def make_closing(base, **attrs): - """ - Add support for `with Base(attrs) as fout:` to the base class if it's missing. - The base class' `close()` method will be called on context exit, to always close the file properly. +PAT_ALPHABETIC = re.compile(r'(((?![\d])\w)+)', re.UNICODE) +RE_HTML_ENTITY = re.compile(r'&(#?)([xX]?)(\w{1,8});', re.UNICODE) - This is needed for gzip.GzipFile, bz2.BZ2File etc in older Pythons (<=2.6), which otherwise - raise "AttributeError: GzipFile instance has no attribute '__exit__'". - """ - if not hasattr(base, '__enter__'): - attrs['__enter__'] = lambda self: self - if not hasattr(base, '__exit__'): - attrs['__exit__'] = lambda self, type, value, traceback: self.close() - return type('Closing' + base.__name__, (base, object), attrs) - - def smart_open(fname, mode='rb'): - _, ext = os.path.splitext(fname) - if ext == '.bz2': - from bz2 import BZ2File - return make_closing(BZ2File)(fname, mode) - if ext == '.gz': - from gzip import GzipFile - return make_closing(GzipFile)(fname, mode) - return open(fname, mode) +def get_random_state(seed): + """Generate :class:`numpy.random.RandomState` based on input seed. + Parameters + ---------- + seed : {None, int, array_like} + Seed for random state. -PAT_ALPHABETIC = re.compile(r'(((?![\d])\w)+)', re.UNICODE) -RE_HTML_ENTITY = re.compile(r'&(#?)([xX]?)(\w{1,8});', re.UNICODE) + Returns + ------- + :class:`numpy.random.RandomState` + Random state. + Raises + ------ + AttributeError + If seed is not {None, int, array_like}. + + Notes + ----- + Method originally from [1]_ and written by @joshloyal. + + References + ---------- + .. [1] https://github.com/maciejkula/glove-python -def get_random_state(seed): - """ - Turn seed into a np.random.RandomState instance. - Method originally from maciejkula/glove-python, and written by @joshloyal. """ if seed is None or seed is np.random: return np.random.mtrand._rand @@ -98,10 +90,16 @@ def get_random_state(seed): def synchronous(tlockname): - """ - A decorator to place an instance-based lock around a method. + """A decorator to place an instance-based lock around a method. + + Notes + ----- + Adapted from [2]_ + + References + ---------- + .. [2] http://code.activestate.com/recipes/577105-synchronization-decorator-for-class-methods/ - Adapted from http://code.activestate.com/recipes/577105-synchronization-decorator-for-class-methods/ """ def _synched(func): @wraps(func) @@ -118,27 +116,18 @@ def _synchronizer(self, *args, **kwargs): return _synched -class NoCM(object): - def acquire(self): - pass - - def release(self): - pass - - def __enter__(self): - pass - - def __exit__(self, type, value, traceback): - pass - - -nocm = NoCM() +def file_or_filename(input): + """Open file with `smart_open`. + Parameters + ---------- + input : str or file-like + Filename or file-like object. -def file_or_filename(input): - """ - Return a file-like object ready to be read from the beginning. `input` is either - a filename (gz/bz2 also supported) or a file-like object supporting seek. + Returns + ------- + input : file-like object + Opened file OR seek out to 0 byte if `input` is already file-like object. """ if isinstance(input, string_types): @@ -151,11 +140,21 @@ def file_or_filename(input): def deaccent(text): - """ - Remove accentuation from the given string. Input text is either a unicode string or utf8 encoded bytestring. + """Remove accentuation from the given string. - Return input string with accents removed, as unicode. + Parameters + ---------- + text : str + Input string. + Returns + ------- + str + Unicode string without accentuation. + + Examples + -------- + >>> from gensim.utils import deaccent >>> deaccent("Šéf chomutovských komunistů dostal poštou bílý prášek") u'Sef chomutovskych komunistu dostal postou bily prasek' @@ -169,9 +168,19 @@ def deaccent(text): def copytree_hardlink(source, dest): - """ - Recursively copy a directory ala shutils.copytree, but hardlink files - instead of copying. Available on UNIX systems only. + """Recursively copy a directory ala shutils.copytree, but hardlink files instead of copying. + + Parameters + ---------- + source : str + Path to source directory + dest : str + Path to destination directory + + Warnings + -------- + Available on UNIX systems only. + """ copy2 = shutil.copy2 try: @@ -182,17 +191,35 @@ def copytree_hardlink(source, dest): def tokenize(text, lowercase=False, deacc=False, encoding='utf8', errors="strict", to_lower=False, lower=False): - """ - Iteratively yield tokens as unicode strings, removing accent marks - and optionally lowercasing the unidoce string by assigning True - to one of the parameters, lowercase, to_lower, or lower. - - Input text may be either unicode or utf8-encoded byte string. - - The tokens on output are maximal contiguous sequences of alphabetic - characters (no digits!). - - >>> list(tokenize('Nic nemůže letět rychlostí vyšší, než 300 tisíc kilometrů za sekundu!', deacc = True)) + """Iteratively yield tokens as unicode strings, removing accent marks and optionally lowercasing string + if any from `lowercase`, `to_lower`, `lower` set to True. + + Parameters + ---------- + text : str + Input string. + lowercase : bool, optional + If True - lowercase input string. + deacc : bool, optional + If True - remove accentuation from string by :func:`~gensim.utils.deaccent`. + encoding : str, optional + Encoding of input string, used as parameter for :func:`~gensim.utils.to_unicode`. + errors : str, optional + Error handling behaviour, used as parameter for :func:`~gensim.utils.to_unicode`. + to_lower : bool, optional + Same as `lowercase`. + lower : bool, optional + Same as `lowercase`. + + Yields + ------ + str + Contiguous sequences of alphabetic characters (no digits!), using :func:`~gensim.utils.simple_tokenize` + + Examples + -------- + >>> from gensim.utils import tokenize + >>> list(tokenize('Nic nemůže letět rychlostí vyšší, než 300 tisíc kilometrů za sekundu!', deacc=True)) [u'Nic', u'nemuze', u'letet', u'rychlosti', u'vyssi', u'nez', u'tisic', u'kilometru', u'za', u'sekundu'] """ @@ -206,16 +233,42 @@ def tokenize(text, lowercase=False, deacc=False, encoding='utf8', errors="strict def simple_tokenize(text): + """Tokenize input test using :const:`gensim.utils.PAT_ALPHABETIC`. + + Parameters + ---------- + text : str + Input text. + + Yields + ------ + str + Tokens from `text`. + + """ for match in PAT_ALPHABETIC.finditer(text): yield match.group() def simple_preprocess(doc, deacc=False, min_len=2, max_len=15): - """ - Convert a document into a list of tokens. - - This lowercases, tokenizes, de-accents (optional). -- the output are final - tokens = unicode strings, that won't be processed any further. + """Convert a document into a list of tokens (also with lowercase and optional de-accents), + used :func:`~gensim.utils.tokenize`. + + Parameters + ---------- + doc : str + Input document. + deacc : bool, optional + If True - remove accentuation from string by :func:`~gensim.utils.deaccent`. + min_len : int, optional + Minimal length of token in result (inclusive). + max_len : int, optional + Maximal length of token in result (inclusive). + + Returns + ------- + list of str + Tokens extracted from `doc`. """ tokens = [ @@ -226,7 +279,24 @@ def simple_preprocess(doc, deacc=False, min_len=2, max_len=15): def any2utf8(text, errors='strict', encoding='utf8'): - """Convert a string (unicode or bytestring in `encoding`), to bytestring in utf8.""" + """Convert `text` to bytestring in utf8. + + Parameters + ---------- + text : str + Input text. + errors : str, optional + Error handling behaviour, used as parameter for `unicode` function (python2 only). + encoding : str, optional + Encoding of `text` for `unicode` function (python2 only). + + Returns + ------- + str + Bytestring in utf8. + + """ + if isinstance(text, unicode): return text.encode('utf8') # do bytestring -> unicode -> utf8 full circle, to ensure valid utf8 @@ -237,7 +307,23 @@ def any2utf8(text, errors='strict', encoding='utf8'): def any2unicode(text, encoding='utf8', errors='strict'): - """Convert a string (bytestring in `encoding` or unicode), to unicode.""" + """Convert `text` to unicode. + + Parameters + ---------- + text : str + Input text. + errors : str, optional + Error handling behaviour, used as parameter for `unicode` function (python2 only). + encoding : str, optional + Encoding of `text` for `unicode` function (python2 only). + + Returns + ------- + str + Unicode version of `text`. + + """ if isinstance(text, unicode): return text return unicode(text, encoding, errors=errors) @@ -247,31 +333,59 @@ def any2unicode(text, encoding='utf8', errors='strict'): def call_on_class_only(*args, **kwargs): - """Raise exception when load methods are called on instance""" + """Helper for raise `AttributeError` if method should be called from instance. + + Parameters + ---------- + *args + Variable length argument list. + **kwargs + Arbitrary keyword arguments. + + Raises + ------ + AttributeError + If `load` method are called on instance. + + """ raise AttributeError('This method should be called on a class object.') class SaveLoad(object): - """ - Objects which inherit from this class have save/load functions, which un/pickle - them to disk. + """Class which inherit from this class have save/load functions, which un/pickle them to disk. - This uses pickle for de/serializing, so objects must not contain - unpicklable attributes, such as lambda functions etc. + Warnings + -------- + This uses pickle for de/serializing, so objects must not contain unpicklable attributes, + such as lambda functions etc. """ @classmethod def load(cls, fname, mmap=None): - """ - Load a previously saved object from file (also see `save`). - - If the object was saved with large arrays stored separately, you can load - these arrays via mmap (shared memory) using `mmap='r'`. Default: don't use - mmap, load large arrays as normal objects. - - If the file being loaded is compressed (either '.gz' or '.bz2'), then - `mmap=None` must be set. Load will raise an `IOError` if this condition - is encountered. + """Load a previously saved object (using :meth:`~gensim.utils.SaveLoad.save`) from file. + + Parameters + ---------- + fname : str + Path to file that contains needed object. + mmap : str, optional + Memory-map option. If the object was saved with large arrays stored separately, you can load these arrays + via mmap (shared memory) using `mmap='r'. + If the file being loaded is compressed (either '.gz' or '.bz2'), then `mmap=None` **must be** set. + + See Also + -------- + :meth:`~gensim.utils.SaveLoad.save` + + Returns + ------- + object + Object loaded from `fname`. + + Raises + ------ + IOError + When methods are called on instance (should be called from class). """ logger.info("loading %s object from %s", cls.__name__, fname) @@ -284,9 +398,20 @@ def load(cls, fname, mmap=None): return obj def _load_specials(self, fname, mmap, compress, subname): - """ - Loads any attributes that were stored specially, and gives the same - opportunity to recursively included SaveLoad instances. + """Loads any attributes that were stored specially, and gives the same opportunity + to recursively included :class:`~gensim.utils.SaveLoad` instances. + + Parameters + ---------- + fname : str + Path to file that contains needed object. + mmap : str + Memory-map option. + compress : bool + Set to True if file is compressed. + subname : str + ... + """ def mmap_error(obj, filename): @@ -337,14 +462,40 @@ def mmap_error(obj, filename): @staticmethod def _adapt_by_suffix(fname): - """Give appropriate compress setting and filename formula""" + """Give appropriate compress setting and filename formula. + + Parameters + ---------- + fname : str + Input filename. + + Returns + ------- + (bool, function) + First argument will be True if `fname` compressed. + + """ compress, suffix = (True, 'npz') if fname.endswith('.gz') or fname.endswith('.bz2') else (False, 'npy') return compress, lambda *args: '.'.join(args + (suffix,)) def _smart_save(self, fname, separately=None, sep_limit=10 * 1024**2, ignore=frozenset(), pickle_protocol=2): - """ - Save the object to file (also see `load`). - + """Save the object to file. + + Parameters + ---------- + fname : str + Path to file. + separately : list, optional + Iterable of attributes than need to store distinctly. + sep_limit : int, optional + Limit for separation. + ignore : frozenset, optional + Attributes that shouldn't be store. + pickle_protocol : int, optional + Protocol number for pickle. + + Notes + ----- If `separately` is None, automatically detect large numpy/scipy.sparse arrays in the object being stored, and store them into separate files. This avoids pickle memory errors and @@ -354,12 +505,9 @@ def _smart_save(self, fname, separately=None, sep_limit=10 * 1024**2, ignore=fro a list of attribute names to be stored in separate files. The automatic check is not performed in this case. - `ignore` is a set of attribute names to *not* serialize (file - handles, caches etc). On subsequent load() these attributes will - be set to None. - - `pickle_protocol` defaults to 2 so the pickled object can be imported - in both Python 2 and 3. + See Also + -------- + :meth:`~gensim.utils.SaveLoad.load` """ logger.info("saving %s object under %s, separately %s", self.__class__.__name__, fname, separately) @@ -378,13 +526,31 @@ def _smart_save(self, fname, separately=None, sep_limit=10 * 1024**2, ignore=fro logger.info("saved %s", fname) def _save_specials(self, fname, separately, sep_limit, ignore, pickle_protocol, compress, subname): - """ - Save aside any attributes that need to be handled separately, including - by recursion any attributes that are themselves SaveLoad instances. - - Returns a list of (obj, {attrib: value, ...}) settings that the caller - should use to restore each object's attributes that were set aside - during the default pickle(). + """Save aside any attributes that need to be handled separately, including + by recursion any attributes that are themselves :class:`~gensim.utils.SaveLoad` instances. + + Parameters + ---------- + fname : str + Output filename. + separately : list or None + Iterable of attributes than need to store distinctly + sep_limit : int + Limit for separation. + ignore : iterable of str + Attributes that shouldn't be store. + pickle_protocol : int + Protocol number for pickle. + compress : bool + If True - compress output with :func:`numpy.savez_compressed`. + subname : function + Produced by :meth:`~gensim.utils.SaveLoad._adapt_by_suffix` + + Returns + ------- + list of (obj, {attrib: value, ...}) + Settings that the caller should use to restore each object's attributes that were set aside + during the default :func:`~gensim.utils.pickle`. """ asides = {} @@ -463,29 +629,29 @@ def _save_specials(self, fname, separately, sep_limit, ignore, pickle_protocol, return restores + [(self, asides)] def save(self, fname_or_handle, separately=None, sep_limit=10 * 1024**2, ignore=frozenset(), pickle_protocol=2): - """ - Save the object to file (also see `load`). - - `fname_or_handle` is either a string specifying the file name to - save to, or an open file-like object which can be written to. If - the object is a file handle, no special array handling will be - performed; all attributes will be saved to the same file. - - If `separately` is None, automatically detect large - numpy/scipy.sparse arrays in the object being stored, and store - them into separate files. This avoids pickle memory errors and - allows mmap'ing large arrays back on load efficiently. - - You can also set `separately` manually, in which case it must be - a list of attribute names to be stored in separate files. The - automatic check is not performed in this case. - - `ignore` is a set of attribute names to *not* serialize (file - handles, caches etc). On subsequent load() these attributes will - be set to None. - - `pickle_protocol` defaults to 2 so the pickled object can be imported - in both Python 2 and 3. + """Save the object to file. + + Parameters + ---------- + fname_or_handle : str or file-like + Path to output file or already opened file-like object. If the object is a file handle, + no special array handling will be performed, all attributes will be saved to the same file. + separately : list of str or None, optional + If None - automatically detect large numpy/scipy.sparse arrays in the object being stored, and store + them into separate files. This avoids pickle memory errors and allows mmap'ing large arrays + back on load efficiently. + If list of str - this attributes will be stored in separate files, the automatic check + is not performed in this case. + sep_limit : int + Limit for automatic separation. + ignore : frozenset of str + Attributes that shouldn't be serialize/store. + pickle_protocol : int + Protocol number for pickle. + + See Also + -------- + :meth:`~gensim.utils.SaveLoad.load` """ try: @@ -496,15 +662,38 @@ def save(self, fname_or_handle, separately=None, sep_limit=10 * 1024**2, ignore= def identity(p): - """Identity fnc, for flows that don't accept lambda (pickling etc).""" + """Identity fnc, for flows that don't accept lambda (pickling etc). + + Parameters + ---------- + p : object + Input parameter. + + Returns + ------- + object + Same as `p`. + + """ return p def get_max_id(corpus): - """ - Return the highest feature id that appears in the corpus. + """Get the highest feature id that appears in the corpus. - For empty corpora (no features at all), return -1. + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Collection of texts in BoW format. + + Returns + ------ + int + Highest feature id. + + Notes + ----- + For empty `corpus` return -1. """ maxid = -1 @@ -514,16 +703,22 @@ def get_max_id(corpus): class FakeDict(object): - """ - Objects of this class act as dictionaries that map integer->str(integer), for - a specified range of integers <0, num_terms). + """Objects of this class act as dictionaries that map integer->str(integer), for a specified + range of integers <0, num_terms). - This is meant to avoid allocating real dictionaries when `num_terms` is huge, which - is a waste of memory. + This is meant to avoid allocating real dictionaries when `num_terms` is huge, which is a waste of memory. """ def __init__(self, num_terms): + """ + + Parameters + ---------- + num_terms : int + Number of terms. + + """ self.num_terms = num_terms def __str__(self): @@ -532,20 +727,34 @@ def __str__(self): def __getitem__(self, val): if 0 <= val < self.num_terms: return str(val) - raise ValueError("internal id out of bounds (%s, expected <0..%s))" % - (val, self.num_terms)) + raise ValueError("internal id out of bounds (%s, expected <0..%s))" % (val, self.num_terms)) def iteritems(self): + """Iterate over all keys and values. + + + Yields + ------ + (int, str) + Pair of (id, token). + + """ for i in xrange(self.num_terms): yield i, str(i) def keys(self): - """ - Override the dict.keys() function, which is used to determine the maximum - internal id of a corpus = the vocabulary dimensionality. + """Override the `dict.keys()`, which is used to determine the maximum internal id of a corpus, + i.e. the vocabulary dimensionality. - HACK: To avoid materializing the whole `range(0, self.num_terms)`, this returns - the highest id = `[self.num_terms - 1]` only. + Returns + ------- + list of int + Highest id, packed in list. + + Warnings + -------- + To avoid materializing the whole `range(0, self.num_terms)`, + this returns the highest id = `[self.num_terms - 1]` only. """ return [self.num_terms - 1] @@ -560,13 +769,24 @@ def get(self, val, default=None): def dict_from_corpus(corpus): - """ - Scan corpus for all word ids that appear in it, then construct and return a mapping - which maps each `wordId -> str(wordId)`. + """Scan corpus for all word ids that appear in it, then construct a mapping + which maps each `word_id` -> `str(word_id)`. + + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Collection of texts in BoW format. - This function is used whenever *words* need to be displayed (as opposed to just - their ids) but no wordId->word mapping was provided. The resulting mapping - only covers words actually used in the corpus, up to the highest wordId found. + Returns + ------ + id2word : :class:`~gensim.utils.FakeDict` + "Fake" mapping which maps each `word_id` -> `str(word_id)`. + + Warnings + -------- + This function is used whenever *words* need to be displayed (as opposed to just their ids) + but no `word_id` -> `word` mapping was provided. The resulting mapping only covers words actually + used in the corpus, up to the highest `word_id` found. """ num_terms = 1 + get_max_id(corpus) @@ -575,16 +795,22 @@ def dict_from_corpus(corpus): def is_corpus(obj): - """ - Check whether `obj` is a corpus. Return (is_corpus, new) 2-tuple, where - `new is obj` if `obj` was an iterable, or `new` yields the same sequence as - `obj` if it was an iterator. + """Check whether `obj` is a corpus. - `obj` is a corpus if it supports iteration over documents, where a document - is in turn anything that acts as a sequence of 2-tuples (int, float). + Parameters + ---------- + obj : object + Something `iterable of iterable` that contains (int, int). - Note: An "empty" corpus (empty input sequence) is ambiguous, so in this case the - result is forcefully defined as `is_corpus=False`. + Return + ------ + (bool, object) + Pair of (is_corpus, `obj`), is_corpus True if `obj` is corpus. + + Warnings + -------- + An "empty" corpus (empty input sequence) is ambiguous, so in this case + the result is forcefully defined as (False, `obj`). """ try: @@ -613,20 +839,25 @@ def is_corpus(obj): def get_my_ip(): - """ - Try to obtain our external ip (from the pyro nameserver's point of view) + """Try to obtain our external ip (from the Pyro4 nameserver's point of view) - This tries to sidestep the issue of bogus `/etc/hosts` entries and other - local misconfigurations, which often mess up hostname resolution. + Returns + ------- + str + IP address. + Warnings + -------- + This tries to sidestep the issue of bogus `/etc/hosts` entries and other local misconfiguration, + which often mess up hostname resolution. If all else fails, fall back to simple `socket.gethostbyname()` lookup. """ import socket try: - import Pyro4 + from Pyro4.naming import locateNS # we know the nameserver must exist, so use it as our anchor point - ns = Pyro4.naming.locateNS() + ns = locateNS() s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.connect((ns._pyroUri.host, ns._pyroUri.port)) result, port = s.getsockname() @@ -644,21 +875,29 @@ def get_my_ip(): class RepeatCorpus(SaveLoad): - """ - Used in the tutorial on distributed computing and likely not useful anywhere else. + """Wrap a `corpus` as another corpus of length `reps`. This is achieved by repeating documents from `corpus` + over and over again, until the requested length `len(result) == reps` is reached. + Repetition is done on-the-fly=efficiently, via `itertools`. + + Examples + -------- + >>> from gensim.utils import RepeatCorpus + >>> + >>> corpus = [[(1, 2)], []] # 2 documents + >>> list(RepeatCorpus(corpus, 5)) # repeat 2.5 times to get 5 documents + [[(1, 2)], [], [(1, 2)], [], [(1, 2)]] """ def __init__(self, corpus, reps): """ - Wrap a `corpus` as another corpus of length `reps`. This is achieved by - repeating documents from `corpus` over and over again, until the requested - length `len(result)==reps` is reached. Repetition is done - on-the-fly=efficiently, via `itertools`. - >>> corpus = [[(1, 0.5)], []] # 2 documents - >>> list(RepeatCorpus(corpus, 5)) # repeat 2.5 times to get 5 documents - [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)]] + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. + reps : int + Number of repeats for documents from corpus. """ self.corpus = corpus @@ -669,14 +908,28 @@ def __iter__(self): class RepeatCorpusNTimes(SaveLoad): + """Wrap a `corpus` and repeat it `n` times. + + Examples + -------- + >>> from gensim.utils import RepeatCorpusNTimes + >>> + >>> corpus = [[(1, 0.5)], []] + >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times + [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []] + + """ def __init__(self, corpus, n): """ - Repeat a `corpus` `n` times. - >>> corpus = [[(1, 0.5)], []] - >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times - [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []] + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. + n : int + Number of repeats for corpus. + """ self.corpus = corpus self.n = n @@ -688,13 +941,22 @@ def __iter__(self): class ClippedCorpus(SaveLoad): + """Wrap a `corpus` and return `max_doc` element from it""" + def __init__(self, corpus, max_docs=None): """ - Return a corpus that is the "head" of input iterable `corpus`. - Any documents after `max_docs` are ignored. This effectively limits the - length of the returned corpus to <= `max_docs`. Set `max_docs=None` for - "no limit", effectively wrapping the entire input corpus. + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. + max_docs : int + Maximal number of documents in result corpus. + + Warnings + -------- + Any documents after `max_docs` are ignored. This effectively limits the length of the returned corpus + to <= `max_docs`. Set `max_docs=None` for "no limit", effectively wrapping the entire input corpus. """ self.corpus = corpus @@ -708,19 +970,26 @@ def __len__(self): class SlicedCorpus(SaveLoad): + """Wrap `corpus` and return the slice of it""" + def __init__(self, corpus, slice_): """ - Return a corpus that is the slice of input iterable `corpus`. - Negative slicing can only be used if the corpus is indexable. - Otherwise, the corpus will be iterated over. + Parameters + ---------- + corpus : iterable of iterable of (int, int) + Input corpus. + slice_ : slice or iterable + Slice for `corpus` + Notes + ----- + Negative slicing can only be used if the corpus is indexable, otherwise, the corpus will be iterated over. Slice can also be a np.ndarray to support fancy indexing. - NOTE: calculating the size of a SlicedCorpus is expensive - when using a slice as the corpus has to be iterated over once. - Using a list or np.ndarray does not have this drawback, but - consumes more memory. + Calculating the size of a SlicedCorpus is expensive when using a slice as the corpus has + to be iterated over once. Using a list or np.ndarray does not have this drawback, but consumes more memory. + """ self.corpus = corpus self.slice_ = slice_ @@ -747,6 +1016,19 @@ def __len__(self): def safe_unichr(intval): + """ + + Parameters + ---------- + intval : int + Integer code of character + + Returns + ------- + string + Unicode string of character + + """ try: return unichr(intval) except ValueError: @@ -757,12 +1039,18 @@ def safe_unichr(intval): def decode_htmlentities(text): - """ - Decode HTML entities in text, coded as hex, decimal or named. - - Adapted - from http://github.com/sku/python-twitter-ircbot/blob/321d94e0e40d0acc92f5bf57d126b57369da70de/html_decode.py - + """Decode HTML entities in text, coded as hex, decimal or named. + This function from [3]_. + + Parameters + ---------- + text : str + Input html text. + + Examples + -------- + >>> from gensim.utils import decode_htmlentities + >>> >>> u = u'E tu vivrai nel terrore - L'aldilà (1981)' >>> print(decode_htmlentities(u).encode('UTF-8')) E tu vivrai nel terrore - L'aldilà (1981) @@ -771,6 +1059,10 @@ def decode_htmlentities(text): >>> print(decode_htmlentities("foo < bar")) foo < bar + References + ---------- + .. [3] http://github.com/sku/python-twitter-ircbot/blob/321d94e0e40d0acc92f5bf57d126b57369da70de/html_decode.py + """ def substitute_entity(match): try: @@ -798,10 +1090,25 @@ def substitute_entity(match): def chunkize_serial(iterable, chunksize, as_numpy=False): - """ - Return elements from the iterable in `chunksize`-ed lists. The last returned - element may be smaller (if length of collection is not divisible by `chunksize`). - + """Give elements from the iterable in `chunksize`-ed lists. + The last returned element may be smaller (if length of collection is not divisible by `chunksize`). + + Parameters + ---------- + iterable : iterable of object + Any iterable. + chunksize : int + Size of chunk from result. + as_numpy : bool, optional + If True - yield `np.ndarray`, otherwise - list + + Yields + ------ + list of object OR np.ndarray + Groups based on `iterable` + + Examples + -------- >>> print(list(grouper(range(10), 3))) [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] @@ -860,29 +1167,58 @@ def run(self): warnings.warn("detected Windows; aliasing chunkize to chunkize_serial") def chunkize(corpus, chunksize, maxsize=0, as_numpy=False): + """Split `corpus` into smaller chunks, used :func:`~gensim.utils.chunkize_serial`. + + Parameters + ---------- + corpus : iterable of object + Any iterable object. + chunksize : int + Size of chunk from result. + maxsize : int, optional + THIS PARAMETER IGNORED. + as_numpy : bool, optional + If True - yield `np.ndarray`, otherwise - list + + Yields + ------ + list of object OR np.ndarray + Groups based on `iterable` + + """ for chunk in chunkize_serial(corpus, chunksize, as_numpy=as_numpy): yield chunk else: def chunkize(corpus, chunksize, maxsize=0, as_numpy=False): - """ - Split a stream of values into smaller chunks. + """Split `corpus` into smaller chunks, used :func:`~gensim.utils.chunkize_serial`. + + Parameters + ---------- + corpus : iterable of object + Any iterable object. + chunksize : int + Size of chunk from result. + maxsize : int, optional + THIS PARAMETER IGNORED. + as_numpy : bool, optional + If True - yield `np.ndarray`, otherwise - list + + Notes + ----- Each chunk is of length `chunksize`, except the last one which may be smaller. - A once-only input stream (`corpus` from a generator) is ok, chunking is done - efficiently via itertools. + A once-only input stream (`corpus` from a generator) is ok, chunking is done efficiently via itertools. - If `maxsize > 1`, don't wait idly in between successive chunk `yields`, but - rather keep filling a short queue (of size at most `maxsize`) with forthcoming - chunks in advance. This is realized by starting a separate process, and is - meant to reduce I/O delays, which can be significant when `corpus` comes - from a slow medium (like harddisk). + If `maxsize > 1`, don't wait idly in between successive chunk `yields`, but rather keep filling a short queue + (of size at most `maxsize`) with forthcoming chunks in advance. This is realized by starting a separate process, + and is meant to reduce I/O delays, which can be significant when `corpus` comes from a slow medium (like HDD). - If `maxsize==0`, don't fool around with parallelism and simply yield the chunksize - via `chunkize_serial()` (no I/O optimizations). + If `maxsize == 0`, don't fool around with parallelism and simply yield the chunksize + via :func:`~gensim.utils.chunkize_serial` (no I/O optimizations). - >>> for chunk in chunkize(range(10), 4): print(chunk) - [0, 1, 2, 3] - [4, 5, 6, 7] - [8, 9] + Yields + ------ + list of object OR np.ndarray + Groups based on `iterable` """ assert chunksize > 0 @@ -903,6 +1239,21 @@ def chunkize(corpus, chunksize, maxsize=0, as_numpy=False): def smart_extension(fname, ext): + """Generate filename with `ext`. + + Parameters + ---------- + fname : str + Path to file. + ext : str + File extension. + + Returns + ------- + str + New path to file with `ext`. + + """ fname, oext = os.path.splitext(fname) if oext.endswith('.bz2'): fname = fname + oext[:-4] + ext + '.bz2' @@ -917,8 +1268,14 @@ def smart_extension(fname, ext): def pickle(obj, fname, protocol=2): """Pickle object `obj` to file `fname`. - `protocol` defaults to 2 so pickled objects are compatible across - Python 2.x and 3.x. + Parameters + ---------- + obj : object + Any python object. + fname : str + Path to pickle file. + protocol : int, optional + Pickle protocol number, default is 2 to support compatible across python 2.x and 3.x. """ with smart_open(fname, 'wb') as fout: # 'b' for binary, needed on Windows @@ -926,7 +1283,19 @@ def pickle(obj, fname, protocol=2): def unpickle(fname): - """Load pickled object from `fname`""" + """Load object from `fname`. + + Parameters + ---------- + fname : str + Path to pickle file. + + Returns + ------- + object + Python object loaded from `fname`. + + """ with smart_open(fname, 'rb') as f: # Because of loading from S3 load can't be used (missing readline in smart_open) if sys.version_info > (3, 0): @@ -936,25 +1305,109 @@ def unpickle(fname): def revdict(d): - """ - Reverse a dictionary mapping. + """Reverse a dictionary mapping, i.e. `{1: 2, 3: 4}` -> `{2: 1, 4: 3}`. + + Parameters + ---------- + d : dict + Input dictionary. + + Returns + ------- + dict + Reversed dictionary mapping. + + Notes + ----- + When two keys map to the same value, only one of them will be kept in the result (which one is kept is arbitrary). - When two keys map to the same value, only one of them will be kept in the - result (which one is kept is arbitrary). + Examples + -------- + >>> from gensim.utils import revdict + >>> d = {1: 2, 3: 4} + >>> revdict(d) + {2: 1, 4: 3} """ return {v: k for (k, v) in iteritems(dict(d))} +def deprecated(reason): + """Decorator which can be used to mark functions as deprecated. + + Parameters + ---------- + reason : str + Reason of deprecation. + + Returns + ------- + function + Decorated function + + Notes + ----- + It will result in a warning being emitted when the function is used, base code from [4]_. + + References + ---------- + .. [4] https://stackoverflow.com/a/40301488/8001386 + + """ + if isinstance(reason, string_types): + def decorator(func): + fmt = "Call to deprecated `{name}` ({reason})." + + @wraps(func) + def new_func1(*args, **kwargs): + warnings.warn( + fmt.format(name=func.__name__, reason=reason), + category=DeprecationWarning, + stacklevel=2 + ) + return func(*args, **kwargs) + + return new_func1 + return decorator + + elif inspect.isclass(reason) or inspect.isfunction(reason): + func = reason + fmt = "Call to deprecated `{name}`." + + @wraps(func) + def new_func2(*args, **kwargs): + warnings.warn( + fmt.format(name=func.__name__), + category=DeprecationWarning, + stacklevel=2 + ) + return func(*args, **kwargs) + return new_func2 + + else: + raise TypeError(repr(type(reason))) + + +@deprecated("Function will be removed in 4.0.0") def toptexts(query, texts, index, n=10): """ Debug fnc to help inspect the top `n` most similar documents (according to a similarity index `index`), to see if they are actually related to the query. - `texts` is any object that can return something insightful for each document - via `texts[docid]`, such as its fulltext or snippet. - - Return a list of 3-tuples (docid, doc's similarity to the query, texts[docid]). + Parameters + ---------- + query : list + vector OR BoW (list of tuples) + texts : str + object that can return something insightful for each document via `texts[docid]`, + such as its fulltext or snippet. + index : any + a class from gensim.similarity.docsim + + Return + ------ + list + a list of 3-tuples (docid, doc's similarity to the query, texts[docid]) """ sims = index[query] # perform a similarity query against the corpus @@ -964,18 +1417,31 @@ def toptexts(query, texts, index, n=10): def randfname(prefix='gensim'): + """Generate path with random filename/ + + Parameters + ---------- + prefix : str + Prefix of filename. + + Returns + ------- + str + Full path with random filename (in temporary folder). + + """ randpart = hex(random.randint(0, 0xffffff))[2:] return os.path.join(tempfile.gettempdir(), prefix + randpart) +@deprecated("Function will be removed in 4.0.0") def upload_chunked(server, docs, chunksize=1000, preprocess=None): - """ - Memory-friendly upload of documents to a SimServer (or Pyro SimServer proxy). - + """Memory-friendly upload of documents to a SimServer (or Pyro SimServer proxy). + Notes + ----- Use this function to train or index large collections -- avoid sending the entire corpus over the wire as a single Pyro in-memory object. The documents will be sent in smaller chunks, of `chunksize` documents each. - """ start = 0 for chunk in grouper(docs, chunksize): @@ -993,8 +1459,29 @@ def upload_chunked(server, docs, chunksize=1000, preprocess=None): def getNS(host=None, port=None, broadcast=True, hmac_key=None): - """ - Return a Pyro name server proxy. + """Get a Pyro4 name server proxy. + + Parameters + ---------- + host : str, optional + Hostname of ns. + port : int, optional + Port of ns. + broadcast : bool, optional + If True - use broadcast mechanism (i.e. all Pyro nodes in local network), not otherwise. + hmac_key : str, optional + Private key. + + Raises + ------ + RuntimeError + when Pyro name server is not found + + Returns + ------- + :class:`Pyro4.core.Proxy` + Proxy from Pyro4. + """ import Pyro4 try: @@ -1004,8 +1491,7 @@ def getNS(host=None, port=None, broadcast=True, hmac_key=None): def pyro_daemon(name, obj, random_suffix=False, ip=None, port=None, ns_conf=None): - """ - Register object with name server (starting the name server if not running + """Register object with name server (starting the name server if not running yet) and block until the daemon is terminated. The object is registered under `name`, or `name`+ some random suffix if `random_suffix` is set. @@ -1027,8 +1513,17 @@ def pyro_daemon(name, obj, random_suffix=False, ip=None, port=None, ns_conf=None def has_pattern(): - """ - Function which returns a flag indicating whether pattern is installed or not + """Check that `pattern` [5]_ package already installed. + + Returns + ------- + bool + True if `pattern` installed, False otherwise. + + References + ---------- + .. [5] https://github.com/clips/pattern + """ try: from pattern.en import parse # noqa:F401 @@ -1039,21 +1534,42 @@ def has_pattern(): def lemmatize(content, allowed_tags=re.compile(r'(NN|VB|JJ|RB)'), light=False, stopwords=frozenset(), min_length=2, max_length=15): - """ - This function is only available when the optional 'pattern' package is installed. - - Use the English lemmatizer from `pattern` to extract UTF8-encoded tokens in + """Use the English lemmatizer from `pattern` [5]_ to extract UTF8-encoded tokens in their base form=lemma, e.g. "are, is, being" -> "be" etc. This is a smarter version of stemming, taking word context into account. - Only considers nouns, verbs, adjectives and adverbs by default (=all other lemmas are discarded). + Parameters + ---------- + content : str + Input string + allowed_tags : :class:`_sre.SRE_Pattern`, optional + Compiled regexp to select POS that will be used. + Only considers nouns, verbs, adjectives and adverbs by default (=all other lemmas are discarded). + light : bool, optional + DEPRECATED FLAG, DOESN'T SUPPORT BY `pattern`. + stopwords : frozenset + Set of words that will be removed from output. + min_length : int + Minimal token length in output (inclusive). + max_length : int + Maximal token length in output (inclusive). + + Returns + ------- + list of str + List with tokens with POS tag. + + Warnings + -------- + This function is only available when the optional 'pattern' package is installed. + Examples + -------- + >>> from gensim.utils import lemmatize >>> lemmatize('Hello World! How is it going?! Nonexistentword, 21') ['world/NN', 'be/VB', 'go/VB', 'nonexistentword/NN'] - >>> lemmatize('The study ranks high.') ['study/NN', 'rank/VB', 'high/JJ'] - >>> lemmatize('The ranks study hard.') ['rank/NN', 'study/VB', 'hard/RB'] @@ -1086,10 +1602,21 @@ def lemmatize(content, allowed_tags=re.compile(r'(NN|VB|JJ|RB)'), light=False, def mock_data_row(dim=1000, prob_nnz=0.5, lam=1.0): - """ - Create a random gensim sparse vector. Each coordinate is nonzero with - probability `prob_nnz`, each non-zero coordinate value is drawn from - a Poisson distribution with parameter lambda equal to `lam`. + """Create a random gensim BoW vector. + + Parameters + ---------- + dim : int, optional + Dimension of vector. + prob_nnz : float, optional + Probability of each coordinate will be nonzero, will be drawn from Poisson distribution. + lam : float, optional + Parameter for Poisson distribution. + + Returns + ------- + list of (int, float) + Vector in BoW format. """ nnz = np.random.uniform(size=(dim,)) @@ -1097,19 +1624,46 @@ def mock_data_row(dim=1000, prob_nnz=0.5, lam=1.0): def mock_data(n_items=1000, dim=1000, prob_nnz=0.5, lam=1.0): - """ - Create a random gensim-style corpus, as a list of lists of (int, float) tuples, - to be used as a mock corpus. + """Create a random gensim-style corpus (BoW), used :func:`~gensim.utils.mock_data_row`. + + Parameters + ---------- + n_items : int + Size of corpus + dim : int + Dimension of vector, used for :func:`~gensim.utils.mock_data_row`. + prob_nnz : float, optional + Probability of each coordinate will be nonzero, will be drawn from Poisson distribution, + used for :func:`~gensim.utils.mock_data_row`. + lam : float, optional + Parameter for Poisson distribution, used for :func:`~gensim.utils.mock_data_row`. + + Returns + ------- + list of list of (int, float) + Gensim-style corpus. """ return [mock_data_row(dim=dim, prob_nnz=prob_nnz, lam=lam) for _ in xrange(n_items)] def prune_vocab(vocab, min_reduce, trim_rule=None): - """ - Remove all entries from the `vocab` dictionary with count smaller than `min_reduce`. + """Remove all entries from the `vocab` dictionary with count smaller than `min_reduce`. Modifies `vocab` in place, returns the sum of all counts that were pruned. + Parameters + ---------- + vocab : dict + Input dictionary. + min_reduce : int + Frequency threshold for tokens in `vocab`. + trim_rule : function, optional + Function for trimming entities from vocab, default behaviour is `vocab[w] <= min_reduce`. + + Returns + ------- + result : int + Sum of all counts that were pruned. """ result = 0 @@ -1126,7 +1680,19 @@ def prune_vocab(vocab, min_reduce, trim_rule=None): def qsize(queue): - """Return the (approximate) queue size where available; -1 where not (OS X).""" + """Get the (approximate) queue size where available. + + Parameters + ---------- + queue : :class:`queue.Queue` + Input queue. + + Returns + ------- + int + Queue size, -1 if `qsize` method isn't implemented (OS X). + + """ try: return queue.qsize() except NotImplementedError: @@ -1140,6 +1706,25 @@ def qsize(queue): def keep_vocab_item(word, count, min_count, trim_rule=None): + """Check that should we keep `word` in vocab or remove. + + Parameters + ---------- + word : str + Input word. + count : int + Number of times that word contains in corpus. + min_count : int + Frequency threshold for `word`. + trim_rule : function, optional + Function for trimming entities from vocab, default behaviour is `vocab[w] <= min_reduce`. + + Returns + ------- + bool + True if `word` should stay, False otherwise. + + """ default_res = count >= min_count if trim_rule is None: @@ -1155,13 +1740,27 @@ def keep_vocab_item(word, count, min_count, trim_rule=None): def check_output(stdout=subprocess.PIPE, *popenargs, **kwargs): - """ - Run command with arguments and return its output as a byte string. - Backported from Python 2.7 as it's implemented as pure python on stdlib. + r"""Run command with arguments and return its output as a byte string. + Backported from Python 2.7 as it's implemented as pure python on stdlib + small modification. + Widely used for :mod:`gensim.models.wrappers`. + + Very similar with [6]_ + + Examples + -------- + >>> from gensim.utils import check_output + >>> check_output(args=['echo', '1']) + '1\n' + + Raises + ------ + KeyboardInterrupt + If Ctrl+C pressed. + + References + ---------- + .. [6] https://docs.python.org/2/library/subprocess.html#subprocess.check_output - >>> check_output(args=['/usr/bin/python', '--version']) - Python 2.6.2 - Added extra KeyboardInterrupt handling """ try: logger.debug("COMMAND: %s %s", popenargs, kwargs) @@ -1182,19 +1781,47 @@ def check_output(stdout=subprocess.PIPE, *popenargs, **kwargs): def sample_dict(d, n=10, use_random=True): - """ - Pick `n` items from dictionary `d` and return them as a list. - The items are picked randomly if `use_random` is True, otherwise picked - according to natural dict iteration. + """Pick `n` items from dictionary `d`. + + Parameters + ---------- + d : dict + Input dictionary. + n : int, optional + Number of items that will be picked. + use_random : bool, optional + If True - pick items randomly, otherwise - according to natural dict iteration. + + Returns + ------- + list of (object, object) + Picked items from dictionary, represented as list. + """ selected_keys = random.sample(list(d), min(len(d), n)) if use_random else itertools.islice(iterkeys(d), n) return [(key, d[key]) for key in selected_keys] def strided_windows(ndarray, window_size): - """ - Produce a numpy.ndarray of windows, as from a sliding window. - + """Produce a numpy.ndarray of windows, as from a sliding window. + + Parameters + ---------- + ndarray : numpy.ndarray + Input array + window_size : int + Sliding window size. + + Returns + ------- + numpy.ndarray + Subsequences produced by sliding a window of the given size over the `ndarray`. + Since this uses striding, the individual arrays are views rather than copies of `ndarray`. + Changes to one view modifies the others and the original. + + Examples + -------- + >>> from gensim.utils import strided_windows >>> strided_windows(np.arange(5), 2) array([[0, 1], [1, 2], @@ -1208,14 +1835,6 @@ def strided_windows(ndarray, window_size): [4, 5, 6, 7, 8], [5, 6, 7, 8, 9]]) - Args: - ndarray: either a numpy.ndarray or something that can be converted into one. - window_size: sliding window size. - - Returns: - numpy.ndarray of the subsequences produced by sliding a window of the given size over - the `ndarray`. Since this uses striding, the individual arrays are views rather than - copies of `ndarray`. Changes to one view modifies the others and the original. """ ndarray = np.asarray(ndarray) if window_size == ndarray.shape[0]: @@ -1231,15 +1850,22 @@ def strided_windows(ndarray, window_size): def iter_windows(texts, window_size, copy=False, ignore_below_size=True, include_doc_num=False): """Produce a generator over the given texts using a sliding window of `window_size`. - The windows produced are views of some subsequence of a text. To use deep copies - instead, pass `copy=True`. - - Args: - texts: List of string sentences. - window_size: Size of sliding window. - copy: False to use views of the texts (default) or True to produce deep copies. - ignore_below_size: ignore documents that are not at least `window_size` in length (default behavior). - If False, the documents below `window_size` will be yielded as the full document. + The windows produced are views of some subsequence of a text. + To use deep copies instead, pass `copy=True`. + + + Parameters + ---------- + texts : list of str + List of string sentences. + window_size : int + Size of sliding window. + copy : bool, optional + If True - produce deep copies. + ignore_below_size : bool, optional + If True - ignore documents that are not at least `window_size` in length. + include_doc_num : bool, optional + If True - will be yield doc_num too. """ for doc_num, document in enumerate(texts): @@ -1263,60 +1889,38 @@ def _iter_windows(document, window_size, copy=False, ignore_below_size=True): def flatten(nested_list): """Recursively flatten out a nested list. - Args: - nested_list (list): possibly nested list. + Parameters + ---------- + nested_list : list + Possibly nested list. + + Returns + ------- + list + Flattened version of input, where any list elements have been unpacked into the top-level list + in a recursive fashion. - Returns: - list: flattened version of input, where any list elements have been unpacked into the - top-level list in a recursive fashion. """ return list(lazy_flatten(nested_list)) def lazy_flatten(nested_list): - """Lazy version of `flatten`.""" + """Lazy version of :func:`~gensim.utils.flatten`. + + Parameters + ---------- + nested_list : list + Possibly nested list. + + Yields + ------ + object + Element of list + + """ for el in nested_list: if isinstance(el, collections.Iterable) and not isinstance(el, string_types): for sub in flatten(el): yield sub else: yield el - - -def deprecated(reason): - """Decorator which can be used to mark functions as deprecated. It will result in a warning being emitted - when the function is used, base code from https://stackoverflow.com/a/40301488/8001386. - - """ - if isinstance(reason, string_types): - def decorator(func): - fmt = "Call to deprecated `{name}` ({reason})." - - @wraps(func) - def new_func1(*args, **kwargs): - warnings.warn( - fmt.format(name=func.__name__, reason=reason), - category=DeprecationWarning, - stacklevel=2 - ) - return func(*args, **kwargs) - - return new_func1 - return decorator - - elif inspect.isclass(reason) or inspect.isfunction(reason): - func = reason - fmt = "Call to deprecated `{name}`." - - @wraps(func) - def new_func2(*args, **kwargs): - warnings.warn( - fmt.format(name=func.__name__), - category=DeprecationWarning, - stacklevel=2 - ) - return func(*args, **kwargs) - return new_func2 - - else: - raise TypeError(repr(type(reason))) diff --git a/setup.cfg b/setup.cfg index 282192a170..f35f138329 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [wheelhouse_uploader] artifact_indexes= # all wheels builded in gensim-wheels repo: https://github.com/MacPython/gensim-wheels - http://b153eb958f4da6029aca-3f9dff7fe564350f10153d8c7bfc5ab6.r54.cf2.rackcdn.com/index.html + http://b153eb958f4da6029aca-3f9dff7fe564350f10153d8c7bfc5ab6.r54.cf2.rackcdn.com/ diff --git a/setup.py b/setup.py index a5d8fa6bdc..2c16ded0f7 100644 --- a/setup.py +++ b/setup.py @@ -307,7 +307,7 @@ def finalize_options(self): 'distributed': distributed_env, 'test-win': win_testenv, 'test': linux_testenv, - 'docs': linux_testenv + distributed_env + ['sphinx', 'sphinxcontrib-napoleon', 'plotly'], + 'docs': linux_testenv + distributed_env + ['sphinx', 'sphinxcontrib-napoleon', 'plotly', 'pattern'], }, include_package_data=True, diff --git a/tox.ini b/tox.ini index 229692fbee..d8cf92ed69 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ builtins = get_ipython [pytest] -addopts = -rfxEXs --durations=20 --showlocals --rerun 3 +addopts = -rfxEXs --durations=20 --showlocals --reruns 3 --reruns-delay 1 [testenv] @@ -76,14 +76,13 @@ commands = [testenv:upload-wheels] -deps = wheelhouse_uploader +deps = twine -commands = python setup.py register sdist upload +commands = twine upload dist/* [testenv:test-pypi] -deps = wheelhouse_uploader - twine +deps = twine whitelist_externals = rm commands =