Skip to content

Instantly share code, notes, and snippets.

@wakita
Last active November 11, 2024 06:09
Show Gist options
  • Save wakita/d01456f5a71f2554ce2d26fbfc04fef2 to your computer and use it in GitHub Desktop.
Save wakita/d01456f5a71f2554ce2d26fbfc04fef2 to your computer and use it in GitHub Desktop.
analyze.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/wakita/d01456f5a71f2554ce2d26fbfc04fef2/analyze.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"id": "dW5-k-vFnBeH"
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import plotly.express as px"
]
},
{
"cell_type": "code",
"source": [
"import re\n",
"\n",
"SHARED_URLS = ['https://docs.google.com/spreadsheets/d/1-XoYQ9Sg5ig7HjTjD6etH1mS8itWGLE6/edit?usp=sharing&ouid=109324711459999350423&rtpof=true&sd=true',\n",
" 'https://docs.google.com/spreadsheets/d/1yEw1mb_oEYOGrXxRPdNeMxLXOBbeaMZS/edit?usp=sharing&ouid=109324711459999350423&rtpof=true&sd=true']\n",
"\n",
"Optimal, Score = [ pd.read_excel(re.compile('/edit?.').split(url)[0] + '/export?format=xlsx') for url in SHARED_URLS]\n",
"display(Optimal, Score)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 830
},
"id": "LYg3EI7enCpr",
"outputId": "61da461f-010d-47db-9b6c-fc8eddf2dd21"
},
"execution_count": 24,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
" Greedy ε-Greedy (ε=0.01) ε-Greedy (ε=0.1) Random\n",
"0 0.108 0.108 0.096 0.092\n",
"1 0.148 0.158 0.126 0.112\n",
"2 0.184 0.196 0.154 0.086\n",
"3 0.212 0.228 0.170 0.106\n",
"4 0.226 0.244 0.202 0.092\n",
".. ... ... ... ...\n",
"995 0.360 0.620 0.814 0.076\n",
"996 0.360 0.618 0.804 0.126\n",
"997 0.360 0.618 0.802 0.100\n",
"998 0.360 0.614 0.816 0.112\n",
"999 0.360 0.610 0.800 0.068\n",
"\n",
"[1000 rows x 4 columns]"
],
"text/html": [
"\n",
" <div id=\"df-920f4151-f709-4553-a18e-7638f842b478\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Greedy</th>\n",
" <th>ε-Greedy (ε=0.01)</th>\n",
" <th>ε-Greedy (ε=0.1)</th>\n",
" <th>Random</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>0.108</td>\n",
" <td>0.108</td>\n",
" <td>0.096</td>\n",
" <td>0.092</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.148</td>\n",
" <td>0.158</td>\n",
" <td>0.126</td>\n",
" <td>0.112</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>0.184</td>\n",
" <td>0.196</td>\n",
" <td>0.154</td>\n",
" <td>0.086</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>0.212</td>\n",
" <td>0.228</td>\n",
" <td>0.170</td>\n",
" <td>0.106</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>0.226</td>\n",
" <td>0.244</td>\n",
" <td>0.202</td>\n",
" <td>0.092</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>995</th>\n",
" <td>0.360</td>\n",
" <td>0.620</td>\n",
" <td>0.814</td>\n",
" <td>0.076</td>\n",
" </tr>\n",
" <tr>\n",
" <th>996</th>\n",
" <td>0.360</td>\n",
" <td>0.618</td>\n",
" <td>0.804</td>\n",
" <td>0.126</td>\n",
" </tr>\n",
" <tr>\n",
" <th>997</th>\n",
" <td>0.360</td>\n",
" <td>0.618</td>\n",
" <td>0.802</td>\n",
" <td>0.100</td>\n",
" </tr>\n",
" <tr>\n",
" <th>998</th>\n",
" <td>0.360</td>\n",
" <td>0.614</td>\n",
" <td>0.816</td>\n",
" <td>0.112</td>\n",
" </tr>\n",
" <tr>\n",
" <th>999</th>\n",
" <td>0.360</td>\n",
" <td>0.610</td>\n",
" <td>0.800</td>\n",
" <td>0.068</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>1000 rows × 4 columns</p>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-920f4151-f709-4553-a18e-7638f842b478')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-920f4151-f709-4553-a18e-7638f842b478 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-920f4151-f709-4553-a18e-7638f842b478');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-25d454aa-98de-40f2-a178-8382bf1390ff\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-25d454aa-98de-40f2-a178-8382bf1390ff')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-25d454aa-98de-40f2-a178-8382bf1390ff button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" <div id=\"id_dc6337ae-edae-4d79-bcf5-4194b6035aff\">\n",
" <style>\n",
" .colab-df-generate {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-generate:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-generate {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-generate:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
" <button class=\"colab-df-generate\" onclick=\"generateWithVariable('Optimal')\"\n",
" title=\"Generate code using this dataframe.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <path d=\"M7,19H8.4L18.45,9,17,7.55,7,17.6ZM5,21V16.75L18.45,3.32a2,2,0,0,1,2.83,0l1.4,1.43a1.91,1.91,0,0,1,.58,1.4,1.91,1.91,0,0,1-.58,1.4L9.25,21ZM18.45,9,17,7.55Zm-12,3A5.31,5.31,0,0,0,4.9,8.1,5.31,5.31,0,0,0,1,6.5,5.31,5.31,0,0,0,4.9,4.9,5.31,5.31,0,0,0,6.5,1,5.31,5.31,0,0,0,8.1,4.9,5.31,5.31,0,0,0,12,6.5,5.46,5.46,0,0,0,6.5,12Z\"/>\n",
" </svg>\n",
" </button>\n",
" <script>\n",
" (() => {\n",
" const buttonEl =\n",
" document.querySelector('#id_dc6337ae-edae-4d79-bcf5-4194b6035aff button.colab-df-generate');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" buttonEl.onclick = () => {\n",
" google.colab.notebook.generateWithVariable('Optimal');\n",
" }\n",
" })();\n",
" </script>\n",
" </div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "dataframe",
"variable_name": "Optimal",
"summary": "{\n \"name\": \"Optimal\",\n \"rows\": 1000,\n \"fields\": [\n {\n \"column\": \"Greedy\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.016307330530439965,\n \"min\": 0.108,\n \"max\": 0.36,\n \"num_unique_values\": 34,\n \"samples\": [\n 0.324,\n 0.332,\n 0.348\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"\\u03b5-Greedy (\\u03b5=0.01)\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.07373276528570379,\n \"min\": 0.108,\n \"max\": 0.622,\n \"num_unique_values\": 145,\n \"samples\": [\n 0.474,\n 0.616,\n 0.386\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"\\u03b5-Greedy (\\u03b5=0.1)\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.11740849974261568,\n \"min\": 0.096,\n \"max\": 0.832,\n \"num_unique_values\": 211,\n \"samples\": [\n 0.372,\n 0.766,\n 0.684\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Random\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.013921006803763507,\n \"min\": 0.056,\n \"max\": 0.144,\n \"num_unique_values\": 43,\n \"samples\": [\n 0.06,\n 0.08,\n 0.124\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
" Greedy ε-Greedy (ε=0.01) ε-Greedy (ε=0.1) Random\n",
"0 0.021231 0.067631 -0.045738 0.060837\n",
"1 0.250444 0.323660 0.230938 0.076302\n",
"2 0.467238 0.466118 0.519590 0.006162\n",
"3 0.519858 0.527568 0.505870 0.046655\n",
"4 0.636244 0.595820 0.519846 -0.011775\n",
".. ... ... ... ...\n",
"995 0.979005 1.329103 1.301382 -0.037785\n",
"996 0.988799 1.321482 1.341733 0.102610\n",
"997 1.067629 1.318242 1.393244 0.044101\n",
"998 1.015660 1.278874 1.406476 -0.059169\n",
"999 1.023465 1.372427 1.369495 -0.079574\n",
"\n",
"[1000 rows x 4 columns]"
],
"text/html": [
"\n",
" <div id=\"df-c689ba53-69d0-4be8-a824-59ed9f26e646\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Greedy</th>\n",
" <th>ε-Greedy (ε=0.01)</th>\n",
" <th>ε-Greedy (ε=0.1)</th>\n",
" <th>Random</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>0.021231</td>\n",
" <td>0.067631</td>\n",
" <td>-0.045738</td>\n",
" <td>0.060837</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.250444</td>\n",
" <td>0.323660</td>\n",
" <td>0.230938</td>\n",
" <td>0.076302</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>0.467238</td>\n",
" <td>0.466118</td>\n",
" <td>0.519590</td>\n",
" <td>0.006162</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>0.519858</td>\n",
" <td>0.527568</td>\n",
" <td>0.505870</td>\n",
" <td>0.046655</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>0.636244</td>\n",
" <td>0.595820</td>\n",
" <td>0.519846</td>\n",
" <td>-0.011775</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>995</th>\n",
" <td>0.979005</td>\n",
" <td>1.329103</td>\n",
" <td>1.301382</td>\n",
" <td>-0.037785</td>\n",
" </tr>\n",
" <tr>\n",
" <th>996</th>\n",
" <td>0.988799</td>\n",
" <td>1.321482</td>\n",
" <td>1.341733</td>\n",
" <td>0.102610</td>\n",
" </tr>\n",
" <tr>\n",
" <th>997</th>\n",
" <td>1.067629</td>\n",
" <td>1.318242</td>\n",
" <td>1.393244</td>\n",
" <td>0.044101</td>\n",
" </tr>\n",
" <tr>\n",
" <th>998</th>\n",
" <td>1.015660</td>\n",
" <td>1.278874</td>\n",
" <td>1.406476</td>\n",
" <td>-0.059169</td>\n",
" </tr>\n",
" <tr>\n",
" <th>999</th>\n",
" <td>1.023465</td>\n",
" <td>1.372427</td>\n",
" <td>1.369495</td>\n",
" <td>-0.079574</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>1000 rows × 4 columns</p>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-c689ba53-69d0-4be8-a824-59ed9f26e646')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-c689ba53-69d0-4be8-a824-59ed9f26e646 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-c689ba53-69d0-4be8-a824-59ed9f26e646');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-286ddb27-4785-425c-a550-6827b9c9c6b8\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-286ddb27-4785-425c-a550-6827b9c9c6b8')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-286ddb27-4785-425c-a550-6827b9c9c6b8 button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" <div id=\"id_b7d05e87-0454-4090-9c1e-0c1404c06da3\">\n",
" <style>\n",
" .colab-df-generate {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-generate:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-generate {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-generate:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
" <button class=\"colab-df-generate\" onclick=\"generateWithVariable('Score')\"\n",
" title=\"Generate code using this dataframe.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <path d=\"M7,19H8.4L18.45,9,17,7.55,7,17.6ZM5,21V16.75L18.45,3.32a2,2,0,0,1,2.83,0l1.4,1.43a1.91,1.91,0,0,1,.58,1.4,1.91,1.91,0,0,1-.58,1.4L9.25,21ZM18.45,9,17,7.55Zm-12,3A5.31,5.31,0,0,0,4.9,8.1,5.31,5.31,0,0,0,1,6.5,5.31,5.31,0,0,0,4.9,4.9,5.31,5.31,0,0,0,6.5,1,5.31,5.31,0,0,0,8.1,4.9,5.31,5.31,0,0,0,12,6.5,5.46,5.46,0,0,0,6.5,12Z\"/>\n",
" </svg>\n",
" </button>\n",
" <script>\n",
" (() => {\n",
" const buttonEl =\n",
" document.querySelector('#id_b7d05e87-0454-4090-9c1e-0c1404c06da3 button.colab-df-generate');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" buttonEl.onclick = () => {\n",
" google.colab.notebook.generateWithVariable('Score');\n",
" }\n",
" })();\n",
" </script>\n",
" </div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "dataframe",
"variable_name": "Score",
"summary": "{\n \"name\": \"Score\",\n \"rows\": 1000,\n \"fields\": [\n {\n \"column\": \"Greedy\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.06807006866196508,\n \"min\": 0.0212305136017403,\n \"max\": 1.15579571008189,\n \"num_unique_values\": 1000,\n \"samples\": [\n 1.06975494580924,\n 1.08650327111251,\n 0.964748249871887\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"\\u03b5-Greedy (\\u03b5=0.01)\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.11987737444989936,\n \"min\": 0.0676308873776483,\n \"max\": 1.42798628846677,\n \"num_unique_values\": 1000,\n \"samples\": [\n 1.21239096536414,\n 1.27270281889939,\n 1.2929040857902\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"\\u03b5-Greedy (\\u03b5=0.1)\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.12672994391245015,\n \"min\": -0.0457383279485781,\n \"max\": 1.49702769308564,\n \"num_unique_values\": 1000,\n \"samples\": [\n 1.30588228144363,\n 1.31476371915389,\n 1.42747755532021\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Random\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.062303591664066814,\n \"min\": -0.166921614144505,\n \"max\": 0.204812142666449,\n \"num_unique_values\": 1000,\n \"samples\": [\n 0.0778737181661815,\n 0.0154042725267808,\n -0.0532084488138831\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
}
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "43aExswlnBeK",
"outputId": "b4085b0c-1cc2-46ce-bf77-98dc916071d4"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script charset=\"utf-8\" src=\"https://cdn.plot.ly/plotly-2.35.2.min.js\"></script> <div id=\"8a080e7c-3942-430a-bca6-3adcdbbc6e02\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"8a080e7c-3942-430a-bca6-3adcdbbc6e02\")) { Plotly.newPlot( \"8a080e7c-3942-430a-bca6-3adcdbbc6e02\", [{\"hovertemplate\":\"variable=Greedy\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Greedy\",\"line\":{\"color\":\"#636efa\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Greedy\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.108,0.148,0.184,0.212,0.226,0.236,0.242,0.258,0.274,0.282,0.292,0.292,0.302,0.304,0.312,0.318,0.324,0.326,0.326,0.326,0.328,0.326,0.326,0.33,0.33,0.332,0.334,0.334,0.334,0.334,0.336,0.336,0.338,0.34,0.342,0.342,0.342,0.342,0.342,0.342,0.344,0.342,0.342,0.342,0.342,0.344,0.344,0.344,0.344,0.344,0.346,0.346,0.346,0.348,0.348,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.352,0.352,0.352,0.352,0.352,0.352,0.352,0.352,0.352,0.352,0.352,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.354,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.356,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.358,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36,0.36],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=ε-Greedy (ε=0.01)\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"ε-Greedy (ε=0.01)\",\"line\":{\"color\":\"#EF553B\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"ε-Greedy (ε=0.01)\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.108,0.158,0.196,0.228,0.244,0.248,0.278,0.282,0.298,0.312,0.326,0.326,0.334,0.346,0.344,0.348,0.358,0.36,0.368,0.366,0.366,0.368,0.368,0.372,0.37,0.374,0.376,0.374,0.374,0.378,0.382,0.378,0.38,0.38,0.384,0.38,0.38,0.386,0.38,0.386,0.384,0.376,0.384,0.38,0.38,0.382,0.382,0.388,0.388,0.39,0.392,0.384,0.388,0.386,0.392,0.392,0.39,0.392,0.384,0.388,0.394,0.398,0.402,0.4,0.402,0.404,0.402,0.4,0.408,0.402,0.406,0.398,0.406,0.408,0.4,0.404,0.404,0.402,0.404,0.404,0.41,0.402,0.402,0.408,0.398,0.406,0.408,0.412,0.408,0.412,0.412,0.412,0.414,0.41,0.406,0.408,0.412,0.404,0.408,0.406,0.408,0.408,0.408,0.41,0.422,0.414,0.416,0.412,0.418,0.414,0.418,0.418,0.416,0.416,0.414,0.416,0.416,0.422,0.42,0.424,0.418,0.416,0.422,0.418,0.418,0.424,0.424,0.422,0.418,0.422,0.422,0.418,0.42,0.424,0.422,0.426,0.424,0.432,0.426,0.43,0.428,0.426,0.43,0.428,0.428,0.428,0.43,0.43,0.426,0.43,0.422,0.428,0.426,0.43,0.432,0.428,0.43,0.432,0.432,0.436,0.436,0.436,0.428,0.434,0.434,0.436,0.436,0.434,0.43,0.434,0.436,0.44,0.436,0.436,0.436,0.44,0.44,0.438,0.434,0.436,0.436,0.44,0.436,0.438,0.442,0.438,0.442,0.436,0.438,0.438,0.442,0.438,0.438,0.438,0.442,0.442,0.438,0.438,0.448,0.446,0.444,0.446,0.45,0.45,0.446,0.45,0.448,0.446,0.45,0.454,0.45,0.456,0.452,0.446,0.448,0.452,0.448,0.45,0.446,0.45,0.452,0.45,0.454,0.452,0.452,0.458,0.45,0.448,0.45,0.45,0.452,0.454,0.458,0.458,0.454,0.454,0.454,0.452,0.454,0.456,0.452,0.452,0.454,0.452,0.452,0.454,0.452,0.45,0.456,0.456,0.458,0.462,0.456,0.458,0.46,0.454,0.46,0.45,0.452,0.454,0.45,0.454,0.458,0.458,0.46,0.46,0.464,0.462,0.462,0.462,0.462,0.462,0.456,0.458,0.464,0.46,0.462,0.464,0.458,0.462,0.464,0.466,0.466,0.468,0.462,0.468,0.462,0.468,0.464,0.456,0.47,0.464,0.464,0.466,0.468,0.468,0.468,0.468,0.466,0.468,0.464,0.464,0.464,0.462,0.456,0.466,0.466,0.466,0.474,0.472,0.466,0.468,0.476,0.472,0.474,0.474,0.466,0.476,0.474,0.468,0.472,0.47,0.472,0.476,0.476,0.472,0.476,0.474,0.478,0.476,0.48,0.478,0.474,0.47,0.474,0.476,0.476,0.472,0.476,0.476,0.482,0.476,0.476,0.476,0.476,0.482,0.48,0.484,0.484,0.482,0.48,0.48,0.478,0.484,0.484,0.482,0.476,0.482,0.482,0.482,0.488,0.486,0.488,0.486,0.49,0.488,0.48,0.486,0.486,0.484,0.482,0.488,0.488,0.492,0.492,0.484,0.49,0.492,0.484,0.49,0.494,0.494,0.496,0.494,0.494,0.498,0.498,0.494,0.488,0.494,0.488,0.494,0.492,0.486,0.494,0.492,0.496,0.492,0.492,0.498,0.492,0.498,0.494,0.49,0.494,0.49,0.49,0.492,0.488,0.488,0.492,0.494,0.494,0.494,0.494,0.496,0.488,0.494,0.492,0.496,0.492,0.494,0.496,0.49,0.488,0.498,0.498,0.496,0.488,0.49,0.492,0.492,0.498,0.492,0.498,0.498,0.496,0.498,0.5,0.498,0.504,0.498,0.502,0.5,0.504,0.5,0.506,0.498,0.5,0.5,0.504,0.504,0.508,0.498,0.508,0.508,0.51,0.506,0.512,0.504,0.506,0.51,0.508,0.504,0.51,0.506,0.51,0.502,0.512,0.502,0.504,0.506,0.506,0.502,0.512,0.504,0.502,0.51,0.506,0.508,0.508,0.514,0.508,0.514,0.512,0.512,0.512,0.506,0.506,0.51,0.508,0.502,0.51,0.508,0.508,0.51,0.512,0.51,0.514,0.514,0.506,0.516,0.516,0.514,0.51,0.514,0.506,0.514,0.516,0.518,0.512,0.512,0.514,0.512,0.516,0.516,0.516,0.514,0.518,0.522,0.522,0.516,0.518,0.518,0.514,0.522,0.52,0.52,0.516,0.516,0.522,0.518,0.52,0.524,0.516,0.518,0.526,0.522,0.526,0.526,0.522,0.524,0.518,0.526,0.52,0.524,0.524,0.52,0.524,0.524,0.526,0.524,0.53,0.534,0.526,0.528,0.526,0.528,0.53,0.53,0.528,0.528,0.53,0.532,0.526,0.534,0.534,0.524,0.53,0.532,0.53,0.534,0.53,0.534,0.53,0.532,0.532,0.534,0.526,0.53,0.528,0.53,0.534,0.528,0.53,0.528,0.532,0.534,0.536,0.532,0.53,0.536,0.536,0.532,0.534,0.532,0.534,0.532,0.534,0.536,0.54,0.53,0.536,0.536,0.534,0.536,0.54,0.538,0.538,0.534,0.544,0.542,0.542,0.536,0.534,0.542,0.544,0.542,0.548,0.542,0.546,0.546,0.546,0.542,0.542,0.55,0.552,0.55,0.536,0.548,0.55,0.544,0.552,0.544,0.55,0.542,0.546,0.548,0.546,0.54,0.546,0.548,0.54,0.546,0.548,0.55,0.55,0.55,0.55,0.548,0.558,0.55,0.56,0.556,0.554,0.554,0.558,0.558,0.562,0.556,0.56,0.558,0.558,0.564,0.558,0.562,0.558,0.56,0.556,0.56,0.552,0.554,0.56,0.556,0.556,0.556,0.56,0.56,0.56,0.556,0.556,0.558,0.56,0.55,0.548,0.558,0.552,0.556,0.558,0.56,0.56,0.558,0.56,0.562,0.558,0.556,0.56,0.558,0.564,0.558,0.562,0.564,0.564,0.566,0.564,0.564,0.566,0.566,0.562,0.56,0.56,0.552,0.566,0.564,0.558,0.566,0.564,0.568,0.562,0.564,0.568,0.572,0.57,0.572,0.562,0.568,0.56,0.564,0.57,0.572,0.568,0.568,0.57,0.568,0.57,0.566,0.57,0.562,0.574,0.566,0.57,0.568,0.572,0.572,0.572,0.564,0.57,0.572,0.564,0.566,0.574,0.574,0.57,0.57,0.57,0.57,0.576,0.57,0.558,0.574,0.572,0.58,0.574,0.58,0.572,0.564,0.576,0.574,0.572,0.568,0.572,0.58,0.574,0.578,0.58,0.58,0.574,0.576,0.58,0.578,0.574,0.57,0.574,0.578,0.578,0.578,0.578,0.58,0.582,0.58,0.566,0.576,0.578,0.576,0.576,0.582,0.58,0.58,0.574,0.584,0.576,0.582,0.58,0.58,0.582,0.576,0.574,0.578,0.582,0.576,0.576,0.578,0.582,0.576,0.58,0.576,0.58,0.584,0.58,0.584,0.584,0.584,0.586,0.588,0.578,0.58,0.584,0.582,0.58,0.584,0.584,0.584,0.584,0.584,0.586,0.586,0.588,0.582,0.588,0.588,0.582,0.586,0.59,0.586,0.58,0.584,0.586,0.58,0.58,0.584,0.584,0.592,0.578,0.59,0.59,0.582,0.588,0.594,0.584,0.59,0.578,0.592,0.59,0.592,0.588,0.594,0.594,0.59,0.598,0.594,0.596,0.596,0.596,0.592,0.592,0.592,0.594,0.6,0.602,0.604,0.602,0.608,0.602,0.606,0.608,0.608,0.608,0.608,0.608,0.606,0.602,0.608,0.606,0.6,0.608,0.596,0.6,0.6,0.606,0.602,0.608,0.606,0.606,0.592,0.604,0.602,0.604,0.606,0.598,0.608,0.602,0.598,0.602,0.598,0.598,0.596,0.6,0.606,0.602,0.602,0.608,0.604,0.602,0.602,0.606,0.606,0.61,0.6,0.602,0.606,0.608,0.602,0.604,0.608,0.606,0.608,0.604,0.608,0.606,0.604,0.61,0.61,0.608,0.606,0.606,0.608,0.61,0.61,0.608,0.608,0.608,0.604,0.61,0.612,0.616,0.61,0.61,0.61,0.612,0.608,0.608,0.602,0.614,0.616,0.614,0.614,0.618,0.614,0.608,0.61,0.612,0.612,0.614,0.614,0.614,0.616,0.622,0.62,0.616,0.614,0.618,0.622,0.612,0.618,0.618,0.612,0.604,0.614,0.616,0.62,0.618,0.614,0.618,0.62,0.618,0.62,0.618,0.618,0.614,0.61],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=ε-Greedy (ε=0.1)\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"ε-Greedy (ε=0.1)\",\"line\":{\"color\":\"#00cc96\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"ε-Greedy (ε=0.1)\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.096,0.126,0.154,0.17,0.202,0.226,0.236,0.254,0.256,0.262,0.276,0.296,0.3,0.294,0.308,0.324,0.326,0.334,0.322,0.348,0.36,0.362,0.344,0.364,0.358,0.36,0.378,0.382,0.374,0.37,0.38,0.372,0.386,0.394,0.394,0.404,0.414,0.416,0.416,0.408,0.434,0.422,0.444,0.398,0.416,0.456,0.438,0.436,0.422,0.442,0.43,0.45,0.44,0.454,0.454,0.45,0.46,0.464,0.458,0.434,0.462,0.452,0.466,0.472,0.474,0.458,0.49,0.486,0.482,0.478,0.49,0.49,0.482,0.506,0.506,0.51,0.51,0.522,0.52,0.528,0.516,0.514,0.52,0.528,0.53,0.524,0.536,0.522,0.55,0.548,0.524,0.532,0.564,0.568,0.54,0.544,0.546,0.562,0.562,0.564,0.556,0.584,0.588,0.574,0.574,0.58,0.57,0.568,0.57,0.576,0.554,0.562,0.568,0.568,0.57,0.57,0.576,0.584,0.588,0.58,0.576,0.578,0.59,0.57,0.578,0.58,0.576,0.584,0.586,0.598,0.6,0.602,0.596,0.584,0.61,0.562,0.574,0.582,0.598,0.608,0.58,0.608,0.594,0.606,0.598,0.608,0.602,0.59,0.606,0.61,0.594,0.594,0.592,0.608,0.612,0.618,0.626,0.606,0.608,0.628,0.616,0.598,0.63,0.626,0.596,0.638,0.626,0.61,0.616,0.598,0.612,0.602,0.614,0.614,0.636,0.63,0.624,0.638,0.626,0.626,0.634,0.632,0.62,0.614,0.656,0.64,0.638,0.628,0.642,0.622,0.624,0.642,0.64,0.64,0.624,0.642,0.642,0.628,0.636,0.622,0.638,0.652,0.646,0.658,0.646,0.65,0.65,0.646,0.636,0.646,0.622,0.63,0.654,0.636,0.644,0.652,0.648,0.64,0.676,0.656,0.644,0.654,0.636,0.63,0.654,0.642,0.638,0.65,0.648,0.644,0.668,0.658,0.664,0.654,0.636,0.666,0.638,0.65,0.648,0.66,0.658,0.656,0.67,0.672,0.666,0.66,0.668,0.66,0.66,0.664,0.674,0.662,0.668,0.67,0.66,0.666,0.648,0.678,0.656,0.678,0.674,0.676,0.656,0.67,0.664,0.644,0.682,0.66,0.664,0.674,0.668,0.678,0.682,0.704,0.646,0.688,0.68,0.668,0.68,0.674,0.676,0.67,0.67,0.692,0.672,0.678,0.68,0.684,0.688,0.672,0.668,0.696,0.68,0.664,0.69,0.69,0.702,0.704,0.672,0.682,0.678,0.682,0.668,0.682,0.674,0.714,0.674,0.692,0.694,0.702,0.69,0.69,0.686,0.666,0.684,0.69,0.678,0.662,0.698,0.694,0.686,0.708,0.688,0.692,0.69,0.702,0.686,0.696,0.694,0.688,0.69,0.69,0.706,0.69,0.704,0.696,0.698,0.678,0.724,0.672,0.696,0.696,0.696,0.696,0.682,0.678,0.692,0.688,0.676,0.698,0.688,0.716,0.688,0.7,0.706,0.686,0.698,0.704,0.69,0.716,0.692,0.708,0.718,0.692,0.698,0.7,0.682,0.726,0.684,0.7,0.716,0.716,0.696,0.704,0.708,0.716,0.726,0.714,0.718,0.716,0.706,0.732,0.7,0.722,0.702,0.708,0.704,0.698,0.692,0.71,0.7,0.714,0.698,0.68,0.698,0.708,0.718,0.704,0.722,0.72,0.72,0.706,0.732,0.704,0.736,0.716,0.752,0.706,0.716,0.724,0.722,0.74,0.73,0.718,0.706,0.73,0.744,0.724,0.708,0.74,0.7,0.706,0.74,0.7,0.72,0.73,0.718,0.724,0.714,0.736,0.746,0.714,0.746,0.718,0.74,0.726,0.752,0.72,0.742,0.724,0.716,0.73,0.73,0.732,0.74,0.75,0.722,0.738,0.746,0.722,0.708,0.712,0.752,0.732,0.724,0.748,0.744,0.738,0.734,0.744,0.748,0.752,0.748,0.74,0.716,0.736,0.738,0.74,0.752,0.756,0.728,0.766,0.744,0.74,0.756,0.748,0.738,0.74,0.758,0.74,0.756,0.734,0.756,0.744,0.738,0.718,0.742,0.744,0.744,0.754,0.742,0.73,0.728,0.734,0.754,0.736,0.724,0.742,0.732,0.742,0.742,0.76,0.734,0.73,0.754,0.75,0.728,0.746,0.762,0.752,0.752,0.754,0.752,0.736,0.752,0.744,0.744,0.752,0.746,0.754,0.754,0.75,0.782,0.766,0.768,0.744,0.74,0.764,0.738,0.734,0.738,0.724,0.752,0.762,0.776,0.744,0.764,0.762,0.744,0.748,0.748,0.77,0.796,0.78,0.752,0.762,0.77,0.742,0.756,0.766,0.762,0.766,0.746,0.758,0.752,0.772,0.748,0.752,0.748,0.736,0.748,0.752,0.766,0.746,0.78,0.784,0.756,0.76,0.76,0.772,0.762,0.766,0.778,0.784,0.776,0.764,0.77,0.782,0.758,0.774,0.774,0.772,0.762,0.772,0.762,0.77,0.758,0.77,0.762,0.77,0.746,0.754,0.746,0.758,0.77,0.762,0.768,0.746,0.782,0.734,0.778,0.772,0.786,0.768,0.768,0.772,0.762,0.76,0.738,0.776,0.772,0.748,0.768,0.76,0.758,0.762,0.76,0.766,0.778,0.754,0.746,0.778,0.792,0.788,0.756,0.76,0.772,0.774,0.774,0.774,0.754,0.782,0.756,0.774,0.758,0.774,0.764,0.762,0.78,0.79,0.766,0.772,0.77,0.77,0.772,0.76,0.776,0.766,0.748,0.766,0.768,0.762,0.766,0.756,0.754,0.766,0.782,0.774,0.776,0.752,0.792,0.776,0.752,0.786,0.758,0.766,0.784,0.764,0.788,0.764,0.756,0.772,0.762,0.786,0.784,0.776,0.784,0.76,0.778,0.784,0.776,0.768,0.756,0.776,0.78,0.766,0.77,0.786,0.79,0.788,0.764,0.792,0.788,0.77,0.764,0.786,0.77,0.774,0.798,0.77,0.762,0.766,0.766,0.792,0.79,0.766,0.758,0.784,0.76,0.782,0.762,0.762,0.774,0.776,0.794,0.776,0.766,0.756,0.79,0.78,0.794,0.772,0.752,0.768,0.772,0.76,0.774,0.758,0.762,0.776,0.774,0.778,0.774,0.788,0.776,0.768,0.786,0.772,0.788,0.786,0.772,0.782,0.78,0.78,0.794,0.78,0.792,0.786,0.776,0.778,0.776,0.784,0.786,0.788,0.804,0.796,0.792,0.772,0.778,0.804,0.746,0.76,0.756,0.794,0.79,0.78,0.788,0.77,0.79,0.796,0.784,0.788,0.774,0.772,0.772,0.81,0.786,0.78,0.78,0.766,0.796,0.786,0.768,0.792,0.784,0.758,0.772,0.798,0.788,0.804,0.79,0.782,0.776,0.776,0.784,0.804,0.792,0.794,0.788,0.782,0.8,0.8,0.8,0.796,0.804,0.802,0.792,0.786,0.81,0.802,0.788,0.784,0.78,0.782,0.772,0.796,0.77,0.776,0.786,0.806,0.788,0.764,0.794,0.804,0.79,0.798,0.814,0.782,0.826,0.774,0.804,0.814,0.8,0.784,0.776,0.8,0.786,0.8,0.808,0.792,0.784,0.79,0.81,0.77,0.812,0.788,0.808,0.784,0.804,0.8,0.802,0.782,0.802,0.798,0.796,0.828,0.79,0.804,0.796,0.796,0.798,0.814,0.802,0.79,0.796,0.784,0.82,0.798,0.82,0.784,0.818,0.81,0.802,0.782,0.8,0.81,0.8,0.788,0.802,0.808,0.788,0.796,0.794,0.8,0.804,0.792,0.808,0.808,0.794,0.776,0.796,0.804,0.802,0.794,0.786,0.766,0.806,0.808,0.804,0.786,0.818,0.808,0.792,0.804,0.794,0.812,0.788,0.806,0.808,0.798,0.828,0.814,0.822,0.81,0.784,0.8,0.826,0.822,0.818,0.822,0.8,0.782,0.794,0.816,0.806,0.832,0.82,0.816,0.776,0.816,0.806,0.806,0.806,0.818,0.814,0.818,0.806,0.794,0.804,0.8,0.8,0.792,0.796,0.79,0.818,0.824,0.804,0.8,0.808,0.806,0.808,0.79,0.81,0.802,0.796,0.804,0.812,0.806,0.794,0.81,0.796,0.824,0.788,0.818,0.808,0.808,0.798,0.824,0.812,0.8,0.822,0.796,0.806,0.812,0.808,0.8,0.804,0.808,0.81,0.804,0.816,0.796,0.812,0.812,0.818,0.802,0.786,0.802,0.816,0.82,0.79,0.804,0.812,0.814,0.814,0.814,0.804,0.802,0.816,0.8],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=Random\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Random\",\"line\":{\"color\":\"#ab63fa\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Random\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.092,0.112,0.086,0.106,0.092,0.104,0.1,0.076,0.082,0.102,0.106,0.106,0.106,0.1,0.088,0.104,0.078,0.082,0.12,0.092,0.082,0.11,0.066,0.126,0.096,0.118,0.104,0.102,0.118,0.1,0.088,0.086,0.092,0.102,0.096,0.128,0.106,0.098,0.118,0.094,0.108,0.114,0.118,0.098,0.076,0.102,0.096,0.138,0.088,0.098,0.1,0.098,0.1,0.084,0.112,0.118,0.104,0.086,0.098,0.106,0.076,0.08,0.092,0.124,0.114,0.104,0.096,0.096,0.09,0.106,0.1,0.082,0.094,0.086,0.1,0.094,0.092,0.114,0.128,0.108,0.108,0.112,0.088,0.106,0.084,0.094,0.108,0.096,0.108,0.112,0.082,0.114,0.112,0.116,0.126,0.096,0.11,0.064,0.094,0.102,0.092,0.088,0.094,0.106,0.112,0.102,0.074,0.098,0.104,0.12,0.112,0.098,0.106,0.084,0.082,0.12,0.108,0.08,0.11,0.108,0.098,0.074,0.086,0.086,0.102,0.104,0.078,0.078,0.126,0.102,0.108,0.112,0.084,0.098,0.106,0.114,0.102,0.102,0.088,0.09,0.092,0.078,0.112,0.114,0.078,0.074,0.084,0.108,0.086,0.096,0.1,0.116,0.114,0.122,0.1,0.102,0.086,0.104,0.102,0.108,0.114,0.098,0.098,0.106,0.088,0.082,0.092,0.1,0.132,0.094,0.104,0.084,0.102,0.112,0.106,0.092,0.084,0.106,0.084,0.12,0.1,0.094,0.112,0.056,0.092,0.114,0.09,0.096,0.08,0.082,0.11,0.096,0.102,0.106,0.116,0.084,0.086,0.102,0.1,0.088,0.102,0.112,0.104,0.114,0.112,0.09,0.114,0.082,0.09,0.098,0.108,0.098,0.088,0.098,0.114,0.092,0.102,0.1,0.112,0.11,0.114,0.088,0.09,0.108,0.096,0.102,0.106,0.084,0.1,0.082,0.088,0.096,0.088,0.112,0.106,0.138,0.106,0.104,0.07,0.072,0.112,0.122,0.098,0.096,0.096,0.122,0.114,0.078,0.12,0.088,0.09,0.11,0.088,0.09,0.116,0.078,0.092,0.082,0.078,0.1,0.094,0.104,0.098,0.09,0.08,0.116,0.082,0.098,0.114,0.104,0.12,0.118,0.092,0.088,0.102,0.104,0.088,0.092,0.102,0.1,0.108,0.086,0.084,0.108,0.094,0.116,0.088,0.098,0.114,0.122,0.1,0.106,0.114,0.08,0.112,0.096,0.094,0.084,0.098,0.1,0.114,0.11,0.098,0.116,0.124,0.088,0.106,0.108,0.112,0.092,0.102,0.114,0.104,0.062,0.082,0.09,0.088,0.086,0.11,0.104,0.092,0.13,0.116,0.118,0.086,0.124,0.114,0.08,0.086,0.104,0.12,0.104,0.104,0.096,0.088,0.096,0.118,0.108,0.112,0.106,0.114,0.066,0.096,0.106,0.096,0.086,0.092,0.096,0.088,0.096,0.07,0.098,0.082,0.104,0.096,0.1,0.092,0.06,0.082,0.112,0.102,0.09,0.108,0.08,0.094,0.116,0.086,0.092,0.114,0.116,0.104,0.098,0.09,0.096,0.082,0.096,0.086,0.096,0.112,0.066,0.11,0.116,0.066,0.09,0.102,0.098,0.122,0.09,0.112,0.106,0.108,0.128,0.112,0.084,0.104,0.108,0.086,0.104,0.102,0.118,0.118,0.12,0.108,0.08,0.128,0.088,0.11,0.094,0.134,0.094,0.096,0.108,0.098,0.058,0.114,0.09,0.11,0.108,0.104,0.114,0.088,0.096,0.136,0.098,0.11,0.124,0.106,0.13,0.114,0.092,0.112,0.084,0.102,0.068,0.096,0.102,0.12,0.11,0.09,0.078,0.116,0.112,0.122,0.11,0.106,0.124,0.102,0.094,0.086,0.114,0.088,0.124,0.116,0.086,0.11,0.112,0.12,0.09,0.092,0.072,0.124,0.078,0.078,0.09,0.102,0.094,0.122,0.104,0.092,0.092,0.114,0.112,0.088,0.12,0.104,0.098,0.092,0.1,0.104,0.104,0.114,0.104,0.116,0.092,0.088,0.072,0.118,0.072,0.102,0.098,0.108,0.088,0.062,0.066,0.08,0.09,0.104,0.1,0.102,0.09,0.096,0.072,0.1,0.078,0.092,0.092,0.102,0.094,0.11,0.124,0.114,0.108,0.074,0.096,0.11,0.112,0.116,0.102,0.088,0.124,0.118,0.106,0.1,0.11,0.108,0.086,0.118,0.106,0.106,0.102,0.098,0.126,0.104,0.078,0.094,0.09,0.094,0.114,0.12,0.07,0.1,0.094,0.116,0.114,0.09,0.12,0.102,0.094,0.1,0.096,0.09,0.092,0.108,0.122,0.08,0.134,0.102,0.086,0.1,0.118,0.082,0.132,0.112,0.088,0.072,0.12,0.098,0.106,0.086,0.094,0.092,0.1,0.106,0.092,0.084,0.108,0.112,0.108,0.102,0.1,0.11,0.108,0.094,0.094,0.094,0.082,0.106,0.104,0.138,0.11,0.104,0.102,0.096,0.098,0.11,0.086,0.084,0.094,0.092,0.1,0.112,0.096,0.084,0.084,0.1,0.11,0.102,0.098,0.11,0.09,0.132,0.09,0.08,0.092,0.144,0.092,0.11,0.108,0.098,0.088,0.102,0.126,0.092,0.104,0.114,0.104,0.11,0.11,0.08,0.078,0.102,0.108,0.09,0.116,0.1,0.106,0.108,0.112,0.112,0.096,0.098,0.126,0.112,0.116,0.098,0.092,0.09,0.092,0.116,0.12,0.116,0.098,0.076,0.116,0.112,0.104,0.104,0.082,0.118,0.09,0.104,0.1,0.096,0.098,0.108,0.096,0.108,0.1,0.098,0.098,0.104,0.112,0.104,0.104,0.086,0.104,0.082,0.1,0.102,0.098,0.098,0.092,0.116,0.09,0.078,0.084,0.074,0.098,0.108,0.102,0.086,0.092,0.086,0.076,0.12,0.116,0.1,0.116,0.088,0.096,0.094,0.086,0.082,0.084,0.114,0.11,0.108,0.098,0.106,0.088,0.096,0.1,0.1,0.112,0.096,0.082,0.098,0.116,0.098,0.116,0.106,0.116,0.088,0.092,0.112,0.102,0.138,0.106,0.086,0.098,0.1,0.084,0.098,0.122,0.11,0.118,0.082,0.11,0.11,0.084,0.096,0.126,0.086,0.108,0.114,0.074,0.104,0.114,0.098,0.092,0.106,0.112,0.112,0.104,0.086,0.096,0.108,0.094,0.096,0.08,0.102,0.108,0.084,0.074,0.104,0.098,0.078,0.094,0.09,0.108,0.1,0.094,0.096,0.12,0.1,0.086,0.11,0.102,0.086,0.114,0.1,0.104,0.064,0.1,0.108,0.102,0.086,0.11,0.114,0.116,0.082,0.12,0.128,0.12,0.09,0.112,0.108,0.092,0.116,0.096,0.116,0.116,0.092,0.1,0.104,0.098,0.104,0.104,0.124,0.11,0.078,0.076,0.08,0.09,0.098,0.092,0.08,0.102,0.124,0.118,0.096,0.12,0.114,0.108,0.118,0.1,0.108,0.082,0.116,0.088,0.094,0.084,0.096,0.084,0.088,0.096,0.122,0.09,0.088,0.102,0.114,0.124,0.08,0.106,0.086,0.074,0.094,0.118,0.102,0.1,0.096,0.124,0.122,0.074,0.11,0.106,0.106,0.124,0.09,0.112,0.074,0.122,0.106,0.096,0.094,0.096,0.092,0.086,0.086,0.112,0.1,0.112,0.13,0.102,0.108,0.106,0.1,0.088,0.092,0.106,0.082,0.098,0.114,0.092,0.086,0.108,0.11,0.086,0.078,0.102,0.114,0.084,0.098,0.106,0.102,0.116,0.122,0.092,0.086,0.096,0.098,0.076,0.108,0.126,0.1,0.106,0.092,0.112,0.09,0.108,0.09,0.092,0.112,0.108,0.106,0.102,0.112,0.078,0.084,0.1,0.062,0.118,0.132,0.096,0.094,0.128,0.1,0.112,0.094,0.1,0.08,0.098,0.104,0.09,0.102,0.096,0.106,0.086,0.11,0.088,0.086,0.09,0.106,0.084,0.094,0.1,0.11,0.088,0.076,0.076,0.092,0.098,0.106,0.076,0.088,0.104,0.084,0.082,0.09,0.096,0.096,0.082,0.104,0.108,0.126,0.078,0.106,0.114,0.1,0.088,0.128,0.13,0.11,0.104,0.126,0.088,0.102,0.084,0.104,0.118,0.094,0.092,0.096,0.1,0.106,0.124,0.11,0.088,0.1,0.114,0.112,0.09,0.1,0.108,0.104,0.076,0.126,0.1,0.112,0.068],\"yaxis\":\"y\",\"type\":\"scattergl\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"試行数\"}},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"選択率\"}},\"legend\":{\"title\":{\"text\":\"variable\"},\"tracegroupgap\":0},\"title\":{\"text\":\"最適アクションの選択率の変化\"}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('8a080e7c-3942-430a-bca6-3adcdbbc6e02');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; </script> </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {}
}
],
"source": [
"fig = px.line(Optimal, x=Optimal.index, y=Optimal.columns, title='最適アクションの選択率の変化')\n",
"fig.update_layout(xaxis_title='試行数', yaxis_title='選択率')"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "22PbdyJjnBeK",
"outputId": "a6057faa-7193-4812-a2b3-cc7d3bab03e7"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script charset=\"utf-8\" src=\"https://cdn.plot.ly/plotly-2.35.2.min.js\"></script> <div id=\"04600be6-4d52-4477-a6f9-3cee34ffccc7\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"04600be6-4d52-4477-a6f9-3cee34ffccc7\")) { Plotly.newPlot( \"04600be6-4d52-4477-a6f9-3cee34ffccc7\", [{\"hovertemplate\":\"variable=Greedy\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Greedy\",\"line\":{\"color\":\"#636efa\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Greedy\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.0212305136017403,0.250443927087893,0.467238340361309,0.519857956216935,0.636244399803481,0.748530176174938,0.675989383390439,0.814047044160439,0.839348968550799,0.841610708286677,0.825557635812795,0.862378747766274,0.867049510280553,0.956315798819111,0.947345302277158,0.938939197249959,0.973716160252409,0.926840765318942,0.938936519359103,0.923227683595103,0.924053572511687,0.962480224301676,0.953072710335236,0.935008525816802,0.927464185057957,0.942698617124526,0.935995586954756,0.935903705241551,0.98498941963412,0.939580488761897,0.99259726371339,0.940885968796808,0.984604365758784,0.96484223713157,0.994872318445588,0.964443906358553,1.00878227271888,1.03324851556939,0.953750735390816,0.993293420208396,1.01604677104216,1.01019245205918,1.03892202004138,1.06386396530295,0.897190417001267,0.973386790047912,0.980989910632936,0.986520347612264,0.956865587513962,0.991228114903828,0.965774621333992,1.01626312166121,0.992089085583164,0.996913089891656,1.01848484028738,1.03618337143286,1.01861264030164,0.950422936228308,0.951636450524501,1.05429582487182,0.919188487955919,1.02313273444913,1.05574057952422,1.04064896569563,0.947430459617862,0.966449121428234,1.08993546766564,0.996763112017438,0.940094832366765,1.03260375835486,1.04052265656213,0.987482946914201,1.04628884513933,1.00487164941791,1.04773574928062,1.07193576218448,0.984471885821834,0.990786584116747,1.04944630500126,0.965294051530568,0.944095660587055,1.0114336844799,0.955489283101192,0.986921267791947,1.021418629043,1.05956073692323,1.00547049053048,1.01473664467773,1.07126038086522,1.0667840670011,1.00329899921348,1.07814706641808,1.03373420479013,0.971495695453392,0.980450406099712,1.03577986032109,1.04608364346772,1.00902480810445,1.0513099590192,0.999196998955494,0.97876958938758,1.04249442177645,1.00365796889014,1.00459093626425,0.981311894561379,1.0162822302253,0.981076333259316,0.995068972650103,1.05981151484381,1.08833215860933,1.01206780068315,1.03130425244171,1.01590405964616,1.0119542948743,0.999629387744737,1.01735315812394,0.936849481817176,0.979680071105889,1.01058240070726,1.00693297325088,0.935453659107669,1.00307704396555,0.988757541892394,1.01162940395267,0.979807137519835,0.904422937204299,0.987192366843867,1.04949113302345,0.952067948599829,1.04690981845906,0.990218615337708,1.02170370411702,0.979180891767228,1.00182887632908,1.11497863742796,0.959728018244871,0.979928867941179,1.12214524900975,1.06042778117357,0.923828416604723,1.03345413636748,0.981556893895933,1.02165949053387,1.0568714705166,1.0393874477289,0.978552052871085,1.11847102159095,1.05936880773848,1.0056163208217,0.975710107791076,0.997749051458895,1.02132722241029,1.03812652606855,0.995175045728043,1.03041469065282,1.03387795736497,1.05480415155548,1.15579571008189,1.13462222185216,0.965882600212852,0.966778305327197,1.06400494231872,1.03156884033109,1.06568396150841,0.965986374325399,1.11851342264236,1.03214361099278,1.04215476262112,0.99658904092639,1.04029669207864,0.999024081112441,1.00131351882764,0.996897460364311,1.09015642356437,1.03181429194381,1.00150524459933,1.02798927313102,0.991795234697248,1.12049238361397,1.09965583375107,1.0211271683419,0.999825757099232,0.995798257464911,1.02096108560182,0.986046786111703,0.97808665132311,0.981162693700436,1.06991887716788,1.05435021136871,0.989097882474693,0.94795303903966,1.06243693954058,0.898727073910216,0.998998670870245,1.06984788856822,0.973760435697826,0.966198769382737,1.02400422682532,1.08416205711831,1.02802045690992,0.991716027671342,0.994310906636507,1.01506102901468,1.07743800222706,1.01050752617139,1.05365885078138,1.04905931074646,0.979444658555249,1.07479511989569,1.00503231834604,1.01152471144167,0.998791064296906,1.09971744786402,1.13747215459104,1.02274894883867,1.01493101747756,0.962754767659545,0.947145067817368,1.0379499277028,0.964907281075933,1.06245153377765,0.988592812678771,0.968700421510947,1.05892527816193,1.052670185811,1.05337166369257,1.00619919432267,0.9960048697007,1.0707448843872,1.02391529571116,0.973439850367188,1.0119103513738,1.02813380708401,1.00348164931426,1.04596804434211,1.0269789494086,1.07812640597261,0.99360348463471,1.04209523004758,1.04962125043143,1.04179324358725,1.13167616223958,1.07056222630068,1.00635531470645,0.943743693651182,1.00125711945347,1.00070329311312,1.07610837778564,1.0162301352532,1.02488479808232,1.00987227557937,1.00915470852665,0.995229799060655,1.02651688408936,1.00511273427462,1.04989062057964,0.966761390829218,0.93845720988487,1.02711753878779,1.11008669304494,1.01381168547941,0.988895026807607,0.959087518938086,0.977010459418441,1.02920252472324,1.01565879992794,1.11060269825164,1.06134885800905,0.995141786178018,1.00407562125905,0.946458650232996,0.998249512859087,1.03477906810878,1.05878772847203,0.983064975135908,1.10841807842057,1.07149359828863,1.03496572922214,1.08251924223752,1.0183994826961,0.992629179081566,0.956626705780857,1.05620504526577,0.996097356177823,1.07283470825954,0.910697362193835,1.06305067571152,1.0143978546618,1.062836081725,1.0194608634663,1.05446405623217,1.1033417643009,0.986824532528461,0.987380444908778,0.991330637718105,1.03299400677143,1.0520132671865,1.09086585749783,1.00404344528085,1.00074109844626,1.0103265871135,1.03448132188625,1.01684021853096,0.968010440272523,0.976964750006187,1.03055223771673,1.05921472098757,1.05633510650522,1.01767506612231,1.05404840869005,0.997396746056581,1.0770372194394,1.08862380734337,1.03388882222057,1.05513084127737,1.10022423876473,1.08187183814512,0.99541364614042,0.990485913222836,1.02245240367986,1.01193999890284,0.985928413698224,1.02380977632146,1.07477217801464,1.0516662523143,1.05582033537251,0.961806674879195,0.953267737078165,1.01138967605013,1.01003444166384,1.07998398688875,1.02204955986472,1.00375753744889,0.948996262098091,1.01417139348425,0.97675051810545,0.995908470100513,1.04370255105585,1.01877146439542,1.04519345151746,1.04443326580647,0.982726046023596,1.0054828711236,1.00498764402262,1.01366480335425,0.976160799127837,0.935120648250217,1.00538458284666,1.02409709271465,1.07017342028871,1.01805220170602,1.07534714173908,1.0990373852359,0.975594783837399,1.07353024253358,1.03929550391158,1.05621749198399,1.08131629324761,1.04502565732858,1.06962184709681,1.06278958623237,1.09096548774698,1.06948604167221,1.03420973812243,0.988198743454558,1.05477371709674,1.06894834787174,1.03007894567397,1.00108560346214,1.02529986694044,1.01718017772043,1.05021939710963,1.01307145671418,1.06021998699862,1.03437461755853,1.06850729349957,1.1155079751956,0.972698409799624,0.972361710313289,0.943990712574249,1.00965029142855,1.06082518250416,0.992829482294489,0.981617895709347,0.991032078133984,1.11601764313167,1.07970481586498,1.00637010262886,0.981971702635845,1.04718506453264,1.01277539764293,1.04115521139257,1.03226425761192,1.08838813115041,1.02276069487449,1.04198054881781,0.91271364643366,0.984662949704131,0.976228874223772,1.0188744625961,1.08852168378044,1.05222271750648,1.07640974268338,1.06942720914188,0.991023772765626,1.04392843584148,1.08990227212048,1.01799822324944,0.924113590402209,0.964230633183354,0.999300009617681,1.00330934140862,0.972747739188291,0.951825860113534,1.04132844237074,1.0081936268472,1.05355024192484,0.964763659692705,1.0223949091289,1.10772045325996,1.00136739336504,1.06452190052534,1.04063299593547,1.01652177109587,1.06271684660142,1.07827786939269,0.956639266539707,1.02182834255839,1.06477641436584,0.977172816250087,0.96933921834538,0.962771354228966,1.06144931400195,0.973502512047692,1.08320798560833,1.04242862680984,1.00875956593966,0.970558551104943,1.02913085138053,0.987952720438169,1.08810662480818,1.05317360084161,1.12488281853791,0.971273168847494,1.00890253732492,1.04203415014329,1.07663311608894,1.01547372084419,1.08283982365041,1.03654919288192,1.05402433145254,1.04817719752506,0.982141126289673,1.01014781384836,0.944091571521466,1.01953575750647,0.999606924964496,1.03845741512877,1.01799302010244,0.994336141229263,1.04775428500853,1.14391191841124,1.06897026770247,0.949036863095964,1.01293896791111,1.01150864647637,1.00448489462855,1.06654113189977,1.11708194434169,1.04967807922183,0.973903037948893,1.05089825325957,0.978353670925102,1.01839329893847,1.08220428133205,0.976045124992166,1.05605091142446,0.988749452207704,1.05948878620833,1.00037022536027,1.09269694966665,1.01051849534296,0.929193158570585,1.08935930412179,1.15310582377613,1.02401632389852,0.988773835521709,1.06470283142358,1.02393327730108,1.06012099950905,1.09866202915304,1.08294065539583,1.04929660929371,1.02109272649954,1.01869870347577,0.994794691597381,1.05843223417554,1.02326336642812,1.03537149517923,1.03960021512825,1.06331951415925,0.940388013084907,1.02184355106236,1.01215495499049,1.01134575246185,0.976754739285382,1.01104423372246,0.992661354499661,1.06404441603974,1.09683765270834,1.02343214687347,1.02656348611365,1.02124272424402,1.06471806494804,1.05164573690939,0.95655491270984,0.988322690795138,1.0009008565964,0.97796619035228,1.04858216618385,0.938373525156412,1.06975494580924,1.00130141324791,1.02758028019565,0.933273306820443,0.906993276699892,1.05627046677833,0.983584155940791,1.03582811912236,0.994879964196338,0.976839492212464,1.03923610391444,1.10678292114407,1.00250328747549,1.08904685970716,1.05041719241855,1.07076112139064,1.06031732575457,1.02232706639976,0.971638715881898,1.086076946197,0.977359466605931,1.06302997283039,1.04983897556372,1.08232580189423,1.07092343527549,0.969733134286744,1.04665125938879,1.00843655717858,1.07994724146416,0.99141480977359,0.947998428158763,1.06554005983586,1.03930296749256,0.994839711472625,1.14733450710969,0.980699871377675,1.08212854099746,1.01482198596977,1.08979101415569,0.908598782434608,1.10148836593236,1.04472126044291,1.06459169584122,1.01431753276501,1.08204663758998,0.986034866686948,0.988824757463415,0.99760832026578,1.017966852917,1.06466235721648,1.01825110813002,1.00651122988286,1.01972820788818,1.05493398861979,1.03747014841595,0.985817861382433,0.976545603559385,1.02040147996258,1.07364290626649,1.04322164696792,1.03426516210889,0.979565191351244,1.03325686562245,1.02288397255749,1.04160726757629,0.998593379884126,0.979613468854913,0.986906070573696,1.07667517293476,1.04840255723596,1.01763297674722,0.983503438636872,1.02243444304689,1.01475790921033,0.969636491866343,1.05509134843354,1.01491002972552,0.946331132928952,1.0917182448508,1.0948636354337,1.00470118739138,0.988590721531751,1.01237208602159,1.01018582260433,1.0245672543341,0.991486565890105,1.01940467226642,0.997607443505674,1.01702870863113,1.09391582126736,1.08304946675663,1.06723784845836,1.00406199377362,1.00888472396723,1.01328244987017,0.994132319807101,1.02867034909507,1.02436915953156,1.05119746673809,1.08677492404372,1.0648383784335,1.04506077747858,1.00326947262699,1.08617159564324,0.992925102983034,0.993887036846187,1.06687591793479,1.04466748252926,0.973495973741566,1.05965697633987,1.04536443678991,1.02195629013644,1.01311386593979,1.05771244827089,1.07228777475956,0.986190041110916,0.987564561881941,0.984290699927426,0.936314743285871,1.03281064653898,1.08466527223311,1.02951128931893,1.06688931166389,0.989771192824021,1.03587709028327,1.05426392635326,0.976558988861568,1.01784911182744,1.02656040540622,1.01176881733043,1.07991904951181,1.06274967993591,1.04460818661326,1.03757389905686,1.07968632462216,1.09810771189256,0.965832249272168,1.02205466745273,1.00396706196865,1.04007413193969,1.00366432850734,0.993110106685269,0.998521618078597,1.03472472975558,0.956984793400861,1.05263038488167,1.00219170132439,1.04022089749266,1.00018972730841,1.09469066688966,1.05535875167871,0.963507911707251,0.982408222620753,1.04253286156314,1.03315210473402,1.04472678077511,0.983827293416813,1.06221168487191,1.01792896111842,1.04871845985816,1.04274192117828,1.02232502177757,1.01144541425922,0.94454620721954,1.06376604853306,1.03770843981833,1.01469385010676,0.93533545384851,0.930320897857554,0.98822102155187,0.994729403918923,1.00357378606125,0.978604368308296,1.10641734506443,0.976273460641852,0.992684899278051,1.04180243962125,1.06718239374608,1.08080410926055,1.00630517791559,1.05216938694092,0.994332118524548,0.987925149354204,1.05801307687197,0.999463900659246,1.01560910920475,1.00054216552665,0.962400719104883,1.03895719089577,0.984473154581027,0.974817393312459,1.06884480757075,1.09725345832116,1.07759453365882,1.01145647822456,0.946819419770681,1.0933110105445,0.973587239784465,1.04513330256813,0.990119210649442,1.0339318700953,1.08209354136772,1.02939825695011,0.956306563158646,1.03118569457633,1.01464579024303,1.03061429946288,1.02267843518173,1.0261675281572,1.15577070218078,0.962834463657786,1.01884833535996,1.04358089414758,1.01377763199542,1.01917601065008,1.0424887214771,1.08650327111251,1.08102147022079,0.979115424952731,0.964748249871887,1.06709297239184,1.09283377976391,0.935980852883223,1.07154773825843,1.01810833812108,1.04312513371799,0.971541081144043,1.05520104760566,1.06266733046553,1.04561741481579,1.12726820001485,0.999335508368818,1.05111762913377,1.07232023890905,1.03615725433053,0.967685775276157,1.09660384416677,0.968387332997067,1.04642681206445,1.02685105113158,0.981282268111321,0.999142914311878,0.963482335865716,1.02016460447245,1.02153632375151,1.03019835819243,0.941541117412553,1.05001197005595,0.994817534967694,1.02499820126873,1.06680965667748,0.978331411304127,1.06208737499149,0.962223110729421,1.02211956276274,1.04403167636403,1.00787270993318,1.01777593444532,1.04935071411035,1.02846609250812,1.04289909615386,1.01942174693993,0.941646689161611,1.01991513073641,0.951702980953062,1.01785511365157,0.994993311292228,0.99791969142946,1.04121806922329,1.07587516875686,1.03866479542301,1.03939878052735,1.01266321822281,1.03864628660545,1.04599957748405,0.925625054869786,0.977616169806412,0.976746403886745,1.03981402557132,1.08781811967956,1.01847174687129,1.0228663625555,0.985801472649522,1.07337159058932,0.986025893900365,1.05918632223675,1.02620280790058,1.10235572285702,1.05468516545305,0.92762025402377,1.0506626329146,0.969757333027612,1.01736031862868,1.02848523367903,0.993437731488872,1.00041131798315,0.977835610868705,1.03051597114134,0.99165866648483,1.0174349325216,0.981070251426642,0.949188792580211,1.03851530391248,1.00679258842953,0.959550485548169,0.999630209411215,1.05709039066042,1.04489097644493,1.0310911076754,0.979005598921774,1.08032750718716,1.05984754889002,1.05872483582385,1.02436669771109,0.955738256921495,1.02129647970897,1.04225796765283,1.0093645232235,1.00573002561552,0.983647480148823,0.95131660924326,1.10151561546548,1.03768741191541,1.02257558879909,1.00773992949091,0.980818266234742,1.06463993834459,1.03229495391331,1.02810465335958,0.937040591686018,1.01855139023389,0.998253072811004,1.13931265036292,0.98397967741038,1.03170216418161,1.10655782649,0.961625138580369,0.99895074329548,1.10249839232859,1.0566972272425,1.07312468420414,1.00470204798302,0.999858416868549,1.057942588902,1.01795821709894,0.992855080990654,1.02598359461661,1.02932381140646,0.953012098577449,1.04695359073925,0.931794832453338,0.968601982996125,0.978800630322582,1.1001877514495,1.05918472313979,0.982415367585469,1.04691882310644,1.00569638858064,0.956054627095577,0.938095451415364,0.967972968928317,1.04075706812112,1.04776645722519,1.01814597038664,1.00777913677618,1.06553078907229,1.03621529825231,1.06320110618459,0.994728403952379,1.06156010140275,1.06391335451415,1.04007325880199,1.01261770435227,0.963321089829846,0.989012873045539,1.01103355182438,0.976011784142086,1.06676326563551,1.01608445739726,0.998927896549203,0.940678363890404,1.0656832133764,1.03381869586477,1.03283901953057,1.04495354657896,0.985761525639011,1.0734130470489,0.947973665999833,1.03686533460771,1.01034687140714,1.05752755078415,1.09407890755943,1.06760413631253,1.06868903954996,1.02668070531302,0.98600457533781,1.00796972911793,1.06706469323946,1.11834745416138,1.04050204008837,1.02611295640795,0.99741978899187,1.06449321407872,0.996179347472309,1.03738215784438,1.02669698064534,1.03111695762943,1.02619760247148,1.03913201058806,1.05009278434451,1.05248222748445,1.04100114484242,1.04814054579357,0.999339584133969,1.04925091846549,0.979519381522436,0.963761849904681,1.0616291198535,1.02628417537986,0.974495330045785,1.142337997831,1.01023538832382,1.00606131383944,0.989760366240214,1.03080881255772,0.969303999371192,1.04130820310869,1.06689373139356,0.971580452591426,0.979810057952479,1.05299459263297,0.985756359725015,1.0167188713143,1.08168170296976,0.985586535399013,0.989690935352677,0.998685966802145,0.979386100385134,1.03501769233699,1.0747779186223,1.0865228768605,0.982073948652631,0.998876553007846,1.00991223177205,1.05973285223052,0.987861137643463,1.06175179163503,1.03936824475823,1.01176144026771,1.07011178742931,1.01078211185493,1.00732874779366,1.05288880730945,0.9859943118061,1.04106107318433,0.997502293442893,1.05160753801154,1.01287308633053,0.949651597556031,0.947999443648651,1.05098581113894,1.06129734745737,1.0546308856513,1.04820038686759,0.976662457783979,1.04516671436368,0.983457424940763,0.964229357957317,0.911721918908538,1.02506381397487,1.00955686866359,0.954016767447681,1.0056873956583,1.04748578704171,0.979005087654606,0.988799102728772,1.06762893739368,1.01565991604363,1.02346479380283],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=ε-Greedy (ε=0.01)\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"ε-Greedy (ε=0.01)\",\"line\":{\"color\":\"#EF553B\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"ε-Greedy (ε=0.01)\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.0676308873776483,0.323660257037301,0.466117885887987,0.527568024019521,0.595820398669347,0.742246822809913,0.802838796734702,0.940744516002547,0.768633693480227,0.844177976039493,0.839205551053629,0.898481125929885,0.908935306661322,0.953692779724884,0.92636882755554,0.990981062724993,1.04578790378472,0.986072819783001,1.08920671164474,0.977059146650668,0.91525019650321,0.996488987555245,0.959481084537736,1.01373476613087,1.04614773068127,1.04935767564284,1.07178439067628,1.00680127846797,1.09993197505062,0.992406097553325,1.00660529658774,1.05380836065184,1.0249365937609,1.06236629231022,1.01853658464452,1.01880507785021,1.03700460446014,1.03921972112092,1.02821721493419,1.09849678162699,1.00964349489901,1.03325304169966,1.03777926407364,1.01613275234014,1.042613495305,1.01590059497964,1.0629088628397,1.02227100235306,0.963565743948573,1.00589102510553,1.0694880317909,1.04426881955865,1.05813946975595,1.03359569748091,1.059160359117,1.077154013228,0.96522548481802,0.998662652581332,1.07684796982223,1.07790816050581,1.09564716392597,1.10453934133721,1.089968740684,1.04750135625273,1.11214183758272,1.04698505588646,1.07359829186518,1.0839036126061,1.10316670246906,1.03853932769371,1.09240311254529,1.07777747722602,1.06642916058739,1.10340010828311,1.0308842781853,0.969533374820329,1.12970452113366,1.05061322502065,1.13375166667551,1.09748613435319,1.07989720191005,1.0659324123216,1.04514831055378,1.05598282226648,1.02521644227787,1.02428226637936,1.10266969522967,1.03605235482277,1.07460087429635,1.02470304606231,1.06691595176803,1.10173870615277,1.03197409384655,1.08738867137655,1.0473627376319,1.05143691791945,1.07460654769413,1.03458764888261,1.05539421501351,1.12706642056916,1.10787572453371,1.04872816393334,1.10085341703358,1.10454250464087,1.02058610405051,1.15767987981393,1.17835867975941,1.02137325823599,1.12862979793861,1.10038659175062,1.15050062938587,1.04886176290195,1.07542802865153,1.06934731093888,1.068234705789,1.12932749249499,1.09010855258952,1.08971321481293,1.15433475313742,1.04064712314926,1.14954653237593,1.11946286804706,1.08894086302588,1.04443026698956,0.99298693108687,1.07249474129677,1.15110631302667,1.01594355688002,1.09037849853569,1.02750512505703,1.1182033900161,1.19089983056158,1.03194859637032,1.01614651749969,1.16840864336122,1.1246524738671,1.1330813139984,1.17000393469884,1.07175237551125,1.07359688420598,1.06598324144964,1.12225548701603,1.02599467987567,1.06260431215646,1.15125848645149,1.06729686882798,1.17751243254967,1.11371533257887,1.02370285906136,1.13013068942981,1.09479659223048,1.11066611359266,1.13723895462158,1.16911021429023,1.09155807035309,1.07903273436439,1.14590870553118,1.18661612504164,1.10706368018034,1.08525346355525,1.14754422759978,1.05205583684518,1.07356287535142,1.06371955470268,1.12972027952895,1.12040258224212,1.1594286661862,1.16131898122054,1.12074388373429,1.09809220196717,1.15226305934201,1.10959677839495,1.09661585868714,1.16723460142497,1.15838740652135,1.19719723494796,1.25934857947495,1.13803169695181,1.10626930930205,1.05859187877939,1.0714076716148,1.14445442802029,1.11890930385042,1.12327226767115,1.12047035969391,1.08615661808291,1.1060448502219,1.10593898275436,1.08646207373935,1.13432237452009,1.1527695538192,1.17096324712187,1.14871477194863,1.21706289642397,1.08329047669529,1.12582131657189,1.10178626281228,1.15033139734675,1.15366395970257,1.17417593376278,1.12581922947894,1.13061200887068,1.10873228596703,1.09105424350044,1.16713749567315,1.18224939811923,1.14745841539296,1.10655668392482,1.13139929578,1.12039345165537,1.158387196951,1.14646865748097,1.13440283094844,1.13699987687523,1.21722434372308,1.2064161339111,1.18163238633994,1.13731503092647,1.15381745099198,1.10383875345265,1.21570755556465,1.21145851002217,1.05668814961747,1.16709566131879,1.12135300625811,1.16884975832328,1.12094612710488,1.14723553165528,1.10991283659758,1.14380217208611,1.14531306956991,1.09408017855186,1.15385628265454,1.1048763684587,1.1127663137717,1.12474427519051,1.15167892726993,1.15371504682879,1.19529425626572,1.22838044915568,1.14403322910388,1.14068369773233,1.20761065275526,1.1329102438137,1.12206859771893,1.15649279009279,1.17655172957802,1.1380535045588,1.21426577696981,1.16849393666862,1.13743125273196,1.1814783625242,1.11711505756495,1.13587302905847,1.18476043967111,1.14191645839957,1.10302016988464,1.19819670610015,1.1586339353108,1.13183817998457,1.13667366899417,1.08764281840158,1.17715503391499,1.12724208611462,1.11418489763561,1.20862648130783,1.08208653563164,1.20212370912705,1.22289219868526,1.09811144108313,1.12768370373985,1.15983950655863,1.15008927009121,1.12530213183968,1.24885167335336,1.097176766446,1.23143801692356,1.17303769789303,1.22129676891899,1.19375597717227,1.11570364232454,1.18544777871583,1.16214030663289,1.15012169242307,1.09415461223722,1.22817159966875,1.18010094757662,1.2235747736607,1.17210467583937,1.19460154518651,1.1609724443113,1.22739231429533,1.09568307078308,1.24027682087898,1.25648884134917,1.20690363034011,1.18399360358963,1.23070152720756,1.21533463215339,1.24488444302243,1.130413246403,1.1170744038668,1.14495580082892,1.11030083299789,1.21419946145878,1.16507470283028,1.17529790183661,1.15295153219875,1.16836850136486,1.23678018122051,1.1947369539563,1.1962135655149,1.11511284851364,1.15509393918057,1.17591491561132,1.10749589518147,1.07534875529886,1.18083035207439,1.1846499382788,1.23510656074452,1.15366739621933,1.1717154405311,1.16413354995898,1.08969132418862,1.24399230287692,1.15205164656714,1.1081537168339,1.24835283987832,1.09586816591394,1.13242825736927,1.17375897265455,1.16922771510771,1.17166675839519,1.16606563557668,1.14469402577656,1.19362019051434,1.18543717460476,1.15744647273628,1.16467900088245,1.1645712845214,1.19686140087708,1.12099905567647,1.1850288349119,1.21109070302405,1.18175327129646,1.16848244028814,1.17311063465008,1.13647360004966,1.16578622297361,1.18039605524394,1.1119472475649,1.13712603767173,1.10378202373207,1.23598493426832,1.14668867047535,1.06790079388935,1.27010421157959,1.19041554234281,1.10809668833166,1.21206897077213,1.1873935909583,1.28314829343797,1.17325623372998,1.18684320176343,1.23229488137455,1.2293519406707,1.13801501935751,1.2602752213706,1.17476159525599,1.2400872543057,1.23310354738002,1.19609360109571,1.15409510610727,1.19958228784693,1.18624950766087,1.23205658843796,1.17367732972561,1.21314691459002,1.15720051510705,1.18500353332961,1.166817231408,1.16833861507542,1.18801642807029,1.16508231413897,1.27599407191393,1.22312839321826,1.13754165760022,1.21122674528383,1.18622921757191,1.21738779718265,1.08887831674985,1.18922099328325,1.17747189578079,1.19988562227858,1.21140133825621,1.19250335601253,1.18280888482089,1.14864463118889,1.19016808869152,1.24420845009875,1.14130398249187,1.2282449540495,1.21455995215661,1.20945289185178,1.19468235816594,1.16416236979038,1.26984299747351,1.19814366460618,1.20968330027302,1.24856751697363,1.19569989991404,1.21856841580911,1.2274149091379,1.16160653842798,1.15243506766652,1.26236599379923,1.24260368683741,1.24498657745621,1.21340020554591,1.26008712922619,1.24163720080912,1.19373265914385,1.15760086557899,1.18810786700745,1.23632147112787,1.23745758963465,1.24971788354112,1.1963655424876,1.21185813928269,1.21290796061678,1.22999591876038,1.25451087370441,1.21765831172774,1.26341407774298,1.16724733839928,1.17546146435686,1.22262961796432,1.24262324310337,1.27254377080549,1.20245002879174,1.23083512891061,1.25882531833054,1.24203055542942,1.28444385446295,1.25816894435222,1.18721248263064,1.25538952006192,1.28111515716952,1.21128969964071,1.25777594177325,1.20496696741659,1.25885837608725,1.32859313958214,1.22541482803701,1.2074386678631,1.11055734723543,1.24880670186958,1.21023677554492,1.22672394967111,1.18227865831369,1.21466018158863,1.33126811163911,1.17655948179864,1.22799011644012,1.20526682464557,1.2779473731524,1.28230798220215,1.24453900498565,1.2373645553966,1.23913570673441,1.20002181126386,1.29130681344346,1.28446735997868,1.25403405698897,1.26539135590527,1.1567492139489,1.16760641019614,1.21624596088822,1.2677632755983,1.21825294881251,1.25631776936625,1.22440767538205,1.10459180417209,1.27026113979537,1.25144630193788,1.17096263066716,1.23259131981427,1.22539162137544,1.30743909592896,1.2356454356707,1.2284352156074,1.29593329233396,1.22528849988837,1.27423973825771,1.26280078953267,1.25017630311193,1.21218099354518,1.21391560627262,1.20212266780764,1.27736487422034,1.27124422756726,1.32114330325144,1.22667569471833,1.21957189308441,1.22973057374635,1.27558937161067,1.13494279303067,1.18495437051919,1.27232358136925,1.19854097120827,1.21864614769321,1.30240352862299,1.17174873899354,1.14525521948828,1.27495267698889,1.24251276077455,1.22631334075136,1.23090225761491,1.24937722907526,1.31552015171202,1.25453872610696,1.21239096536414,1.21959707642604,1.31364234906997,1.27140189736776,1.24084110807911,1.25888968747156,1.33120600290644,1.17566493062759,1.24208564335622,1.3597996156681,1.18425314997026,1.21823084529462,1.2212756069268,1.22878857666183,1.16958034635375,1.31281437080576,1.30962014041802,1.31438624812801,1.27144564268218,1.2487330181128,1.26819432055116,1.23672454702806,1.23049661640675,1.3388400669127,1.30248286750992,1.25201556268057,1.28726860735253,1.2490299975978,1.2364556434664,1.25087872945375,1.28454758475014,1.24646532962176,1.26715816505,1.20562309509934,1.35093481794926,1.20424274701161,1.36274180522474,1.28873177141043,1.21695391986746,1.24241411089364,1.28517489185159,1.30769783971053,1.25887840670281,1.3014832861431,1.28772464360147,1.32305778177406,1.27743229403787,1.27708068822873,1.32351019004639,1.30087707332184,1.24960567440934,1.22324786738394,1.32405948266201,1.28066307923226,1.23219832265367,1.21554267941405,1.33429558978458,1.21191692586549,1.26745652746203,1.25291093362277,1.21008491188955,1.29062341674159,1.29774734544914,1.26272160170927,1.28611005991948,1.2220712869496,1.20919828927907,1.32725572827552,1.31918587378119,1.30508328811194,1.22779360933028,1.21864714252881,1.27359765577821,1.32282046294754,1.30549553202763,1.2846514440089,1.30995618744521,1.25711299902464,1.29269481231679,1.34310796649145,1.14768887179566,1.33430195757324,1.24256747200559,1.27367452252707,1.21833655476214,1.30540632097293,1.19571281820239,1.31833036469127,1.15768043227713,1.30649947853594,1.26294857844321,1.2567827019811,1.26039214158972,1.2900317978439,1.31123614027671,1.24201004037934,1.31615370833892,1.26106629274263,1.20265483469793,1.37716839025316,1.30033131779845,1.23069868291137,1.2710897992358,1.22151734842884,1.25710527947414,1.3306866622443,1.21431557015633,1.22742634823071,1.24872438592914,1.24717728002845,1.28139458043056,1.30802439390499,1.26594813473894,1.34757757464067,1.29693139051998,1.28585973151284,1.21117153196014,1.25940154328184,1.17422633103439,1.2453545138651,1.28526503530499,1.2792796042618,1.27912590209073,1.20563405863437,1.34388565663414,1.17855801538665,1.28832594499637,1.27279410518006,1.32495128554179,1.2799096597964,1.27785819037332,1.20388605428276,1.33272081975721,1.34276015115424,1.36879885524363,1.32955528683533,1.30491458788795,1.31405500879744,1.3729948145617,1.36623046274074,1.33587419131754,1.28947930266402,1.28901282259451,1.25480769766381,1.29840124364416,1.29682069633537,1.24852744205585,1.31255726945488,1.33503838621847,1.31532049732569,1.1817459453347,1.28845277340419,1.23456697876908,1.21128612840661,1.29928637088691,1.36319769705694,1.36517771672604,1.26385786975192,1.26370767112999,1.23974649781839,1.39780669562767,1.24599102705766,1.35062126114742,1.32058038935692,1.31651047144625,1.23417697319308,1.28907774168627,1.24309851802649,1.24100224432783,1.22526130966597,1.29488980204713,1.27071055525943,1.28066692170528,1.34009961635518,1.27896621106835,1.23255462150312,1.29269121617909,1.31411690827912,1.30758287030916,1.30582583866019,1.25652040215526,1.3527952891651,1.3404126662211,1.26358441782293,1.20321481672988,1.32161984143088,1.32846372048061,1.32256551388355,1.24491878314365,1.2342984945007,1.30010830571451,1.35473553341674,1.30112020315448,1.29334125553427,1.33658859566431,1.28799958952335,1.24781247406595,1.22319417190286,1.32389484696764,1.22912473671621,1.29670676941568,1.31747580888113,1.2860921172353,1.29533589524934,1.30000902524857,1.1880090383928,1.24751157547943,1.29313883685919,1.3362312449111,1.33611673001345,1.37766176852586,1.29164424858502,1.20504315936117,1.31996580692559,1.35996150691225,1.22281532297983,1.27270281889939,1.26657050778944,1.34111750950052,1.2929040857902,1.25004470102396,1.3614251598761,1.28952429703087,1.33927432601979,1.29984073465881,1.33435259099165,1.38443755099066,1.24318691135818,1.25584209940462,1.28999386710776,1.26799461624318,1.27568916840832,1.25725061604224,1.26854179757935,1.26587464888685,1.35371043136089,1.2730409371778,1.2615611410478,1.2969278903312,1.24034880000709,1.34905735385885,1.23035455647438,1.3788390926692,1.24400964287896,1.30473840627761,1.28282474218276,1.30373949245766,1.24680851326736,1.364020314968,1.27165800154977,1.21671231354571,1.28721082831646,1.28752768105937,1.32765820787565,1.37878884724045,1.29586073977836,1.31482014344365,1.23566162004544,1.29572072152255,1.3363283733636,1.3406058451306,1.17899747807635,1.32487712336354,1.35566544479045,1.2955205804322,1.20822155411868,1.28064616641034,1.27569881930818,1.22862331784073,1.30855914004476,1.27612365170071,1.304395787461,1.35919473225179,1.2983879097734,1.33558252980871,1.29047797564457,1.35797227678149,1.28610508586451,1.31453361779936,1.28258719660031,1.33809809292072,1.27434333889971,1.29000390966266,1.25466114360008,1.24282091931884,1.26975755565294,1.35232244776149,1.31855774531343,1.21636539173759,1.21336309593774,1.34904859176672,1.29365045109143,1.37000840684867,1.26458351656775,1.36381813330997,1.26699637387826,1.29190540059233,1.22431431261193,1.27903875583881,1.38294672582334,1.39974761467917,1.2880625354541,1.30493779766615,1.20249571775472,1.23946848914953,1.32993650982493,1.32221218740739,1.30560100109189,1.35902858003758,1.32727730061662,1.22040273223839,1.34950110376119,1.28751436293272,1.34983426602014,1.31444671980815,1.3363053537134,1.29570687103114,1.33411420372259,1.38078686432807,1.36643507758942,1.35104131289677,1.32292707368209,1.25957566224077,1.34374888479007,1.24861415951629,1.32654808174783,1.19767348927082,1.36334079417331,1.28164582168388,1.30025504117951,1.32527592940368,1.27424215901728,1.30333946140869,1.32719856535474,1.36382823967051,1.37539126100994,1.26669633115831,1.26290891584863,1.31696445117928,1.31804007564126,1.39097640269361,1.30225732794043,1.35064791349229,1.37759205662613,1.26312185582866,1.25360562687635,1.29073155901908,1.28113041517359,1.31294743974778,1.34011551893261,1.34734201645751,1.35475916780785,1.23673053398289,1.31993040547767,1.23741879589051,1.28502144959891,1.32680043130433,1.3091918683722,1.2972282495605,1.30037045719481,1.32455371567801,1.26540860377378,1.37447585731638,1.28342189882805,1.34009923539519,1.37449173671235,1.39458765213167,1.33001317764396,1.38480452521727,1.30833740506941,1.3847872888775,1.36785457833436,1.2636217178925,1.35582816270352,1.31385303519529,1.18677804730323,1.29808493930634,1.31349740838462,1.32187761779136,1.27293255411259,1.29757202025303,1.38898910786236,1.32366191680773,1.41156120528646,1.2908276755665,1.31598188134684,1.32569105774272,1.33802537159029,1.28557225386838,1.2777998621318,1.39510874855835,1.23873536911308,1.40478358858081,1.29870123193504,1.27894403712505,1.34165762200695,1.3364089586158,1.32886862185773,1.25956422781341,1.33413369812718,1.36855091279824,1.38456017182511,1.4060144958415,1.28228067019717,1.27793603380975,1.29850544665268,1.26375289546785,1.33336908506058,1.30611325334066,1.31137584318778,1.37803706276887,1.30750450007393,1.40063030387127,1.3041150643816,1.39440326827113,1.34260332967557,1.36169406007964,1.28805018654991,1.33651849971652,1.30183198196638,1.33065428891085,1.36644264603415,1.26493757534628,1.34500919667031,1.35843482943307,1.40881328115795,1.25904192729263,1.35202610374818,1.37046187306031,1.26979745988299,1.29682643911341,1.23280827192862,1.29971943306762,1.33922497611172,1.33047658785348,1.36049542892872,1.32671228680541,1.34626477781841,1.33062201940546,1.31748598794304,1.28616767352599,1.31232724535781,1.34071463001113,1.32274006798285,1.40666888914964,1.35638928222682,1.30335024564567,1.34867923928297,1.3749321269558,1.33057349436851,1.3700130602354,1.33480888110079,1.32571915934902,1.28580523244185,1.32646408760191,1.38149013600202,1.37224260330581,1.37268191979753,1.32344431733229,1.31737048805637,1.35980700869734,1.41029371309008,1.42798628846677,1.37617044050723,1.28344179328645,1.38866510120829,1.33437711069931,1.24381224117126,1.33590100415436,1.39710262911676,1.32365140717903,1.31163224152368,1.30041929353934,1.35554500292316,1.32910310298196,1.32148188253769,1.31824222965769,1.27887400784162,1.37242702476367],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=ε-Greedy (ε=0.1)\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"ε-Greedy (ε=0.1)\",\"line\":{\"color\":\"#00cc96\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"ε-Greedy (ε=0.1)\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[-0.0457383279485781,0.230938336744777,0.519589819153666,0.505869756145959,0.519845954158623,0.748697909918724,0.776810562427721,0.744719643285069,0.772122400976728,0.737913284232955,0.812660169451967,0.887406331008517,0.856318671695928,0.810549028012305,0.905704993406745,0.968116877609628,0.968242625598904,0.988271086565671,0.956222825570286,1.01006813312614,1.02544506563888,1.04702064319463,0.878557274292499,1.03317123298148,0.903139173233326,0.970884274985904,0.981508097243169,0.949101477661666,1.02006787253876,0.956312375874806,0.961398691457547,1.00684783725549,1.07077677860623,1.03581442782253,1.01705805107203,1.0468377662248,1.11145723939409,1.01193716884534,1.00873864172798,1.09458565945662,1.11488976283191,1.03569603962919,1.11383501054702,1.03617084556638,1.05600520310011,1.11998942806348,1.11804756606015,1.18617918467974,1.09305293926895,1.07926200711549,1.07249902849618,1.11468724848865,1.07816893276514,1.13980987653065,1.14273375965069,1.09917622587916,1.1868114360923,1.10584361634941,1.1295717467938,1.12080624023379,1.15781178814518,1.12434043141596,1.08330542173458,1.07964099376938,1.14921014342979,1.14789304989299,1.16437670259145,1.1958163208033,1.09578168201491,1.19020302975854,1.12924990654421,1.16903984730264,1.11158980565058,1.09286311996636,1.16719236251618,1.20588910446242,1.15136932849501,1.22638064449384,1.21163849199168,1.21892152285557,1.1757420301572,1.0601002659672,1.16649592412094,1.15729744197903,1.11806492383718,1.11504526520968,1.18479345538542,1.1896270003752,1.25689870020731,1.13846479054947,1.17703897194283,1.13917846753092,1.28997326028786,1.25238756801751,1.18609089510674,1.17600155813705,1.2713388652571,1.23642359546713,1.2420737552668,1.07706966742215,1.16922621568291,1.21462567757736,1.32483315564457,1.13871826160208,1.15880510380137,1.27364078465334,1.22941918593814,1.22146353854452,1.21252834957111,1.17815712865884,1.20715857137216,1.22121790949819,1.26340322532352,1.15057828600551,1.24937936461826,1.2242037181265,1.29483473170426,1.26977239284932,1.21994061591811,1.32139830513032,1.26220595285757,1.26059507336351,1.15786343012883,1.21847975534725,1.31413121474442,1.27777348798963,1.25188277093933,1.14710114463722,1.23853582541129,1.25411284099694,1.24550863785514,1.30796253234869,1.26773535744024,1.13867868470941,1.29144811085702,1.25252111271363,1.2739433985498,1.22794269879597,1.17610144120455,1.21380679945675,1.20229397599804,1.24569807583211,1.23715934096721,1.26807383319293,1.22567755884835,1.21956214754932,1.24545234381936,1.26778661157875,1.30692815802763,1.28991720446945,1.23637565588066,1.234042659579,1.21057386080414,1.22957198618728,1.19929307779957,1.23805905681931,1.29680037606359,1.32027163684869,1.36857230668386,1.29847463598432,1.25815765436162,1.25393520965023,1.36644903402523,1.30442140454069,1.30723677551844,1.33722461344405,1.28086192360675,1.28465272222947,1.29510191241517,1.25352926834171,1.28421450807367,1.2354872544978,1.28747808921603,1.21081099792111,1.25993129982037,1.31804805225041,1.25639613099321,1.30349061645225,1.28021435575791,1.36169516721958,1.27974459939395,1.32477129126822,1.24668422593213,1.21622251215068,1.21572064406871,1.29684802643465,1.25102982970045,1.25830484129769,1.3136920284277,1.25145883954422,1.27799420492266,1.21429709947427,1.30727507840779,1.33191726263162,1.18458919104236,1.29515455683247,1.26433137086342,1.28797419121267,1.37995976285168,1.26893440101602,1.28157100885872,1.355385952295,1.34204672968518,1.30210461953142,1.28723085548287,1.30314524039402,1.30666915848282,1.27525181630747,1.32827397677126,1.30485960955212,1.2047791285731,1.29520499854013,1.28056710987407,1.31136926044897,1.30820980477832,1.33188566392085,1.2571637716032,1.23512737860384,1.35443947610311,1.24656969061658,1.26159682601612,1.13567841749771,1.29042076093936,1.28555833657081,1.25950056811941,1.29514514719397,1.26900202574751,1.33513945448892,1.38087471998202,1.1978649717742,1.33156912395778,1.22610003655167,1.26266583887563,1.34939458264689,1.2535144111538,1.28160278746963,1.22942725007505,1.26752769379551,1.28451260781557,1.40623591978243,1.30196229846173,1.28489889364099,1.34902214269935,1.31469058912057,1.31713367495212,1.33589897590574,1.37657173506225,1.36743977648089,1.25888524296315,1.32849657455664,1.30285986482163,1.30285501493577,1.38092488544083,1.30340331658814,1.33893162745047,1.31507978859901,1.24865847070464,1.34958100481597,1.30951223573184,1.3271878262286,1.30317009441889,1.27411686465831,1.30873796627915,1.2898449982122,1.40137693089743,1.27323909771444,1.35842136338464,1.30322689243359,1.24173278112321,1.31015935746569,1.28448853395991,1.325313164628,1.33188624712139,1.37682131680939,1.25226649488514,1.40139208793497,1.32484688942534,1.2571232686258,1.35376447919635,1.24562455064715,1.36205685668467,1.2634703248818,1.24635553868291,1.44238288422194,1.37434809756663,1.28647452911364,1.30694854182908,1.38269390638286,1.38638132391423,1.24265326564178,1.25879389060314,1.26079232141445,1.34940158886987,1.27910165946773,1.31426374903672,1.33085862624599,1.27762273322234,1.43556947824935,1.25049517916754,1.28583281568122,1.31860522954067,1.32073631865356,1.33002515682546,1.22929050233127,1.35069153945791,1.32825186052958,1.33798528836648,1.28289011406319,1.36316876089328,1.40137225268171,1.34778945083287,1.34394011677171,1.3400870040896,1.21225284255143,1.30685624844946,1.34355480303332,1.38948175988598,1.26950267872222,1.35318421887808,1.27622761135187,1.31109275713661,1.36404368017229,1.32415326665883,1.38092413574538,1.31695282425395,1.31756738573664,1.29871447370866,1.39725431906913,1.35662420635952,1.33075786783112,1.32532812744695,1.25073808408125,1.41502644461755,1.26535360769065,1.29771253031793,1.28519828707155,1.3350694809775,1.29613323629598,1.40550994123759,1.28726751126955,1.3108983395992,1.25164786305101,1.3030448049812,1.39885498878607,1.26291963183645,1.35688825207338,1.35456644737788,1.22153750888568,1.30655652760465,1.38086954031992,1.3340037533358,1.30131447647407,1.23677179748118,1.39065859825727,1.30552617921633,1.3129862089628,1.29686893579596,1.26536930647403,1.30507291105342,1.26754283330161,1.35100414286869,1.32720574325976,1.34296947640248,1.25694931168247,1.36930454890989,1.28321573453002,1.27195780852973,1.40968523732608,1.28596610312815,1.28806291140093,1.33307860446027,1.29163089852186,1.30214429584984,1.31159139031962,1.31124590494217,1.30357156737338,1.29423640252777,1.36654037087677,1.35605916838417,1.32395523202631,1.33656854914922,1.33758505894807,1.37113672165885,1.40753337387756,1.3282976508417,1.388221179544,1.30432458915084,1.25674629608951,1.3604453387198,1.31972847033094,1.26718207571871,1.2702775307392,1.31621790180632,1.30749707643361,1.31390573955419,1.33611440476315,1.29168419800691,1.24278656053623,1.30112455848478,1.34769217640928,1.40206468104771,1.24631752579562,1.451779326171,1.38783146791408,1.31867676638968,1.26686718747514,1.3561722691821,1.27054862637141,1.34404846500818,1.35494409801799,1.38345165842594,1.33885105438145,1.35408118968637,1.27444225888775,1.33344020430319,1.30776211071163,1.39393057352857,1.39080486462918,1.35131323500698,1.3755304293451,1.25519238171346,1.32581002343848,1.35677807238533,1.29992397062871,1.26285962880006,1.27619675932436,1.3475125214715,1.35369736491276,1.36800835481403,1.36096111506938,1.39672265105527,1.32124174855455,1.34548281109891,1.33528812969682,1.39257401709008,1.31050277996959,1.27057830919583,1.4007806581824,1.39394598036657,1.33313630439015,1.36650121359867,1.30616471051095,1.39738936161182,1.39532296924976,1.32590029404568,1.38547231259356,1.30492742967478,1.38127747521242,1.35758632001041,1.35403220364889,1.37488122141274,1.30889543536395,1.36457863880103,1.36481184950926,1.34705966736618,1.35744327003438,1.42097997539208,1.37394893680631,1.32105659256029,1.45609803948521,1.43187651396137,1.38770558562502,1.34709385834261,1.27623355623849,1.33074612142107,1.42977291552515,1.36055403854376,1.31854291000484,1.39992273644609,1.33500504664854,1.36645228835336,1.43067908885577,1.34259260022331,1.27725758921206,1.39782024157596,1.35437103488034,1.2844992572407,1.30684657848025,1.2615716188667,1.29824732644598,1.36246312674128,1.40635077892301,1.30921602296603,1.30426527467928,1.36310819137567,1.26785626946973,1.32566941608338,1.33714137123313,1.3688266175366,1.41171921338764,1.33889646198062,1.35578532735804,1.2321882552785,1.42087523755444,1.32206504931086,1.30858198412024,1.27885763811528,1.3678196162435,1.2956407558766,1.36905229305295,1.32014044257796,1.41594481217471,1.31896950152522,1.38873650169993,1.28078237602726,1.33945372391763,1.27577438750719,1.38089165793644,1.3784793723602,1.38517660420617,1.23988961628526,1.35645725602995,1.33921885712587,1.33226028187565,1.31538320472108,1.32694376894962,1.35441334225272,1.42300642049673,1.34688744731336,1.39806027424689,1.28003997594272,1.30588228144363,1.41794309306272,1.34778377581321,1.34142456082746,1.34067049790139,1.27413156398729,1.41495594905948,1.34377982772744,1.32662669009189,1.25610332503618,1.32327992617322,1.32377114782915,1.38662910728054,1.41363167014752,1.37634721402136,1.332070748898,1.36081840824549,1.28300171387591,1.41019743315811,1.33578427715288,1.3168973166907,1.41929775294648,1.39297398775997,1.30072808813098,1.42563620515877,1.4340839218205,1.31025419987058,1.3546374982764,1.38441168970377,1.36070622845759,1.39207459661661,1.36787532799965,1.34272522069984,1.34541234890746,1.4680183254958,1.41882814800479,1.3737324979403,1.36606329867196,1.30757858077574,1.27861350932406,1.37879004203476,1.37490211289326,1.37402877927015,1.46943573626972,1.39133406765445,1.35611297274299,1.41292288886592,1.36462048377635,1.41282404391769,1.2822222508789,1.39977913731595,1.40884156745565,1.38167824800303,1.44019408282422,1.30182601223511,1.35775405891402,1.41320020492724,1.32721704538401,1.37987696665449,1.39919099055809,1.35759368958998,1.40049569319984,1.36845796454702,1.41298879490683,1.3727498039939,1.30871578010934,1.39888478190115,1.26280568748007,1.40594402291211,1.29397540349956,1.35648937197058,1.32744278887645,1.39124297613874,1.3749729500954,1.34043634560939,1.27307205065708,1.28486326326768,1.34760621796012,1.36930316002654,1.3706232030788,1.33257444712566,1.42109296925551,1.40572073344475,1.37571565264387,1.32646807326705,1.32365732172657,1.3880647809493,1.22291680010002,1.39481815281977,1.38278839895043,1.29533590406079,1.28499430973757,1.3271687715578,1.30927207013429,1.38614538288057,1.31271232235144,1.43441813920325,1.47702712724756,1.32696972422664,1.35101674463543,1.29272153672028,1.37397487249177,1.37063669221823,1.30982844520802,1.37479755553744,1.33290766572763,1.34549703735181,1.36418769414766,1.37971033269299,1.40787488710471,1.42903453097719,1.32902115812086,1.40705579854861,1.36515054939485,1.36070397938614,1.3248005809763,1.40013026554063,1.32685622921343,1.40873750457705,1.32773078821878,1.34191597784802,1.33729731954131,1.30368659745646,1.47479444760925,1.35357188992462,1.41924191495866,1.41594825275175,1.30653115706372,1.39895274375534,1.31470472607761,1.45180876939238,1.40389249757218,1.40311756484932,1.36796881791195,1.36547094588956,1.35145959714717,1.35469561252493,1.34617566101577,1.32980915340814,1.39790812246733,1.37194279286971,1.32566390822386,1.3638572711907,1.32953934387853,1.44071026933613,1.41343535702004,1.34666072263314,1.33232193505369,1.33591892653341,1.25229027981384,1.34936353501501,1.28243070766355,1.46983129290589,1.38328039362544,1.3006952640655,1.36154414026215,1.32969348888233,1.42269356239659,1.32937229713046,1.32562399154424,1.38948887027119,1.38865742246655,1.30898953040912,1.28309089976908,1.32831845978519,1.33855962959037,1.27369869034001,1.31171276691754,1.4053535829144,1.39204252101307,1.4287709842009,1.42040944728889,1.36500216030189,1.3650631003552,1.45180501847083,1.37723064596297,1.39109913451534,1.44041387555751,1.34678045886206,1.3077083544628,1.31267134604576,1.34595032954545,1.46454600966981,1.39093152161201,1.34828747229652,1.26960562319913,1.42358804325994,1.28450099106719,1.36281942505219,1.31834692297173,1.37326740495995,1.32714216836353,1.31564235642079,1.46063999357096,1.454809051239,1.28323134992569,1.33381416581113,1.41529212502447,1.39774571379169,1.40336451065018,1.35002417252949,1.36408991327014,1.3633156673502,1.38948871905662,1.34294493859693,1.39718832559181,1.31913048695319,1.44845584054681,1.42943451275442,1.38362340918335,1.4871479368364,1.41405516270141,1.3994219904575,1.4277498963448,1.31407881712301,1.3415802520414,1.31476371915389,1.45019924556206,1.30023973614476,1.42747755532021,1.42856902660211,1.33436236719973,1.41532008294311,1.3161907990005,1.33421268264633,1.44444235188572,1.35405548316042,1.29980753554007,1.4069707689072,1.40199316812244,1.35509786654502,1.36912118504756,1.39702785373642,1.42322500495954,1.41824086185846,1.40082235016106,1.22571247888151,1.37315644152479,1.3888691785368,1.3708800293265,1.38259169846716,1.28099737258504,1.42392973628283,1.38994707114472,1.3303885987893,1.34204606067754,1.31361367295889,1.3297872854027,1.44725424206201,1.37713796869718,1.39127334675258,1.37528795138747,1.21212712390042,1.23221427441855,1.42379399833878,1.42031243494834,1.31990470319655,1.33058094767164,1.32771497700951,1.4662990448875,1.39806102905621,1.25070576463341,1.40391601562321,1.35505060328892,1.39082664871889,1.33916095524825,1.39709876797967,1.38563760270224,1.40346680927702,1.48035175198548,1.27652960461214,1.28363043714884,1.38433577483647,1.32457312536968,1.42883329247586,1.40870936926108,1.37708168224759,1.37767390650983,1.38189027136639,1.34523215346651,1.43201917613713,1.43905110479523,1.3653755124643,1.36132844893602,1.36774200092828,1.33272528342824,1.34883026657645,1.42661702266916,1.40747623016817,1.38670565821514,1.3741056315434,1.36868285895665,1.35874944049219,1.31020172608447,1.31705718230768,1.35421508493117,1.27648684959451,1.35244751977376,1.34092221657435,1.35140358312105,1.36663217135869,1.39766995480363,1.442767184196,1.34592029857786,1.451387913285,1.39158732918438,1.33245742860849,1.33834151419934,1.35475559702181,1.39824000808452,1.38065492759548,1.35278049096692,1.34893564432221,1.22614279546058,1.35102232258978,1.33600380059263,1.32040037843941,1.36376941993722,1.30786972994131,1.36090305212222,1.39298938590202,1.42809326385961,1.35154259713827,1.42862081037053,1.35988374775383,1.35674080998948,1.33274561556009,1.30821137489596,1.38958679871123,1.39625698943488,1.2927310662806,1.43647324888945,1.39411802315048,1.32477651191017,1.4002944866428,1.39232044284109,1.42687571693423,1.40386518058296,1.42832034619103,1.26296871681813,1.42609722694101,1.31470753482541,1.26956603923262,1.38647662173092,1.3424538493647,1.35764313717833,1.39231405742543,1.42924936998433,1.31593665936713,1.36462643024162,1.3086151866126,1.38772267916576,1.345555601813,1.37925529061005,1.41055524585707,1.35323372250818,1.35386036432312,1.36949519859496,1.4302805748923,1.30112674648582,1.2646436334542,1.30376591328909,1.42586624139252,1.3470228517546,1.26077495087696,1.46259168485943,1.48518104522829,1.28774192478498,1.25250258093509,1.38475264193489,1.39120481701903,1.4407136258555,1.36390964213493,1.42512612495659,1.26191081436357,1.33492492696254,1.42254408128958,1.40918222788847,1.36698208683448,1.474920441111,1.33851531277206,1.38696238614301,1.40451163666505,1.46182315281641,1.37942173710712,1.30671785128802,1.43602200022311,1.33548125130177,1.39818003574991,1.38709796878566,1.31505614365523,1.49702769308564,1.42603495959701,1.28442724460043,1.48719685571803,1.42125713009338,1.45578581687648,1.36042361752703,1.35761467840358,1.31161331192792,1.41670446834283,1.3916577031085,1.40872740456197,1.42315933922295,1.3843794267736,1.41787254249748,1.34790871593549,1.31235869936762,1.40791819250935,1.36655210310819,1.31932309135841,1.44335028855288,1.47595435778846,1.48216067757695,1.33392678365745,1.35053938796832,1.36706221699264,1.37714987407061,1.30619055034268,1.34682180732318,1.37991742194855,1.39329335477556,1.26658642101973,1.39776952743035,1.39666171285087,1.34618476888196,1.29030955022238,1.41865202370229,1.34848427671938,1.32525088992679,1.34128787199701,1.45149623681704,1.38736460339801,1.4677636259972,1.32017393988387,1.38388816443671,1.38829054165077,1.39321508402664,1.38390018023357,1.37546503402912,1.43042874046261,1.41790062532262,1.42055717879971,1.40312012350102,1.34636610356972,1.42769788666428,1.45312134068572,1.42990805199418,1.35792354349317,1.46258267100471,1.3815203016692,1.38853085750394,1.29404083987087,1.34813263208874,1.40828970267587,1.29778098736838,1.32980002797909,1.37977202389563,1.34240740285181,1.40724062242392,1.32533037590106,1.36046999935952,1.30593850842259,1.41492049980625,1.35470529439017,1.25345877060348,1.33393120261062,1.34885900476716,1.36141340844072,1.39171477590272,1.39766982188268,1.37607390523109,1.37875504497612,1.35212537283588,1.30138162727364,1.34173338153371,1.39324425348252,1.40647602557402,1.36949500966106],\"yaxis\":\"y\",\"type\":\"scattergl\"},{\"hovertemplate\":\"variable=Random\\u003cbr\\u003eindex=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Random\",\"line\":{\"color\":\"#ab63fa\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Random\",\"showlegend\":true,\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],\"xaxis\":\"x\",\"y\":[0.0608369688988507,0.0763015787336774,0.00616225510924957,0.0466549309538973,-0.0117747117695747,0.114286778624565,0.0133449482980929,-0.039829994984607,-0.00992680998693863,-0.0343641734505387,0.0698783141044388,-0.0157626663189791,0.0726124079826003,0.104935000880087,0.0491223367603827,0.0448316706315193,-0.0230297245435632,-0.0350144388020083,-0.066750407190158,-0.0343787584956855,-0.0439016123264313,0.0510866606009463,-0.0674650367723896,0.0435010941751279,-0.0351397618638342,0.0889200302907032,0.0962649068120755,-0.00437911264363351,0.0285737288641264,-0.0508733623094345,0.0531322087774073,0.0193390137357608,-0.0581287564328946,-0.0398150269646526,0.00233458950615763,0.0795427022902586,0.0308271868441189,-0.0953559421203558,-0.0058995641988171,-0.00602237743360774,0.095859415218428,0.0305736152638374,0.0292069502776498,0.0414135820182011,-0.0812964414901078,-0.0493651752128183,0.0757642228834135,0.126465622786607,0.0646965960626963,-0.0739687178358725,-0.0434711264980469,0.106480637522411,0.056453497030819,-0.0537426705351946,-0.00424241920735246,-0.050845836226595,0.098071236642164,-0.0244283582553359,0.0823489950540492,0.0314349664275766,0.0709055178397558,0.0092035856337162,-0.0363997100083927,0.10877179185707,0.116955716582416,-0.144092553487854,0.0572250293403463,-0.00543755669267854,-0.000778982750773815,0.0117582854460327,0.0456500840486109,0.0303523316609156,-0.0129217226025697,0.0552336021838521,0.021999484873366,0.0309491980388914,-0.0907665648685755,0.0980827369958817,-0.0252022593509159,0.0306529797397934,0.0425044487402582,0.0963160895066508,0.0524484354501041,0.000450267784271093,-0.0177834206558529,0.0675248623345059,0.0970382553859322,0.0632018712051321,-0.0237494164387921,0.0687333136353939,0.0727247523410778,0.0470512905712478,0.158568697771365,-0.00538662141783448,-0.0320364079082105,0.0327054510201419,-0.0141905825109762,-0.0172990185100754,0.041897100322294,-0.0020936012620099,-0.00469126654384568,0.0648359999287318,-0.0191755536340705,-0.00662862037975058,0.0547465536666381,-0.00368560825977142,-0.0437139843400681,-0.0774929730139627,0.0536480657992216,0.0328227736296888,0.0187156401495373,0.00678480563752361,0.142259983706394,-0.0246117779657978,0.0366038103382127,0.0633763059545482,0.0995092957181312,0.0389716674372085,0.0687812134708303,0.00757643050446125,-0.0301206029273214,0.0509970708380049,0.04661583778214,-0.0191380861689428,-0.0529648781703622,-0.0400469139166551,-0.0205947091299245,0.0255462660297305,0.110730204628638,-0.00363891147818948,0.0245885480947351,0.0878621284888587,-0.0642795576416205,0.026658676548735,0.116659377776032,-0.0158136432138707,-0.08125554483938,-0.0276401725578328,-0.035485843181431,-0.0222860675119657,-0.0902890450488635,0.00738211770394534,-0.00864239377909575,0.0949323757648884,0.0698937015314454,-0.051648607491557,0.0144805335187099,0.0183934542765823,-0.0382973339894913,0.0442809232707152,0.0298730202509762,-0.0237418212135996,0.0726209184028746,0.11234955630139,0.0036777857657429,0.0273405261894305,-0.0364383490941124,0.0290890723360547,0.0842709528883896,0.0751642824658037,0.145245844527514,-0.0345769651682674,-0.0249870254959183,0.0290154492383344,0.0119094990913506,-0.0381224153861191,0.0236793117619514,0.0743157733928343,0.153516045231379,0.0493572963984344,0.070408312573497,-0.0375562448447064,0.0574578915088539,0.0599312673500375,-0.0712286645769223,-0.0413714443601706,-0.0146887131227441,0.0786395116419257,0.00553106424799764,0.142580546455316,0.0086893531145146,0.0562766017216014,0.0206993619716225,-0.00769905251347649,-0.061681614962097,0.0184110908474658,-0.0205989346800766,0.0202766514676344,0.00938445814005187,-0.112099683467775,0.0793751873546361,0.0307254249453791,0.0407972793265366,0.164744558026073,0.000409444539520069,0.0253288949239109,-0.0860783525683882,0.00658312889537052,-0.0841362470939872,-0.0456483080198936,0.0337920392810528,0.0354398660659747,-0.0314992597291163,0.0994008883932786,0.0816922141132191,-0.057091492431248,0.00820781883494854,-0.00593563765502262,0.0282979027790014,-0.0150118474050026,0.0577366982274,0.0289106724827314,0.0740047222979661,-0.0248245427860636,0.0489257402150203,0.0402884341305889,-0.00368478142434525,-0.01188860751913,0.0114930033449537,-0.0148159049096979,0.110699730094413,-0.0203589818939747,-0.012260141677351,0.00498297394817729,0.0303250669734629,0.029346380934838,0.0163169650289583,-0.0208252041972974,0.0287285193644216,0.0453120521663097,0.000164428642585637,0.0345477470617152,-0.00963944119554482,0.0215953057189946,-0.0964017192186003,0.0084459880768729,0.084613187179363,-0.0847195295912414,-0.0464487618175679,0.0323008508189027,-0.000356729133737421,0.0962802022257747,0.0185844013676002,-0.0340506260630774,0.0122132866990789,0.150885103510226,0.0459968256658753,0.0288655042164222,-0.0291368550420053,0.0255709738476121,-0.100109619255511,0.0268031884835882,-0.0801947430590216,0.122922494121872,0.0351609017400615,-0.0421287630240777,-0.0313058185225814,0.0165119875758416,0.0884646835120652,0.0199924546909929,0.0817913690692817,0.0171479170150168,0.117282476424447,0.132631600510518,-0.0855126181661661,-0.0131103898368281,-0.0505529057241599,-0.0910627561100358,0.0492855521489877,0.0793269287560836,0.0249573721253407,0.125154219886744,-0.0562872162287618,-0.00375334757666991,0.0805400402814445,-0.0504204600878325,-0.0294328160017101,-0.00350844117970775,-0.0855323182320068,0.0889083849674286,-0.0100085573963774,-0.013079571871004,0.0328272454056722,0.0986347012283602,0.0100936090877733,0.00321860627286166,-0.080202305241528,-0.0899578911327075,0.0792117003467212,0.0401500318828497,0.0699189379733527,0.0926814295385619,0.0463309510441843,-0.0857949095967263,-0.0376562333766523,-0.00288008364386958,0.0478542164341875,-0.0587095332176108,-0.0785858616908351,-0.105150374863569,0.0301974582771032,-0.0265794500639892,0.0615926018090349,-0.0735245215915174,-0.017752728630501,-0.00299662200053317,-0.0744958178597036,0.0774918845960181,0.0755587659265706,0.0350953141877779,0.0366024958110035,0.0630183240640536,0.0836861351204629,-0.0597716995732436,-0.0429588244060513,0.0161322363322216,-0.0732542091975889,-0.0198935386746449,0.116778252067762,0.107669461430512,0.0316238689739819,0.0512179041418462,-0.00646359662213731,-0.00988918543303952,0.0133782682213539,0.038973374357342,0.0613832973871464,0.000377270916124695,-0.0514119038419264,0.0628319977641213,0.0417790620193121,0.00325999217636898,0.146080981828482,0.000420106390176134,-0.0794703236637958,-0.0218183507065783,0.0129456171310922,0.163622698815984,0.0153390460371004,0.114379698867713,-0.0254422230232462,-0.0302967080532213,-0.121157280082684,-0.0995079844386833,-0.0548590199254772,0.0708586595474816,-0.0232087250017702,0.0631474333693969,-0.0651683707084581,-0.0435519460266022,-0.0438358574937248,0.0952722955832897,0.0175168909980038,0.0508183742605,-0.0042656770579069,0.00361259378563481,-0.0848569625331389,-0.124952817563553,0.0136309178497366,0.0658090200739743,0.00412690797136688,-0.0199774656917098,0.0144239860614903,-0.0479291725355009,-0.0510699667684549,0.152721064333658,-0.115987403808018,0.0410488569304871,0.0157380875755226,-0.0842430220255452,0.0302762459398757,-0.118503188801382,-0.053744863830893,-0.0209572651879307,0.0556602020435939,0.0392736631988823,-0.036477516787803,-0.0934114496015583,0.0613995016658162,-0.0887658242197711,0.0181223741812336,0.0583353637453252,-0.0631639039718323,0.0924788381411263,-0.0132205273866922,0.0883673486989324,-0.0698837093857383,-0.0757159288537001,0.0544450737311127,0.0157585734150943,0.0391478773584932,-0.00515527254575207,-0.0231054022696051,-0.166921614144505,-0.0109387709030149,0.0497140972931211,-0.0590796930938098,0.00384538619477497,0.0870944427062893,0.0990035672890018,0.0704115912175807,0.00247512887519597,0.0196441669407337,-0.104806217510489,0.0174943444529826,-0.0573384566752607,0.0872121422613524,0.0235408307248634,0.0086742571307094,-0.016941063190364,0.0146318603496601,0.0241617865947722,0.0304182878982255,-0.0252669510749235,0.0243344128950474,-0.0502377902381755,0.0674272880363082,0.0109975492817312,0.087088114064245,0.0407487242593786,-0.0129648849219567,0.00636057397755136,0.131500246802011,-0.0343080601054188,0.0734220269099767,0.124729125795025,0.0690787143620168,0.0376640754209305,0.0141868691417,-0.0609760380335103,0.0282318135729827,0.123278692718576,0.101455757099887,-0.0997488291997101,0.110173960399511,0.0940955230209065,0.106379478365305,0.010073571418241,-0.0308551474798542,0.00465285142130393,0.204812142666449,0.0410558660313476,-0.01069033462088,0.0102830121925032,0.133559955327105,0.0791853677371067,-0.138183897820862,-0.00722211713954799,0.0162791828361729,0.0322363789855789,0.0541302402997918,-0.00146280648987336,0.014419446137496,-0.124184996043785,0.0215732499607639,0.0151626637143315,0.0443455227601392,-0.0607286826779879,-0.0767182969741178,-0.0401314328011068,0.150487734039628,-0.0175504274148971,0.0713198418529533,0.0186255196452054,0.103788487779604,-0.0396578310707178,0.0176886449678889,-0.0489713430712673,-0.0115221944433513,0.132704727014628,0.0405572055732441,0.00666707879507862,0.04409498697998,0.149952121795298,0.117111508452456,0.0273818357169423,0.0329778182626638,-0.102295525258542,-0.00500401097303733,0.0825807897546955,0.0784123615361083,-0.0826584641537378,0.00300357141837889,0.0667479509384091,-0.0610031306548842,-0.0100430126438247,-0.0460748739686317,0.0158645317598353,0.00575732587069904,0.00609586724901208,0.0392982019067154,0.0561169869885902,0.0466493266083457,-0.0348981548567616,0.0436772288928583,-0.00812944634096676,0.0332200006562877,0.0129203587655804,0.106717487176392,0.0333461167169802,-0.033014183005737,-0.0643430582491864,-0.0151557470740889,-0.0491932977697026,0.0276107117399969,0.0255260444834438,-0.10441904325693,0.0221114576803326,0.0502940411871614,0.0348491182139942,0.0181725575040891,-0.0799819389176171,-0.00541594673545164,0.0347360995266431,-0.0160333074177233,0.120159870167985,-0.0124264294257635,0.0324583065696858,-0.0252506122236719,0.136869915782503,0.174713889555048,0.0778737181661815,0.0412862475033327,0.0589437850918033,0.0132712790277356,0.0443766587423708,0.0573609241213431,0.0471945152869252,0.0678562107353735,-0.126375402715185,0.00346286259137325,0.0911808681315309,0.0926673404441317,0.00058493489040278,-0.0924966296619141,-0.0355413937503504,-0.121013333022254,0.102950105400437,0.0754406845433282,-0.0699159742768685,0.00655933919256468,0.050749929469273,-0.043473464220341,0.0795615608176497,-0.033124621734733,0.00263924586223756,0.0313660105532372,-0.0184625058845837,0.0850758157493922,-0.0260333750883725,-0.0334790157625707,-0.065416039614464,0.0728653269387582,0.0826918025406444,-0.0690232508449568,0.121692565641468,-0.0505420888505996,0.0245332389057985,0.0282861669910472,0.121228384376764,-0.0538283022309122,0.117264127693587,0.0582390204935712,0.000618786342714237,0.0593715402689478,-0.00166671919772793,0.0367830841909715,-0.0329519952036756,-0.0843542472987855,0.00499334888408067,-0.0856178883290923,-0.0119260060497134,0.0972620780956993,0.0229050694990733,0.0317734518908808,-0.0603407126592783,0.0542305570792657,0.192260386146342,-0.0273541233139793,-0.0265437227199332,0.0815778771236272,0.0679348831499281,-0.119378436140563,-0.0391535131709772,0.0728779121385816,-0.0272628245283289,-0.0204998380476588,-0.0431809266131819,0.0868891087068241,0.0167814194276571,-0.049705714665302,0.0284093911466826,0.0654337065624655,-0.0349322153859684,-0.0693994472760692,0.0000607855879897258,-0.0858637856415378,-0.0292109352616114,-0.0686462228529582,0.0898166789596855,0.0835674686768299,0.0378483718208361,-0.122643758825576,0.0531707458067618,-0.0221764155265379,-0.0473390878206072,0.0101715360217928,-0.0250382438550548,-0.0911895919979243,-0.0226487482651795,0.0496821542039462,-0.080014141130821,-0.0166347676017305,-0.023800371911747,0.17082222276809,-0.0460712952390224,0.00942568736224152,0.0729873185764646,-0.0300505670070182,0.0720270551295241,0.0328396063699627,0.0452560007159804,0.00782860877132754,-0.0248226341683717,0.0588442744340545,0.0283786991018028,-0.00884947613067873,-0.103632860125649,-0.103041064338507,-0.077894932360172,0.0756559075316064,-0.0398645071553167,-0.0691672290102111,0.00241060059279966,-0.0238555271182005,0.0641456577685737,-0.020971712836442,-0.0422887901277334,0.0913138943063882,0.00823472563569902,-0.0479674602267921,0.0563776867373952,0.0461835339991661,0.0674121410636514,0.00730520489917695,-0.0215329222492249,-0.109054814484044,-0.0102736906647508,0.0649878487171014,0.0894928908050652,0.0599816386176267,0.0831555777305616,-0.0457853783076536,0.0336213217704047,-0.0752167485909545,-0.0226172020007699,0.0576671684873128,-0.00451047197444469,-0.0518874295016772,-0.0376382231627397,-0.00554800381842847,0.130927129713108,-0.0389892071880418,0.0562136888316644,0.0163747485191299,-0.0198396087565027,0.0381073235614189,0.06728169428837,0.0566024387972678,0.0827097097089415,-0.0413625861765871,0.00881498409715016,0.00937858332345154,0.0223682166967405,-0.0421435000285195,0.0500549307540622,-0.109292431786685,0.0711222262537697,0.0160470927461208,0.14531441264783,0.0850454773807537,-0.0185585946221538,0.00415650435614207,0.0452870109397181,-0.100771961360648,0.049042099815304,-0.0539774469250194,-0.0454532449495439,0.0671401147828276,0.0930133726580587,-0.0243949173303085,-0.0464967374215615,-0.0154882142123534,-0.000239374570389773,0.124983010881936,0.0718741467879703,-0.0389626943652744,0.0512742351792616,-0.0175026252882858,0.0724607220642118,0.0976159140848691,0.00221617613073953,-0.0980225420571868,0.142496935985365,0.0582191699410649,0.046539104254779,0.0934070169842469,0.0923259171422035,0.0109902262846625,-0.0692709661385881,-0.0829305632570822,0.0846675816798257,-0.0121925490540785,0.0757550061249923,-0.137379219945583,-0.0416832322386881,-0.00576038937824506,-0.0388617630832948,-0.0452617518402493,0.1036938118407,-0.0352808480560877,0.0184054820402668,-0.0150795823433389,0.019451232444468,0.0208638629268086,0.0980335060904117,-0.0139974433862774,0.116640815402004,-0.0778155287801823,0.0885508229322588,-0.0348338877297108,0.0265192811766976,-0.0722954499461943,0.0605870334078402,0.090801243535764,0.0570854318835591,-0.037427372409396,0.0154042725267808,0.0454947495612824,-0.0531412152543953,-0.0532084488138831,0.0883448753368963,-0.040361744937671,-0.0155694741278652,-0.0163020419143729,-0.0128679352178982,0.150724154222919,0.0572799763165382,-0.00281283581803881,-0.0557030030853642,0.0501790313359628,0.010711684035488,0.0405094203523425,0.0396672254023731,0.0900338195710749,-0.0452558717767533,0.0050248801839135,0.0596118074254335,0.0198848254973829,-0.0271109939037846,0.0235463705875587,0.0971700004404327,-0.00524880678406979,-0.0227702576789909,0.0704943420316642,-0.00100122590694683,-0.0806251674331445,0.0424845457668353,-0.00753852123509288,-0.0168105504880105,0.0175750245179586,-0.0323925161236252,-0.0960702297672103,0.0441001565603534,-0.0222325592733682,-0.00416687052617735,0.0853218464589536,0.0547018367745086,0.0168636891564673,0.132618054940478,-0.0114925078909796,0.0395269072595286,-0.0973360665934366,-0.0236963071408873,0.169190439160558,-0.0128597930258674,-0.0831235878072549,-0.00167304961875437,-0.0634853811338762,0.104396130944213,-0.0473859157420852,-0.079695408239632,-0.00172710193949914,0.0772270441697784,-0.0621261008080447,0.0275609380079296,0.12236602982035,-0.034518859729131,0.147902209714131,-0.0180012219076226,0.144980108151356,-0.0414972408707572,-0.0423371906458324,-0.0351125321905302,0.0574832445709332,-0.0989662280711436,-0.0619041311896089,-0.0006531520733855,0.0725030854917009,0.00101688240339401,0.0760915233449021,0.0673239234099078,0.066408499831206,0.0244633919149759,-0.0843498734091196,0.0119079994690109,0.0616144455419817,-0.0170647245568922,0.193933160984587,0.00156436433572395,0.0243294767697474,0.0767286994398124,0.0541812702490841,0.0720289696294768,0.000613205882531871,0.0604463819926822,0.0565213878733925,-0.104822835786672,0.0241048143033655,-0.0115898605188501,0.0490240849437082,0.0482896706436612,0.012968020411056,0.027588299350038,-0.033875775805325,-0.0464737728234222,0.103044201824027,0.00233671864618257,0.0158346373572979,0.0177410329081301,0.0441135326511545,-0.0729666324714606,0.00996290482025169,0.0311038380847062,0.00409122923864814,0.0187191335284799,0.00428855672418384,0.0223220909456864,0.0684749425720542,0.0173208184256598,0.085049435033124,0.0381789743726189,-0.00159059031668754,-0.0481178305903738,0.0339561918179649,-0.0535367706138402,0.0633193713801498,0.0203868317449689,-0.00670658654377849,-0.0245040819458708,-0.131854692456748,0.0802101138260346,0.128195616938907,-0.110246605301574,0.0560806535637766,0.000282158488725696,0.0446636924577261,0.0334190447874987,0.0230746080718211,-0.00494533225464087,0.0302413277526915,0.0968575761671239,0.115452564392844,0.0824538766879887,-0.023369632516885,-0.0072376389867485,-0.0337437004555783,0.070184430370913,-0.0770967927797007,0.00539686240222343,0.01466219198154,0.00271373858654297,0.095385986329953,0.0296907888499183,0.0429013944743555,-0.00572510656658846,0.0498160322799692,-0.0826540211016727,-0.141827161127442,0.0780310468516368,0.0263183605901808,0.0248930134911044,0.0442151078991287,-0.0449263872738967,0.0378318958569104,0.121832091611784,0.10676111691099,0.0159818681588422,-0.0746384657542018,0.0423832770858328,0.0211644656637871,-0.0392171878706371,0.0731647974488191,-0.0446321855505855,-0.0872173905783074,-0.000594463420371932,0.0297600693674216,0.0273610219290791,-0.0452028766692016,0.133776800552687,-0.114294180728939,0.0811295027782873,0.143703909315551,-0.0307357350590242,0.0351856541750128,0.0062306751104171,0.0129857130907788,-0.0799380878875629,-0.024877028340813,0.0629916567251106,0.00530480665323892,0.0509500637748799,0.0499164557019934,0.0997775015606752,0.00851273675735146,0.0669374923185431,0.065668584843693,0.0845607819017392,0.0438789401405232,0.0567930851260652,-0.023172851662869,0.0908158486671959,0.0078106040666661,-0.000595174892286919,-0.0330685371661212,0.0265419061250482,0.0806028570830844,-0.0265711825518465,0.0316194711457044,-0.0664242358050105,-0.0208140450299272,0.0388212400472145,-0.0501760213327476,-0.0475501939000935,0.0193349250177105,-0.0494225312948331,-0.0476945213851646,0.111743805605017,-0.0806124476029294,-0.113217153113659,-0.0406038173409014,-0.00641976302404866,-0.0284820439068854,0.0995805674683816,-0.0148748561819769,-0.0101557785996468,-0.128633413109139,0.0826114952430839,-0.100485113408657,-0.0410883242799405,-0.1272454896796,-0.052914048782504,-0.00216130275599378,-0.0631683699211755,-0.0125560517450564,-0.0810070008132081,0.0448672746049409,0.0926985506130747,0.056114796704446,-0.0286893786148934,0.0872727169229217,0.175830778068316,0.0324281858849525,-0.00862939270170902,0.0376672043431635,0.0251231151513369,0.0336401873669379,0.0305822383249326,0.0302327588563019,-0.00132747111418669,-0.0767613927008938,0.10755594200004,0.00953955926254206,0.0578825186635531,0.0571617665694337,0.12795526411527,0.0183131395546398,-0.0613750184341732,-0.0649869906596586,0.0285562090693803,0.074440287042664,-0.0290470902425754,-0.0728062717190254,0.0610528716492269,0.0709780084241228,-0.0377854151223566,0.102609519682763,0.0441006711714066,-0.0591690768721516,-0.079573543424454],\"yaxis\":\"y\",\"type\":\"scattergl\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"試行数\"}},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"スコア\"}},\"legend\":{\"title\":{\"text\":\"variable\"},\"tracegroupgap\":0},\"title\":{\"text\":\"スコアの変化\"}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('04600be6-4d52-4477-a6f9-3cee34ffccc7');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; </script> </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {}
}
],
"source": [
"fig = px.line(Score, x=Score.index, y=Score.columns, title='スコアの変化')\n",
"fig.update_layout(xaxis_title='試行数', yaxis_title='スコア')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "xxgyjbwxnBeK"
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "vis23",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
},
"colab": {
"provenance": [],
"include_colab_link": true
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Greedy ε-Greedy (ε=0.01) ε-Greedy (ε=0.1) Random
0.108 0.108 0.096 0.092
0.148 0.158 0.126 0.112
0.184 0.196 0.154 0.086
0.212 0.228 0.17 0.106
0.226 0.244 0.202 0.092
0.236 0.248 0.226 0.104
0.242 0.278 0.236 0.1
0.258 0.282 0.254 0.076
0.274 0.298 0.256 0.082
0.282 0.312 0.262 0.102
0.292 0.326 0.276 0.106
0.292 0.326 0.296 0.106
0.302 0.334 0.3 0.106
0.304 0.346 0.294 0.1
0.312 0.344 0.308 0.088
0.318 0.348 0.324 0.104
0.324 0.358 0.326 0.078
0.326 0.36 0.334 0.082
0.326 0.368 0.322 0.12
0.326 0.366 0.348 0.092
0.328 0.366 0.36 0.082
0.326 0.368 0.362 0.11
0.326 0.368 0.344 0.066
0.33 0.372 0.364 0.126
0.33 0.37 0.358 0.096
0.332 0.374 0.36 0.118
0.334 0.376 0.378 0.104
0.334 0.374 0.382 0.102
0.334 0.374 0.374 0.118
0.334 0.378 0.37 0.1
0.336 0.382 0.38 0.088
0.336 0.378 0.372 0.086
0.338 0.38 0.386 0.092
0.34 0.38 0.394 0.102
0.342 0.384 0.394 0.096
0.342 0.38 0.404 0.128
0.342 0.38 0.414 0.106
0.342 0.386 0.416 0.098
0.342 0.38 0.416 0.118
0.342 0.386 0.408 0.094
0.344 0.384 0.434 0.108
0.342 0.376 0.422 0.114
0.342 0.384 0.444 0.118
0.342 0.38 0.398 0.098
0.342 0.38 0.416 0.076
0.344 0.382 0.456 0.102
0.344 0.382 0.438 0.096
0.344 0.388 0.436 0.138
0.344 0.388 0.422 0.088
0.344 0.39 0.442 0.098
0.346 0.392 0.43 0.1
0.346 0.384 0.45 0.098
0.346 0.388 0.44 0.1
0.348 0.386 0.454 0.084
0.348 0.392 0.454 0.112
0.35 0.392 0.45 0.118
0.35 0.39 0.46 0.104
0.35 0.392 0.464 0.086
0.35 0.384 0.458 0.098
0.35 0.388 0.434 0.106
0.35 0.394 0.462 0.076
0.35 0.398 0.452 0.08
0.35 0.402 0.466 0.092
0.352 0.4 0.472 0.124
0.352 0.402 0.474 0.114
0.352 0.404 0.458 0.104
0.352 0.402 0.49 0.096
0.352 0.4 0.486 0.096
0.352 0.408 0.482 0.09
0.352 0.402 0.478 0.106
0.352 0.406 0.49 0.1
0.352 0.398 0.49 0.082
0.352 0.406 0.482 0.094
0.352 0.408 0.506 0.086
0.354 0.4 0.506 0.1
0.354 0.404 0.51 0.094
0.354 0.404 0.51 0.092
0.354 0.402 0.522 0.114
0.354 0.404 0.52 0.128
0.354 0.404 0.528 0.108
0.354 0.41 0.516 0.108
0.354 0.402 0.514 0.112
0.354 0.402 0.52 0.088
0.354 0.408 0.528 0.106
0.354 0.398 0.53 0.084
0.354 0.406 0.524 0.094
0.354 0.408 0.536 0.108
0.354 0.412 0.522 0.096
0.354 0.408 0.55 0.108
0.354 0.412 0.548 0.112
0.354 0.412 0.524 0.082
0.354 0.412 0.532 0.114
0.354 0.414 0.564 0.112
0.354 0.41 0.568 0.116
0.354 0.406 0.54 0.126
0.354 0.408 0.544 0.096
0.354 0.412 0.546 0.11
0.354 0.404 0.562 0.064
0.354 0.408 0.562 0.094
0.354 0.406 0.564 0.102
0.356 0.408 0.556 0.092
0.356 0.408 0.584 0.088
0.356 0.408 0.588 0.094
0.356 0.41 0.574 0.106
0.356 0.422 0.574 0.112
0.356 0.414 0.58 0.102
0.356 0.416 0.57 0.074
0.356 0.412 0.568 0.098
0.356 0.418 0.57 0.104
0.356 0.414 0.576 0.12
0.356 0.418 0.554 0.112
0.356 0.418 0.562 0.098
0.356 0.416 0.568 0.106
0.356 0.416 0.568 0.084
0.356 0.414 0.57 0.082
0.356 0.416 0.57 0.12
0.356 0.416 0.576 0.108
0.356 0.422 0.584 0.08
0.356 0.42 0.588 0.11
0.356 0.424 0.58 0.108
0.356 0.418 0.576 0.098
0.356 0.416 0.578 0.074
0.356 0.422 0.59 0.086
0.356 0.418 0.57 0.086
0.356 0.418 0.578 0.102
0.356 0.424 0.58 0.104
0.356 0.424 0.576 0.078
0.356 0.422 0.584 0.078
0.356 0.418 0.586 0.126
0.356 0.422 0.598 0.102
0.356 0.422 0.6 0.108
0.356 0.418 0.602 0.112
0.356 0.42 0.596 0.084
0.356 0.424 0.584 0.098
0.356 0.422 0.61 0.106
0.356 0.426 0.562 0.114
0.356 0.424 0.574 0.102
0.356 0.432 0.582 0.102
0.356 0.426 0.598 0.088
0.356 0.43 0.608 0.09
0.356 0.428 0.58 0.092
0.356 0.426 0.608 0.078
0.356 0.43 0.594 0.112
0.356 0.428 0.606 0.114
0.356 0.428 0.598 0.078
0.356 0.428 0.608 0.074
0.356 0.43 0.602 0.084
0.356 0.43 0.59 0.108
0.356 0.426 0.606 0.086
0.358 0.43 0.61 0.096
0.358 0.422 0.594 0.1
0.358 0.428 0.594 0.116
0.358 0.426 0.592 0.114
0.358 0.43 0.608 0.122
0.358 0.432 0.612 0.1
0.358 0.428 0.618 0.102
0.358 0.43 0.626 0.086
0.358 0.432 0.606 0.104
0.358 0.432 0.608 0.102
0.358 0.436 0.628 0.108
0.358 0.436 0.616 0.114
0.358 0.436 0.598 0.098
0.358 0.428 0.63 0.098
0.358 0.434 0.626 0.106
0.358 0.434 0.596 0.088
0.358 0.436 0.638 0.082
0.358 0.436 0.626 0.092
0.358 0.434 0.61 0.1
0.358 0.43 0.616 0.132
0.358 0.434 0.598 0.094
0.358 0.436 0.612 0.104
0.358 0.44 0.602 0.084
0.358 0.436 0.614 0.102
0.358 0.436 0.614 0.112
0.358 0.436 0.636 0.106
0.358 0.44 0.63 0.092
0.358 0.44 0.624 0.084
0.358 0.438 0.638 0.106
0.358 0.434 0.626 0.084
0.358 0.436 0.626 0.12
0.358 0.436 0.634 0.1
0.358 0.44 0.632 0.094
0.358 0.436 0.62 0.112
0.358 0.438 0.614 0.056
0.358 0.442 0.656 0.092
0.358 0.438 0.64 0.114
0.358 0.442 0.638 0.09
0.358 0.436 0.628 0.096
0.358 0.438 0.642 0.08
0.358 0.438 0.622 0.082
0.358 0.442 0.624 0.11
0.358 0.438 0.642 0.096
0.358 0.438 0.64 0.102
0.358 0.438 0.64 0.106
0.358 0.442 0.624 0.116
0.358 0.442 0.642 0.084
0.358 0.438 0.642 0.086
0.358 0.438 0.628 0.102
0.358 0.448 0.636 0.1
0.358 0.446 0.622 0.088
0.358 0.444 0.638 0.102
0.358 0.446 0.652 0.112
0.358 0.45 0.646 0.104
0.358 0.45 0.658 0.114
0.358 0.446 0.646 0.112
0.358 0.45 0.65 0.09
0.358 0.448 0.65 0.114
0.358 0.446 0.646 0.082
0.358 0.45 0.636 0.09
0.358 0.454 0.646 0.098
0.358 0.45 0.622 0.108
0.358 0.456 0.63 0.098
0.358 0.452 0.654 0.088
0.358 0.446 0.636 0.098
0.358 0.448 0.644 0.114
0.358 0.452 0.652 0.092
0.358 0.448 0.648 0.102
0.358 0.45 0.64 0.1
0.358 0.446 0.676 0.112
0.358 0.45 0.656 0.11
0.358 0.452 0.644 0.114
0.358 0.45 0.654 0.088
0.358 0.454 0.636 0.09
0.358 0.452 0.63 0.108
0.358 0.452 0.654 0.096
0.358 0.458 0.642 0.102
0.358 0.45 0.638 0.106
0.358 0.448 0.65 0.084
0.358 0.45 0.648 0.1
0.358 0.45 0.644 0.082
0.358 0.452 0.668 0.088
0.358 0.454 0.658 0.096
0.358 0.458 0.664 0.088
0.358 0.458 0.654 0.112
0.358 0.454 0.636 0.106
0.358 0.454 0.666 0.138
0.358 0.454 0.638 0.106
0.358 0.452 0.65 0.104
0.358 0.454 0.648 0.07
0.358 0.456 0.66 0.072
0.358 0.452 0.658 0.112
0.358 0.452 0.656 0.122
0.358 0.454 0.67 0.098
0.358 0.452 0.672 0.096
0.358 0.452 0.666 0.096
0.358 0.454 0.66 0.122
0.358 0.452 0.668 0.114
0.358 0.45 0.66 0.078
0.358 0.456 0.66 0.12
0.358 0.456 0.664 0.088
0.358 0.458 0.674 0.09
0.358 0.462 0.662 0.11
0.358 0.456 0.668 0.088
0.358 0.458 0.67 0.09
0.358 0.46 0.66 0.116
0.358 0.454 0.666 0.078
0.358 0.46 0.648 0.092
0.358 0.45 0.678 0.082
0.36 0.452 0.656 0.078
0.36 0.454 0.678 0.1
0.36 0.45 0.674 0.094
0.36 0.454 0.676 0.104
0.36 0.458 0.656 0.098
0.36 0.458 0.67 0.09
0.36 0.46 0.664 0.08
0.36 0.46 0.644 0.116
0.36 0.464 0.682 0.082
0.36 0.462 0.66 0.098
0.36 0.462 0.664 0.114
0.36 0.462 0.674 0.104
0.36 0.462 0.668 0.12
0.36 0.462 0.678 0.118
0.36 0.456 0.682 0.092
0.36 0.458 0.704 0.088
0.36 0.464 0.646 0.102
0.36 0.46 0.688 0.104
0.36 0.462 0.68 0.088
0.36 0.464 0.668 0.092
0.36 0.458 0.68 0.102
0.36 0.462 0.674 0.1
0.36 0.464 0.676 0.108
0.36 0.466 0.67 0.086
0.36 0.466 0.67 0.084
0.36 0.468 0.692 0.108
0.36 0.462 0.672 0.094
0.36 0.468 0.678 0.116
0.36 0.462 0.68 0.088
0.36 0.468 0.684 0.098
0.36 0.464 0.688 0.114
0.36 0.456 0.672 0.122
0.36 0.47 0.668 0.1
0.36 0.464 0.696 0.106
0.36 0.464 0.68 0.114
0.36 0.466 0.664 0.08
0.36 0.468 0.69 0.112
0.36 0.468 0.69 0.096
0.36 0.468 0.702 0.094
0.36 0.468 0.704 0.084
0.36 0.466 0.672 0.098
0.36 0.468 0.682 0.1
0.36 0.464 0.678 0.114
0.36 0.464 0.682 0.11
0.36 0.464 0.668 0.098
0.36 0.462 0.682 0.116
0.36 0.456 0.674 0.124
0.36 0.466 0.714 0.088
0.36 0.466 0.674 0.106
0.36 0.466 0.692 0.108
0.36 0.474 0.694 0.112
0.36 0.472 0.702 0.092
0.36 0.466 0.69 0.102
0.36 0.468 0.69 0.114
0.36 0.476 0.686 0.104
0.36 0.472 0.666 0.062
0.36 0.474 0.684 0.082
0.36 0.474 0.69 0.09
0.36 0.466 0.678 0.088
0.36 0.476 0.662 0.086
0.36 0.474 0.698 0.11
0.36 0.468 0.694 0.104
0.36 0.472 0.686 0.092
0.36 0.47 0.708 0.13
0.36 0.472 0.688 0.116
0.36 0.476 0.692 0.118
0.36 0.476 0.69 0.086
0.36 0.472 0.702 0.124
0.36 0.476 0.686 0.114
0.36 0.474 0.696 0.08
0.36 0.478 0.694 0.086
0.36 0.476 0.688 0.104
0.36 0.48 0.69 0.12
0.36 0.478 0.69 0.104
0.36 0.474 0.706 0.104
0.36 0.47 0.69 0.096
0.36 0.474 0.704 0.088
0.36 0.476 0.696 0.096
0.36 0.476 0.698 0.118
0.36 0.472 0.678 0.108
0.36 0.476 0.724 0.112
0.36 0.476 0.672 0.106
0.36 0.482 0.696 0.114
0.36 0.476 0.696 0.066
0.36 0.476 0.696 0.096
0.36 0.476 0.696 0.106
0.36 0.476 0.682 0.096
0.36 0.482 0.678 0.086
0.36 0.48 0.692 0.092
0.36 0.484 0.688 0.096
0.36 0.484 0.676 0.088
0.36 0.482 0.698 0.096
0.36 0.48 0.688 0.07
0.36 0.48 0.716 0.098
0.36 0.478 0.688 0.082
0.36 0.484 0.7 0.104
0.36 0.484 0.706 0.096
0.36 0.482 0.686 0.1
0.36 0.476 0.698 0.092
0.36 0.482 0.704 0.06
0.36 0.482 0.69 0.082
0.36 0.482 0.716 0.112
0.36 0.488 0.692 0.102
0.36 0.486 0.708 0.09
0.36 0.488 0.718 0.108
0.36 0.486 0.692 0.08
0.36 0.49 0.698 0.094
0.36 0.488 0.7 0.116
0.36 0.48 0.682 0.086
0.36 0.486 0.726 0.092
0.36 0.486 0.684 0.114
0.36 0.484 0.7 0.116
0.36 0.482 0.716 0.104
0.36 0.488 0.716 0.098
0.36 0.488 0.696 0.09
0.36 0.492 0.704 0.096
0.36 0.492 0.708 0.082
0.36 0.484 0.716 0.096
0.36 0.49 0.726 0.086
0.36 0.492 0.714 0.096
0.36 0.484 0.718 0.112
0.36 0.49 0.716 0.066
0.36 0.494 0.706 0.11
0.36 0.494 0.732 0.116
0.36 0.496 0.7 0.066
0.36 0.494 0.722 0.09
0.36 0.494 0.702 0.102
0.36 0.498 0.708 0.098
0.36 0.498 0.704 0.122
0.36 0.494 0.698 0.09
0.36 0.488 0.692 0.112
0.36 0.494 0.71 0.106
0.36 0.488 0.7 0.108
0.36 0.494 0.714 0.128
0.36 0.492 0.698 0.112
0.36 0.486 0.68 0.084
0.36 0.494 0.698 0.104
0.36 0.492 0.708 0.108
0.36 0.496 0.718 0.086
0.36 0.492 0.704 0.104
0.36 0.492 0.722 0.102
0.36 0.498 0.72 0.118
0.36 0.492 0.72 0.118
0.36 0.498 0.706 0.12
0.36 0.494 0.732 0.108
0.36 0.49 0.704 0.08
0.36 0.494 0.736 0.128
0.36 0.49 0.716 0.088
0.36 0.49 0.752 0.11
0.36 0.492 0.706 0.094
0.36 0.488 0.716 0.134
0.36 0.488 0.724 0.094
0.36 0.492 0.722 0.096
0.36 0.494 0.74 0.108
0.36 0.494 0.73 0.098
0.36 0.494 0.718 0.058
0.36 0.494 0.706 0.114
0.36 0.496 0.73 0.09
0.36 0.488 0.744 0.11
0.36 0.494 0.724 0.108
0.36 0.492 0.708 0.104
0.36 0.496 0.74 0.114
0.36 0.492 0.7 0.088
0.36 0.494 0.706 0.096
0.36 0.496 0.74 0.136
0.36 0.49 0.7 0.098
0.36 0.488 0.72 0.11
0.36 0.498 0.73 0.124
0.36 0.498 0.718 0.106
0.36 0.496 0.724 0.13
0.36 0.488 0.714 0.114
0.36 0.49 0.736 0.092
0.36 0.492 0.746 0.112
0.36 0.492 0.714 0.084
0.36 0.498 0.746 0.102
0.36 0.492 0.718 0.068
0.36 0.498 0.74 0.096
0.36 0.498 0.726 0.102
0.36 0.496 0.752 0.12
0.36 0.498 0.72 0.11
0.36 0.5 0.742 0.09
0.36 0.498 0.724 0.078
0.36 0.504 0.716 0.116
0.36 0.498 0.73 0.112
0.36 0.502 0.73 0.122
0.36 0.5 0.732 0.11
0.36 0.504 0.74 0.106
0.36 0.5 0.75 0.124
0.36 0.506 0.722 0.102
0.36 0.498 0.738 0.094
0.36 0.5 0.746 0.086
0.36 0.5 0.722 0.114
0.36 0.504 0.708 0.088
0.36 0.504 0.712 0.124
0.36 0.508 0.752 0.116
0.36 0.498 0.732 0.086
0.36 0.508 0.724 0.11
0.36 0.508 0.748 0.112
0.36 0.51 0.744 0.12
0.36 0.506 0.738 0.09
0.36 0.512 0.734 0.092
0.36 0.504 0.744 0.072
0.36 0.506 0.748 0.124
0.36 0.51 0.752 0.078
0.36 0.508 0.748 0.078
0.36 0.504 0.74 0.09
0.36 0.51 0.716 0.102
0.36 0.506 0.736 0.094
0.36 0.51 0.738 0.122
0.36 0.502 0.74 0.104
0.36 0.512 0.752 0.092
0.36 0.502 0.756 0.092
0.36 0.504 0.728 0.114
0.36 0.506 0.766 0.112
0.36 0.506 0.744 0.088
0.36 0.502 0.74 0.12
0.36 0.512 0.756 0.104
0.36 0.504 0.748 0.098
0.36 0.502 0.738 0.092
0.36 0.51 0.74 0.1
0.36 0.506 0.758 0.104
0.36 0.508 0.74 0.104
0.36 0.508 0.756 0.114
0.36 0.514 0.734 0.104
0.36 0.508 0.756 0.116
0.36 0.514 0.744 0.092
0.36 0.512 0.738 0.088
0.36 0.512 0.718 0.072
0.36 0.512 0.742 0.118
0.36 0.506 0.744 0.072
0.36 0.506 0.744 0.102
0.36 0.51 0.754 0.098
0.36 0.508 0.742 0.108
0.36 0.502 0.73 0.088
0.36 0.51 0.728 0.062
0.36 0.508 0.734 0.066
0.36 0.508 0.754 0.08
0.36 0.51 0.736 0.09
0.36 0.512 0.724 0.104
0.36 0.51 0.742 0.1
0.36 0.514 0.732 0.102
0.36 0.514 0.742 0.09
0.36 0.506 0.742 0.096
0.36 0.516 0.76 0.072
0.36 0.516 0.734 0.1
0.36 0.514 0.73 0.078
0.36 0.51 0.754 0.092
0.36 0.514 0.75 0.092
0.36 0.506 0.728 0.102
0.36 0.514 0.746 0.094
0.36 0.516 0.762 0.11
0.36 0.518 0.752 0.124
0.36 0.512 0.752 0.114
0.36 0.512 0.754 0.108
0.36 0.514 0.752 0.074
0.36 0.512 0.736 0.096
0.36 0.516 0.752 0.11
0.36 0.516 0.744 0.112
0.36 0.516 0.744 0.116
0.36 0.514 0.752 0.102
0.36 0.518 0.746 0.088
0.36 0.522 0.754 0.124
0.36 0.522 0.754 0.118
0.36 0.516 0.75 0.106
0.36 0.518 0.782 0.1
0.36 0.518 0.766 0.11
0.36 0.514 0.768 0.108
0.36 0.522 0.744 0.086
0.36 0.52 0.74 0.118
0.36 0.52 0.764 0.106
0.36 0.516 0.738 0.106
0.36 0.516 0.734 0.102
0.36 0.522 0.738 0.098
0.36 0.518 0.724 0.126
0.36 0.52 0.752 0.104
0.36 0.524 0.762 0.078
0.36 0.516 0.776 0.094
0.36 0.518 0.744 0.09
0.36 0.526 0.764 0.094
0.36 0.522 0.762 0.114
0.36 0.526 0.744 0.12
0.36 0.526 0.748 0.07
0.36 0.522 0.748 0.1
0.36 0.524 0.77 0.094
0.36 0.518 0.796 0.116
0.36 0.526 0.78 0.114
0.36 0.52 0.752 0.09
0.36 0.524 0.762 0.12
0.36 0.524 0.77 0.102
0.36 0.52 0.742 0.094
0.36 0.524 0.756 0.1
0.36 0.524 0.766 0.096
0.36 0.526 0.762 0.09
0.36 0.524 0.766 0.092
0.36 0.53 0.746 0.108
0.36 0.534 0.758 0.122
0.36 0.526 0.752 0.08
0.36 0.528 0.772 0.134
0.36 0.526 0.748 0.102
0.36 0.528 0.752 0.086
0.36 0.53 0.748 0.1
0.36 0.53 0.736 0.118
0.36 0.528 0.748 0.082
0.36 0.528 0.752 0.132
0.36 0.53 0.766 0.112
0.36 0.532 0.746 0.088
0.36 0.526 0.78 0.072
0.36 0.534 0.784 0.12
0.36 0.534 0.756 0.098
0.36 0.524 0.76 0.106
0.36 0.53 0.76 0.086
0.36 0.532 0.772 0.094
0.36 0.53 0.762 0.092
0.36 0.534 0.766 0.1
0.36 0.53 0.778 0.106
0.36 0.534 0.784 0.092
0.36 0.53 0.776 0.084
0.36 0.532 0.764 0.108
0.36 0.532 0.77 0.112
0.36 0.534 0.782 0.108
0.36 0.526 0.758 0.102
0.36 0.53 0.774 0.1
0.36 0.528 0.774 0.11
0.36 0.53 0.772 0.108
0.36 0.534 0.762 0.094
0.36 0.528 0.772 0.094
0.36 0.53 0.762 0.094
0.36 0.528 0.77 0.082
0.36 0.532 0.758 0.106
0.36 0.534 0.77 0.104
0.36 0.536 0.762 0.138
0.36 0.532 0.77 0.11
0.36 0.53 0.746 0.104
0.36 0.536 0.754 0.102
0.36 0.536 0.746 0.096
0.36 0.532 0.758 0.098
0.36 0.534 0.77 0.11
0.36 0.532 0.762 0.086
0.36 0.534 0.768 0.084
0.36 0.532 0.746 0.094
0.36 0.534 0.782 0.092
0.36 0.536 0.734 0.1
0.36 0.54 0.778 0.112
0.36 0.53 0.772 0.096
0.36 0.536 0.786 0.084
0.36 0.536 0.768 0.084
0.36 0.534 0.768 0.1
0.36 0.536 0.772 0.11
0.36 0.54 0.762 0.102
0.36 0.538 0.76 0.098
0.36 0.538 0.738 0.11
0.36 0.534 0.776 0.09
0.36 0.544 0.772 0.132
0.36 0.542 0.748 0.09
0.36 0.542 0.768 0.08
0.36 0.536 0.76 0.092
0.36 0.534 0.758 0.144
0.36 0.542 0.762 0.092
0.36 0.544 0.76 0.11
0.36 0.542 0.766 0.108
0.36 0.548 0.778 0.098
0.36 0.542 0.754 0.088
0.36 0.546 0.746 0.102
0.36 0.546 0.778 0.126
0.36 0.546 0.792 0.092
0.36 0.542 0.788 0.104
0.36 0.542 0.756 0.114
0.36 0.55 0.76 0.104
0.36 0.552 0.772 0.11
0.36 0.55 0.774 0.11
0.36 0.536 0.774 0.08
0.36 0.548 0.774 0.078
0.36 0.55 0.754 0.102
0.36 0.544 0.782 0.108
0.36 0.552 0.756 0.09
0.36 0.544 0.774 0.116
0.36 0.55 0.758 0.1
0.36 0.542 0.774 0.106
0.36 0.546 0.764 0.108
0.36 0.548 0.762 0.112
0.36 0.546 0.78 0.112
0.36 0.54 0.79 0.096
0.36 0.546 0.766 0.098
0.36 0.548 0.772 0.126
0.36 0.54 0.77 0.112
0.36 0.546 0.77 0.116
0.36 0.548 0.772 0.098
0.36 0.55 0.76 0.092
0.36 0.55 0.776 0.09
0.36 0.55 0.766 0.092
0.36 0.55 0.748 0.116
0.36 0.548 0.766 0.12
0.36 0.558 0.768 0.116
0.36 0.55 0.762 0.098
0.36 0.56 0.766 0.076
0.36 0.556 0.756 0.116
0.36 0.554 0.754 0.112
0.36 0.554 0.766 0.104
0.36 0.558 0.782 0.104
0.36 0.558 0.774 0.082
0.36 0.562 0.776 0.118
0.36 0.556 0.752 0.09
0.36 0.56 0.792 0.104
0.36 0.558 0.776 0.1
0.36 0.558 0.752 0.096
0.36 0.564 0.786 0.098
0.36 0.558 0.758 0.108
0.36 0.562 0.766 0.096
0.36 0.558 0.784 0.108
0.36 0.56 0.764 0.1
0.36 0.556 0.788 0.098
0.36 0.56 0.764 0.098
0.36 0.552 0.756 0.104
0.36 0.554 0.772 0.112
0.36 0.56 0.762 0.104
0.36 0.556 0.786 0.104
0.36 0.556 0.784 0.086
0.36 0.556 0.776 0.104
0.36 0.56 0.784 0.082
0.36 0.56 0.76 0.1
0.36 0.56 0.778 0.102
0.36 0.556 0.784 0.098
0.36 0.556 0.776 0.098
0.36 0.558 0.768 0.092
0.36 0.56 0.756 0.116
0.36 0.55 0.776 0.09
0.36 0.548 0.78 0.078
0.36 0.558 0.766 0.084
0.36 0.552 0.77 0.074
0.36 0.556 0.786 0.098
0.36 0.558 0.79 0.108
0.36 0.56 0.788 0.102
0.36 0.56 0.764 0.086
0.36 0.558 0.792 0.092
0.36 0.56 0.788 0.086
0.36 0.562 0.77 0.076
0.36 0.558 0.764 0.12
0.36 0.556 0.786 0.116
0.36 0.56 0.77 0.1
0.36 0.558 0.774 0.116
0.36 0.564 0.798 0.088
0.36 0.558 0.77 0.096
0.36 0.562 0.762 0.094
0.36 0.564 0.766 0.086
0.36 0.564 0.766 0.082
0.36 0.566 0.792 0.084
0.36 0.564 0.79 0.114
0.36 0.564 0.766 0.11
0.36 0.566 0.758 0.108
0.36 0.566 0.784 0.098
0.36 0.562 0.76 0.106
0.36 0.56 0.782 0.088
0.36 0.56 0.762 0.096
0.36 0.552 0.762 0.1
0.36 0.566 0.774 0.1
0.36 0.564 0.776 0.112
0.36 0.558 0.794 0.096
0.36 0.566 0.776 0.082
0.36 0.564 0.766 0.098
0.36 0.568 0.756 0.116
0.36 0.562 0.79 0.098
0.36 0.564 0.78 0.116
0.36 0.568 0.794 0.106
0.36 0.572 0.772 0.116
0.36 0.57 0.752 0.088
0.36 0.572 0.768 0.092
0.36 0.562 0.772 0.112
0.36 0.568 0.76 0.102
0.36 0.56 0.774 0.138
0.36 0.564 0.758 0.106
0.36 0.57 0.762 0.086
0.36 0.572 0.776 0.098
0.36 0.568 0.774 0.1
0.36 0.568 0.778 0.084
0.36 0.57 0.774 0.098
0.36 0.568 0.788 0.122
0.36 0.57 0.776 0.11
0.36 0.566 0.768 0.118
0.36 0.57 0.786 0.082
0.36 0.562 0.772 0.11
0.36 0.574 0.788 0.11
0.36 0.566 0.786 0.084
0.36 0.57 0.772 0.096
0.36 0.568 0.782 0.126
0.36 0.572 0.78 0.086
0.36 0.572 0.78 0.108
0.36 0.572 0.794 0.114
0.36 0.564 0.78 0.074
0.36 0.57 0.792 0.104
0.36 0.572 0.786 0.114
0.36 0.564 0.776 0.098
0.36 0.566 0.778 0.092
0.36 0.574 0.776 0.106
0.36 0.574 0.784 0.112
0.36 0.57 0.786 0.112
0.36 0.57 0.788 0.104
0.36 0.57 0.804 0.086
0.36 0.57 0.796 0.096
0.36 0.576 0.792 0.108
0.36 0.57 0.772 0.094
0.36 0.558 0.778 0.096
0.36 0.574 0.804 0.08
0.36 0.572 0.746 0.102
0.36 0.58 0.76 0.108
0.36 0.574 0.756 0.084
0.36 0.58 0.794 0.074
0.36 0.572 0.79 0.104
0.36 0.564 0.78 0.098
0.36 0.576 0.788 0.078
0.36 0.574 0.77 0.094
0.36 0.572 0.79 0.09
0.36 0.568 0.796 0.108
0.36 0.572 0.784 0.1
0.36 0.58 0.788 0.094
0.36 0.574 0.774 0.096
0.36 0.578 0.772 0.12
0.36 0.58 0.772 0.1
0.36 0.58 0.81 0.086
0.36 0.574 0.786 0.11
0.36 0.576 0.78 0.102
0.36 0.58 0.78 0.086
0.36 0.578 0.766 0.114
0.36 0.574 0.796 0.1
0.36 0.57 0.786 0.104
0.36 0.574 0.768 0.064
0.36 0.578 0.792 0.1
0.36 0.578 0.784 0.108
0.36 0.578 0.758 0.102
0.36 0.578 0.772 0.086
0.36 0.58 0.798 0.11
0.36 0.582 0.788 0.114
0.36 0.58 0.804 0.116
0.36 0.566 0.79 0.082
0.36 0.576 0.782 0.12
0.36 0.578 0.776 0.128
0.36 0.576 0.776 0.12
0.36 0.576 0.784 0.09
0.36 0.582 0.804 0.112
0.36 0.58 0.792 0.108
0.36 0.58 0.794 0.092
0.36 0.574 0.788 0.116
0.36 0.584 0.782 0.096
0.36 0.576 0.8 0.116
0.36 0.582 0.8 0.116
0.36 0.58 0.8 0.092
0.36 0.58 0.796 0.1
0.36 0.582 0.804 0.104
0.36 0.576 0.802 0.098
0.36 0.574 0.792 0.104
0.36 0.578 0.786 0.104
0.36 0.582 0.81 0.124
0.36 0.576 0.802 0.11
0.36 0.576 0.788 0.078
0.36 0.578 0.784 0.076
0.36 0.582 0.78 0.08
0.36 0.576 0.782 0.09
0.36 0.58 0.772 0.098
0.36 0.576 0.796 0.092
0.36 0.58 0.77 0.08
0.36 0.584 0.776 0.102
0.36 0.58 0.786 0.124
0.36 0.584 0.806 0.118
0.36 0.584 0.788 0.096
0.36 0.584 0.764 0.12
0.36 0.586 0.794 0.114
0.36 0.588 0.804 0.108
0.36 0.578 0.79 0.118
0.36 0.58 0.798 0.1
0.36 0.584 0.814 0.108
0.36 0.582 0.782 0.082
0.36 0.58 0.826 0.116
0.36 0.584 0.774 0.088
0.36 0.584 0.804 0.094
0.36 0.584 0.814 0.084
0.36 0.584 0.8 0.096
0.36 0.584 0.784 0.084
0.36 0.586 0.776 0.088
0.36 0.586 0.8 0.096
0.36 0.588 0.786 0.122
0.36 0.582 0.8 0.09
0.36 0.588 0.808 0.088
0.36 0.588 0.792 0.102
0.36 0.582 0.784 0.114
0.36 0.586 0.79 0.124
0.36 0.59 0.81 0.08
0.36 0.586 0.77 0.106
0.36 0.58 0.812 0.086
0.36 0.584 0.788 0.074
0.36 0.586 0.808 0.094
0.36 0.58 0.784 0.118
0.36 0.58 0.804 0.102
0.36 0.584 0.8 0.1
0.36 0.584 0.802 0.096
0.36 0.592 0.782 0.124
0.36 0.578 0.802 0.122
0.36 0.59 0.798 0.074
0.36 0.59 0.796 0.11
0.36 0.582 0.828 0.106
0.36 0.588 0.79 0.106
0.36 0.594 0.804 0.124
0.36 0.584 0.796 0.09
0.36 0.59 0.796 0.112
0.36 0.578 0.798 0.074
0.36 0.592 0.814 0.122
0.36 0.59 0.802 0.106
0.36 0.592 0.79 0.096
0.36 0.588 0.796 0.094
0.36 0.594 0.784 0.096
0.36 0.594 0.82 0.092
0.36 0.59 0.798 0.086
0.36 0.598 0.82 0.086
0.36 0.594 0.784 0.112
0.36 0.596 0.818 0.1
0.36 0.596 0.81 0.112
0.36 0.596 0.802 0.13
0.36 0.592 0.782 0.102
0.36 0.592 0.8 0.108
0.36 0.592 0.81 0.106
0.36 0.594 0.8 0.1
0.36 0.6 0.788 0.088
0.36 0.602 0.802 0.092
0.36 0.604 0.808 0.106
0.36 0.602 0.788 0.082
0.36 0.608 0.796 0.098
0.36 0.602 0.794 0.114
0.36 0.606 0.8 0.092
0.36 0.608 0.804 0.086
0.36 0.608 0.792 0.108
0.36 0.608 0.808 0.11
0.36 0.608 0.808 0.086
0.36 0.608 0.794 0.078
0.36 0.606 0.776 0.102
0.36 0.602 0.796 0.114
0.36 0.608 0.804 0.084
0.36 0.606 0.802 0.098
0.36 0.6 0.794 0.106
0.36 0.608 0.786 0.102
0.36 0.596 0.766 0.116
0.36 0.6 0.806 0.122
0.36 0.6 0.808 0.092
0.36 0.606 0.804 0.086
0.36 0.602 0.786 0.096
0.36 0.608 0.818 0.098
0.36 0.606 0.808 0.076
0.36 0.606 0.792 0.108
0.36 0.592 0.804 0.126
0.36 0.604 0.794 0.1
0.36 0.602 0.812 0.106
0.36 0.604 0.788 0.092
0.36 0.606 0.806 0.112
0.36 0.598 0.808 0.09
0.36 0.608 0.798 0.108
0.36 0.602 0.828 0.09
0.36 0.598 0.814 0.092
0.36 0.602 0.822 0.112
0.36 0.598 0.81 0.108
0.36 0.598 0.784 0.106
0.36 0.596 0.8 0.102
0.36 0.6 0.826 0.112
0.36 0.606 0.822 0.078
0.36 0.602 0.818 0.084
0.36 0.602 0.822 0.1
0.36 0.608 0.8 0.062
0.36 0.604 0.782 0.118
0.36 0.602 0.794 0.132
0.36 0.602 0.816 0.096
0.36 0.606 0.806 0.094
0.36 0.606 0.832 0.128
0.36 0.61 0.82 0.1
0.36 0.6 0.816 0.112
0.36 0.602 0.776 0.094
0.36 0.606 0.816 0.1
0.36 0.608 0.806 0.08
0.36 0.602 0.806 0.098
0.36 0.604 0.806 0.104
0.36 0.608 0.818 0.09
0.36 0.606 0.814 0.102
0.36 0.608 0.818 0.096
0.36 0.604 0.806 0.106
0.36 0.608 0.794 0.086
0.36 0.606 0.804 0.11
0.36 0.604 0.8 0.088
0.36 0.61 0.8 0.086
0.36 0.61 0.792 0.09
0.36 0.608 0.796 0.106
0.36 0.606 0.79 0.084
0.36 0.606 0.818 0.094
0.36 0.608 0.824 0.1
0.36 0.61 0.804 0.11
0.36 0.61 0.8 0.088
0.36 0.608 0.808 0.076
0.36 0.608 0.806 0.076
0.36 0.608 0.808 0.092
0.36 0.604 0.79 0.098
0.36 0.61 0.81 0.106
0.36 0.612 0.802 0.076
0.36 0.616 0.796 0.088
0.36 0.61 0.804 0.104
0.36 0.61 0.812 0.084
0.36 0.61 0.806 0.082
0.36 0.612 0.794 0.09
0.36 0.608 0.81 0.096
0.36 0.608 0.796 0.096
0.36 0.602 0.824 0.082
0.36 0.614 0.788 0.104
0.36 0.616 0.818 0.108
0.36 0.614 0.808 0.126
0.36 0.614 0.808 0.078
0.36 0.618 0.798 0.106
0.36 0.614 0.824 0.114
0.36 0.608 0.812 0.1
0.36 0.61 0.8 0.088
0.36 0.612 0.822 0.128
0.36 0.612 0.796 0.13
0.36 0.614 0.806 0.11
0.36 0.614 0.812 0.104
0.36 0.614 0.808 0.126
0.36 0.616 0.8 0.088
0.36 0.622 0.804 0.102
0.36 0.62 0.808 0.084
0.36 0.616 0.81 0.104
0.36 0.614 0.804 0.118
0.36 0.618 0.816 0.094
0.36 0.622 0.796 0.092
0.36 0.612 0.812 0.096
0.36 0.618 0.812 0.1
0.36 0.618 0.818 0.106
0.36 0.612 0.802 0.124
0.36 0.604 0.786 0.11
0.36 0.614 0.802 0.088
0.36 0.616 0.816 0.1
0.36 0.62 0.82 0.114
0.36 0.618 0.79 0.112
0.36 0.614 0.804 0.09
0.36 0.618 0.812 0.1
0.36 0.62 0.814 0.108
0.36 0.618 0.814 0.104
0.36 0.62 0.814 0.076
0.36 0.618 0.804 0.126
0.36 0.618 0.802 0.1
0.36 0.614 0.816 0.112
0.36 0.61 0.8 0.068
Greedy ε-Greedy (ε=0.01) ε-Greedy (ε=0.1) Random
0.02123051360174033 0.06763088737764833 -0.04573832794857812 0.06083696889885071
0.25044392708789315 0.3236602570373011 0.2309383367447777 0.07630157873367746
0.467238340361309 0.4661178858879875 0.5195898191536666 0.006162255109249571
0.5198579562169351 0.5275680240195214 0.5058697561459594 0.04665493095389737
0.6362443998034811 0.5958203986693472 0.5198459541586236 -0.011774711769574798
0.7485301761749386 0.7422468228099136 0.7486979099187243 0.11428677862456509
0.6759893833904397 0.8028387967347022 0.7768105624277214 0.013344948298092968
0.814047044160439 0.9407445160025478 0.7447196432850693 -0.039829994984607056
0.8393489685507995 0.7686336934802271 0.772122400976728 -0.00992680998693863
0.8416107082866779 0.8441779760394936 0.7379132842329553 -0.03436417345053872
0.8255576358127954 0.8392055510536293 0.8126601694519678 0.0698783141044388
0.8623787477662745 0.8984811259298853 0.8874063310085175 -0.015762666318979122
0.8670495102805538 0.9089353066613224 0.8563186716959287 0.07261240798260032
0.9563157988191114 0.9536927797248848 0.8105490280123058 0.10493500088008788
0.9473453022771587 0.92636882755554 0.905704993406745 0.049122336760382725
0.9389391972499591 0.9909810627249935 0.9681168776096285 0.04483167063151939
0.9737161602524091 1.0457879037847295 0.9682426255989042 -0.023029724543563265
0.9268407653189423 0.9860728197830017 0.9882710865656712 -0.03501443880200832
0.9389365193591038 1.0892067116447468 0.9562228255702868 -0.06675040719015808
0.9232276835951033 0.9770591466506688 1.0100681331261494 -0.03437875849568556
0.9240535725116871 0.9152501965032106 1.025445065638888 -0.04390161232643132
0.962480224301676 0.9964889875552453 1.0470206431946338 0.051086660600946354
0.9530727103352361 0.9594810845377366 0.8785572742924999 -0.06746503677238963
0.9350085258168026 1.0137347661308769 1.0331712329814853 0.04350109417512795
0.9274641850579571 1.0461477306812776 0.9031391732333263 -0.0351397618638342
0.942698617124526 1.0493576756428467 0.9708842749859049 0.08892003029070321
0.9359955869547564 1.07178439067628 0.9815080972431692 0.09626490681207558
0.9359037052415512 1.0068012784679778 0.9491014776616667 -0.0043791126436335155
0.9849894196341202 1.099931975050623 1.0200678725387682 0.02857372886412648
0.9395804887618976 0.9924060975533254 0.9563123758748069 -0.050873362309434525
0.9925972637133907 1.0066052965877477 0.9613986914575477 0.053132208777407354
0.9408859687968086 1.0538083606518478 1.006847837255493 0.019339013735760864
0.9846043657587844 1.024936593760904 1.070776778606234 -0.058128756432894654
0.9648422371315707 1.0623662923102202 1.03581442782253 -0.03981502696465268
0.9948723184455883 1.0185365846445238 1.0170580510720355 0.002334589506157631
0.9644439063585537 1.0188050778502107 1.0468377662248092 0.07954270229025867
1.008782272718887 1.0370046044601486 1.1114572393940971 0.030827186844118986
1.0332485155693913 1.0392197211209289 1.0119371688453447 -0.0953559421203558
0.9537507353908169 1.028217214934199 1.0087386417279884 -0.005899564198817105
0.9932934202083965 1.0984967816269997 1.0945856594566261 -0.006022377433607744
1.0160467710421681 1.0096434948990185 1.1148897628319143 0.09585941521842804
1.0101924520591843 1.0332530416996641 1.035696039629193 0.030573615263837405
1.0389220200413802 1.0377792640736445 1.1138350105470298 0.02920695027764985
1.0638639653029576 1.0161327523401456 1.036170845566381 0.041413582018201105
0.8971904170012677 1.0426134953050092 1.0560052031001186 -0.08129644149010788
0.9733867900479128 1.015900594979644 1.119989428063489 -0.049365175212818316
0.980989910632936 1.0629088628397079 1.1180475660601563 0.07576422288341357
0.9865203476122647 1.0222710023530688 1.1861791846797456 0.12646562278660756
0.9568655875139623 0.9635657439485732 1.0930529392689539 0.06469659606269632
0.9912281149038287 1.0058910251055335 1.0792620071154995 -0.0739687178358725
0.9657746213339925 1.0694880317909095 1.0724990284961817 -0.0434711264980469
1.0162631216612195 1.044268819558653 1.1146872484886516 0.10648063752241181
0.9920890855831648 1.0581394697559556 1.0781689327651403 0.056453497030819054
0.996913089891656 1.0335956974809142 1.1398098765306524 -0.053742670535194666
1.018484840287381 1.0591603591170076 1.1427337596506997 -0.004242419207352466
1.036183371432868 1.077154013228006 1.099176225879167 -0.05084583622659502
1.0186126403016427 0.9652254848180207 1.1868114360923088 0.09807123664216402
0.9504229362283082 0.9986626525813328 1.1058436163494112 -0.024428358255335965
0.9516364505245016 1.0768479698222329 1.1295717467938045 0.08234899505404925
1.0542958248718222 1.077908160505811 1.1208062402337953 0.03143496642757661
0.9191884879559192 1.095647163925978 1.1578117881451813 0.07090551783975585
1.023132734449133 1.104539341337212 1.1243404314159635 0.009203585633716206
1.0557405795242298 1.0899687406840066 1.0833054217345812 -0.03639971000839274
1.0406489656956373 1.04750135625273 1.0796409937693852 0.10877179185707066
0.9474304596178625 1.1121418375827206 1.1492101434297908 0.11695571658241652
0.9664491214282346 1.0469850558864624 1.1478930498929936 -0.1440925534878542
1.0899354676656414 1.0735982918651834 1.1643767025914549 0.057225029340346345
0.9967631120174387 1.0839036126061001 1.1958163208033057 -0.005437556692678543
0.9400948323667659 1.1031667024690648 1.095781682014916 -7.789827507738156E-4
1.032603758354863 1.0385393276937174 1.1902030297585418 0.011758285446032794
1.0405226565621335 1.092403112545299 1.129249906544213 0.04565008404861097
0.9874829469142012 1.0777774772260258 1.169039847302646 0.030352331660915634
1.0462888451393324 1.0664291605873968 1.1115898056505815 -0.012921722602569751
1.004871649417919 1.10340010828311 1.0928631199663692 0.055233602183852114
1.0477357492806234 1.0308842781853096 1.1671923625161822 0.021999484873366087
1.0719357621844836 0.9695333748203293 1.2058891044624234 0.030949198038891425
0.9844718858218342 1.1297045211336685 1.151369328495019 -0.09076656486857557
0.990786584116747 1.0506132250206537 1.2263806444938452 0.09808273699588177
1.049446305001269 1.1337516666755105 1.2116384919916825 -0.02520225935091598
0.9652940515305688 1.0974861343531992 1.2189215228555756 0.030652979739793414
0.9440956605870553 1.0798972019100557 1.1757420301572075 0.0425044487402582
1.0114336844799046 1.065932412321608 1.0601002659672045 0.09631608950665083
0.9554892831011926 1.0451483105537842 1.1664959241209454 0.052448435450104115
0.9869212677919477 1.0559828222664844 1.1572974419790307 4.502677842710931E-4
1.0214186290430012 1.025216442277878 1.1180649238371858 -0.0177834206558529
1.0595607369232305 1.02428226637936 1.115045265209684 0.06752486233450596
1.0054704905304854 1.10266969522967 1.1847934553854294 0.09703825538593223
1.0147366446777393 1.0360523548227798 1.1896270003752003 0.06320187120513218
1.0712603808652226 1.0746008742963502 1.2568987002073129 -0.02374941643879219
1.0667840670011024 1.0247030460623132 1.1384647905494762 0.06873331363539396
1.0032989992134846 1.0669159517680395 1.177038971942838 0.07272475234107782
1.0781470664180854 1.1017387061527786 1.1391784675309218 0.04705129057124784
1.0337342047901381 1.0319740938465596 1.2899732602878613 0.15856869777136542
0.9714956954533928 1.087388671376551 1.252387568017515 -0.005386621417834483
0.9804504060997125 1.0473627376319095 1.1860908951067455 -0.03203640790821051
1.035779860321094 1.0514369179194587 1.1760015581370553 0.032705451020141954
1.046083643467726 1.0746065476941338 1.271338865257105 -0.01419058251097624
1.0090248081044506 1.0345876488826165 1.2364235954671312 -0.017299018510075436
1.0513099590192099 1.0553942150135127 1.2420737552668057 0.041897100322294
0.9991969989554949 1.1270664205691676 1.0770696674221538 -0.0020936012620099034
0.9787695893875804 1.1078757245337185 1.1692262156829147 -0.0046912665438456885
1.0424944217764585 1.0487281639333488 1.2146256775773676 0.06483599992873186
1.0036579688901481 1.1008534170335842 1.3248331556445718 -0.019175553634070527
1.0045909362642562 1.104542504640878 1.1387182616020892 -0.006628620379750582
0.9813118945613797 1.020586104050513 1.158805103801373 0.05474655366663812
1.0162822302253056 1.1576798798139338 1.2736407846533462 -0.003685608259771424
0.9810763332593165 1.1783586797594163 1.229419185938141 -0.043713984340068186
0.9950689726501032 1.0213732582359982 1.2214635385445283 -0.07749297301396277
1.0598115148438145 1.1286297979386135 1.2125283495711137 0.0536480657992216
1.0883321586093313 1.1003865917506257 1.1781571286588468 0.03282277362968887
1.0120678006831585 1.1505006293858702 1.2071585713721604 0.018715640149537326
1.0313042524417113 1.048861762901955 1.2212179094981954 0.00678480563752361
1.0159040596461668 1.0754280286515336 1.2634032253235288 0.1422599837063941
1.0119542948743019 1.0693473109388842 1.1505782860055198 -0.024611777965797825
0.9996293877447371 1.068234705789008 1.2493793646182603 0.03660381033821272
1.0173531581239401 1.1293274924949908 1.224203718126504 0.06337630595454827
0.9368494818171766 1.090108552589524 1.2948347317042637 0.09950929571813129
0.9796800711058893 1.089713214812931 1.2697723928493234 0.03897166743720856
1.0105824007072606 1.1543347531374295 1.219940615918115 0.06878121347083038
1.0069329732508858 1.0406471231492622 1.3213983051303204 0.007576430504461259
0.9354536591076698 1.1495465323759329 1.2622059528575746 -0.03012060292732148
1.003077043965559 1.1194628680470626 1.2605950733635132 0.05099707083800496
0.9887575418923947 1.0889408630258826 1.1578634301288384 0.04661583778214001
1.0116294039526785 1.0444302669895686 1.218479755347257 -0.019138086168942844
0.9798071375198357 0.9929869310868701 1.314131214744423 -0.05296487817036227
0.9044229372042992 1.0724947412967791 1.2777734879896334 -0.04004691391665515
0.9871923668438679 1.1511063130266714 1.2518827709393376 -0.020594709129924515
1.049491133023459 1.015943556880022 1.1471011446372281 0.0255462660297305
0.9520679485998297 1.0903784985356963 1.2385358254112966 0.11073020462863824
1.0469098184590666 1.0275051250570357 1.2541128409969442 -0.0036389114781894857
0.9902186153377083 1.1182033900161086 1.2455086378551443 0.024588548094735152
1.0217037041170207 1.1908998305615879 1.3079625323486945 0.0878621284888587
0.9791808917672289 1.0319485963703203 1.2677353574402401 -0.06427955764162052
1.0018288763290866 1.0161465174996975 1.1386786847094177 0.026658676548735067
1.114978637427965 1.1684086433612229 1.2914481108570253 0.11665937777603207
0.9597280182448716 1.1246524738671038 1.2525211127136309 -0.015813643213870715
0.9799288679411795 1.1330813139984017 1.2739433985498037 -0.08125554483938009
1.1221452490097572 1.1700039346988418 1.2279426987959765 -0.02764017255783289
1.0604277811735752 1.0717523755112568 1.1761014412045585 -0.03548584318143104
0.9238284166047238 1.0735968842059869 1.2138067994567516 -0.02228606751196579
1.033454136367485 1.0659832414496406 1.20229397599804 -0.09028904504886356
0.981556893895933 1.1222554870160353 1.245698075832112 0.007382117703945345
1.0216594905338794 1.0259946798756778 1.2371593409672164 -0.008642393779095751
1.056871470516607 1.062604312156463 1.2680738331929318 0.09493237576488842
1.0393874477289053 1.151258486451493 1.2256775588483524 0.0698937015314454
0.9785520528710854 1.0672968688279805 1.2195621475493237 -0.05164860749155703
1.1184710215909506 1.1775124325496769 1.24545234381936 0.01448053351870994
1.0593688077384842 1.1137153325788784 1.2677866115787584 0.018393454276582368
1.0056163208217013 1.0237028590613646 1.3069281580276324 -0.038297333989491304
0.9757101077910764 1.1301306894298195 1.2899172044694585 0.04428092327071527
0.9977490514588957 1.094796592230484 1.2363756558806607 0.029873020250976247
1.0213272224102963 1.110666113592664 1.234042659579009 -0.023741821213599627
1.0381265260685502 1.1372389546215889 1.2105738608041414 0.07262091840287468
0.9951750457280432 1.169110214290234 1.2295719861872805 0.1123495563013902
1.0304146906528282 1.0915580703530918 1.1992930777995756 0.003677785765742903
1.0338779573649783 1.079032734364398 1.2380590568193128 0.027340526189430538
1.054804151555487 1.1459087055311843 1.2968003760635993 -0.03643834909411247
1.1557957100818976 1.186616125041648 1.320271636848695 0.0290890723360547
1.134622221852165 1.1070636801803486 1.3685723066838626 0.08427095288838969
0.9658826002128524 1.0852534635552595 1.29847463598432 0.07516428246580374
0.9667783053271972 1.1475442275997865 1.2581576543616249 0.14524584452751477
1.06400494231872 1.0520558368451847 1.2539352096502345 -0.0345769651682674
1.0315688403310954 1.0735628753514277 1.3664490340252329 -0.024987025495918334
1.0656839615084122 1.0637195547026832 1.3044214045406906 0.02901544923833446
0.9659863743253996 1.1297202795289538 1.3072367755184415 0.011909499091350698
1.1185134226423628 1.1204025822421244 1.3372246134440553 -0.038122415386119185
1.0321436109927826 1.1594286661862083 1.2808619236067549 0.023679311761951417
1.0421547626211265 1.161318981220547 1.28465272222947 0.07431577339283438
0.9965890409263908 1.1207438837342916 1.295101912415176 0.1535160452313799
1.0402966920786485 1.0980922019671766 1.2535292683417185 0.049357296398434405
0.999024081112441 1.152263059342011 1.2842145080736722 0.070408312573497
1.0013135188276474 1.10959677839495 1.2354872544978033 -0.0375562448447064
0.9968974603643115 1.0966158586871428 1.2874780892160362 0.05745789150885396
1.090156423564379 1.1672346014249737 1.2108109979211148 0.059931267350037516
1.0318142919438165 1.158387406521354 1.2599312998203738 -0.07122866457692231
1.0015052445993307 1.1971972349479643 1.3180480522504134 -0.04137144436017061
1.0279892731310234 1.259348579474956 1.2563961309932183 -0.014688713122744198
0.991795234697248 1.1380316969518187 1.3034906164522597 0.07863951164192579
1.1204923836139773 1.106269309302059 1.2802143557579146 0.005531064247997648
1.0996558337510758 1.0585918787793904 1.3616951672195896 0.1425805464553165
1.0211271683419014 1.071407671614808 1.27974459939395 0.008689353114514606
0.9998257570992323 1.1444544280202982 1.3247712912682286 0.056276601721601406
0.9957982574649115 1.1189093038504294 1.2466842259321338 0.020699361971622577
1.020961085601829 1.1232722676711517 1.216222512150683 -0.007699052513476495
0.9860467861117034 1.120470359693919 1.215720644068719 -0.061681614962097044
0.9780866513231107 1.0861566180829152 1.2968480264346518 0.018411090847465887
0.9811626937004366 1.1060448502219042 1.2510298297004596 -0.02059893468007667
1.069918877167886 1.1059389827543675 1.2583048412976943 0.020276651467634424
1.0543502113687169 1.0864620737393527 1.3136920284277067 0.009384458140051871
0.9890978824746931 1.1343223745200943 1.2514588395442225 -0.11209968346777556
0.9479530390396605 1.1527695538192044 1.2779942049226605 0.0793751873546361
1.0624369395405837 1.170963247121879 1.2142970994742772 0.030725424945379134
0.8987270739102169 1.148714771948636 1.3072750784077911 0.04079727932653667
0.9989986708702453 1.2170628964239758 1.331917262631624 0.16474455802607316
1.069847888568227 1.08329047669529 1.1845891910423612 4.094445395200692E-4
0.9737604356978268 1.1258213165718944 1.2951545568324705 0.025328894923910997
0.966198769382737 1.1017862628122819 1.264331370863422 -0.08607835256838828
1.0240042268253224 1.1503313973467568 1.2879741912126716 0.00658312889537052
1.0841620571183117 1.1536639597025768 1.3799597628516804 -0.08413624709398725
1.0280204569099207 1.1741759337627888 1.2689344010160288 -0.04564830801989368
0.9917160276713427 1.1258192294789424 1.2815710088587267 0.03379203928105284
0.9943109066365075 1.1306120088706824 1.3553859522950085 0.035439866065974726
1.0150610290146853 1.1087322859670372 1.3420467296851886 -0.03149925972911639
1.0774380022270642 1.0910542435004413 1.3021046195314299 0.09940088839327868
1.0105075261713958 1.1671374956731504 1.2872308554828713 0.08169221411321917
1.0536588507813807 1.182249398119234 1.303145240394021 -0.05709149243124805
1.049059310746463 1.1474584153929601 1.306669158482824 0.008207818834948546
0.9794446585552491 1.1065566839248229 1.2752518163074793 -0.005935637655022623
1.0747951198956944 1.131399295780002 1.328273976771267 0.02829790277900144
1.0050323183460466 1.1203934516553713 1.3048596095521248 -0.015011847405002644
1.0115247114416719 1.1583871969510016 1.204779128573106 0.05773669822740002
0.9987910642969065 1.1464686574809742 1.2952049985401397 0.028910672482731457
1.0997174478640286 1.1344028309484437 1.2805671098740754 0.07400472229796616
1.1374721545910402 1.1369998768752314 1.3113692604489764 -0.02482454278606367
1.0227489488386736 1.2172243437230823 1.3082098047783264 0.04892574021502034
1.0149310174775623 1.2064161339111066 1.331885663920853 0.040288434130588996
0.962754767659545 1.1816323863399476 1.2571637716032025 -0.0036847814243452567
0.9471450678173681 1.1373150309264737 1.2351273786038408 -0.011888607519130087
1.0379499277028021 1.1538174509919839 1.3544394761031113 0.011493003344953701
0.9649072810759337 1.1038387534526575 1.246569690616581 -0.014815904909697992
1.06245153377765 1.2157075555646517 1.2615968260161297 0.11069973009441347
0.9885928126787714 1.2114585100221715 1.1356784174977128 -0.020358981893974743
0.9687004215109474 1.056688149617471 1.2904207609393614 -0.012260141677351026
1.0589252781619352 1.1670956613187986 1.2855583365708183 0.004982973948177297
1.0526701858110028 1.121353006258111 1.2595005681194105 0.03032506697346294
1.0533716636925785 1.1688497583232889 1.2951451471939743 0.029346380934838094
1.0061991943226765 1.1209461271048857 1.269002025747517 0.0163169650289583
0.9960048697007005 1.147235531655283 1.3351394544889201 -0.020825204197297446
1.0707448843872007 1.1099128365975859 1.3808747199820275 0.028728519364421636
1.0239152957111617 1.143802172086117 1.197864971774208 0.045312052166309714
0.973439850367188 1.1453130695699143 1.331569123957782 1.6442864258563771E-4
1.011910351373808 1.0940801785518663 1.2261000365516705 0.03454774706171524
1.02813380708401 1.15385628265454 1.2626658388756393 -0.009639441195544822
1.0034816493142642 1.1048763684587042 1.349394582646895 0.021595305718994633
1.045968044342118 1.1127663137717039 1.2535144111538004 -0.09640171921860038
1.026978949408601 1.1247442751905166 1.281602787469633 0.008445988076872904
1.0781264059726177 1.151678927269931 1.2294272500750565 0.084613187179363
0.9936034846347105 1.153715046828799 1.2675276937955129 -0.08471952959124149
1.0420952300475863 1.1952942562657225 1.2845126078155744 -0.04644876181756791
1.049621250431439 1.22838044915568 1.406235919782434 0.032300850818902715
1.041793243587257 1.1440332291038822 1.3019622984617307 -3.56729133737421E-4
1.1316761622395817 1.1406836977323398 1.2848988936409935 0.09628020222577476
1.0705622263006822 1.2076106527552661 1.3490221426993536 0.018584401367600246
1.0063553147064546 1.1329102438137 1.3146905891205736 -0.03405062606307746
0.9437436936511825 1.1220685977189384 1.3171336749521256 0.012213286699078903
1.0012571194534725 1.1564927900927997 1.3358989759057487 0.15088510351022605
1.000703293113121 1.1765517295780261 1.3765717350622544 0.04599682566587536
1.0761083777856464 1.138053504558802 1.3674397764808994 0.028865504216422234
1.0162301352532048 1.2142657769698149 1.258885242963155 -0.0291368550420053
1.024884798082329 1.1684939366686216 1.3284965745566442 0.025570973847612154
1.0098722755793736 1.1374312527319612 1.3028598648216367 -0.100109619255511
1.0091547085266552 1.1814783625242078 1.3028550149357798 0.026803188483588265
0.995229799060655 1.117115057564955 1.3809248854408371 -0.08019474305902166
1.026516884089363 1.1358730290584758 1.303403316588142 0.12292249412187259
1.005112734274627 1.1847604396711169 1.3389316274504703 0.03516090174006153
1.0498906205796468 1.141916458399574 1.3150797885990175 -0.042128763024077705
0.9667613908292186 1.1030201698846427 1.2486584707046424 -0.031305818522581484
0.9384572098848709 1.1981967061001555 1.3495810048159762 0.016511987575841672
1.0271175387877927 1.158633935310802 1.3095122357318494 0.0884646835120652
1.1100866930449411 1.131838179984577 1.3271878262286092 0.019992454690992992
1.0138116854794148 1.1366736689941719 1.3031700944188949 0.08179136906928178
0.9888950268076071 1.0876428184015847 1.2741168646583174 0.017147917015016837
0.9590875189380864 1.1771550339149923 1.3087379662791574 0.11728247642444778
0.9770104594184416 1.127242086114621 1.289844998212207 0.13263160051051898
1.0292025247232441 1.114184897635612 1.4013769308974309 -0.08551261816616619
1.015658799927941 1.2086264813078338 1.2732390977144437 -0.013110389836828197
1.110602698251644 1.082086535631649 1.358421363384648 -0.050552905724159984
1.061348858009057 1.2021237091270507 1.303226892433596 -0.09106275611003585
0.9951417861780182 1.2228921986852612 1.241732781123219 0.04928555214898773
1.004075621259058 1.098111441083136 1.3101593574656953 0.07932692875608363
0.9464586502329961 1.127683703739852 1.2844885339599137 0.024957372125340774
0.9982495128590879 1.1598395065586382 1.325313164628009 0.12515421988674405
1.0347790681087854 1.15008927009121 1.3318862471213968 -0.05628721622876189
1.0587877284720337 1.1253021318396887 1.376821316809395 -0.0037533475766699134
0.9830649751359087 1.2488516733533621 1.2522664948851443 0.08054004028144456
1.1084180784205762 1.0971767664460061 1.4013920879349768 -0.05042046008783258
1.0714935982886382 1.2314380169235677 1.3248468894253433 -0.029432816001710105
1.0349657292221408 1.1730376978930346 1.2571232686258087 -0.0035084411797077567
1.0825192422375232 1.2212967689189926 1.3537644791963581 -0.08553231823200684
1.018399482696103 1.1937559771722712 1.2456245506471577 0.0889083849674286
0.9926291790815661 1.1157036423245459 1.3620568566846734 -0.010008557396377434
0.9566267057808572 1.1854477787158304 1.2634703248818004 -0.013079571871004085
1.0562050452657767 1.1621403066328932 1.2463555386829135 0.03282724540567227
0.9960973561778232 1.1501216924230775 1.4423828842219453 0.09863470122836024
1.0728347082595455 1.0941546122372232 1.374348097566633 0.010093609087773323
0.9106973621938357 1.2281715996687548 1.2864745291136412 0.003218606272861667
1.0630506757115283 1.1801009475766286 1.306948541829085 -0.08020230524152802
1.014397854661805 1.223574773660707 1.3826939063828663 -0.08995789113270752
1.0628360817250055 1.172104675839373 1.3863813239142337 0.07921170034672122
1.0194608634663058 1.1946015451865164 1.2426532656417897 0.04015003188284977
1.054464056232174 1.1609724443113014 1.2587938906031402 0.0699189379733527
1.1033417643009058 1.2273923142953345 1.2607923214144567 0.09268142953856195
0.9868245325284615 1.0956830707830825 1.3494015888698774 0.046330951044184374
0.9873804449087782 1.2402768208789827 1.2791016594677376 -0.08579490959672638
0.9913306377181055 1.2564888413491704 1.3142637490367228 -0.037656233376652345
1.032994006771437 1.2069036303401126 1.3308586262459918 -0.0028800836438695842
1.0520132671865075 1.1839936035896395 1.2776227332223447 0.04785421643418757
1.090865857497834 1.2307015272075603 1.4355694782493535 -0.058709533217610896
1.004043445280852 1.2153346321533964 1.250495179167543 -0.07858586169083517
1.0007410984462655 1.2448844430224344 1.2858328156812209 -0.1051503748635695
1.010326587113504 1.1304132464030006 1.3186052295406712 0.030197458277103205
1.0344813218862545 1.117074403866804 1.3207363186535637 -0.026579450063989204
1.0168402185309686 1.1449558008289213 1.3300251568254673 0.0615926018090349
0.9680104402725234 1.110300832997897 1.2292905023312786 -0.07352452159151741
0.9769647500061879 1.214199461458783 1.3506915394579102 -0.01775272863050101
1.030552237716735 1.1650747028302875 1.328251860529585 -0.002996622000533171
1.0592147209875722 1.175297901836616 1.3379852883664833 -0.0744958178597036
1.056335106505227 1.1529515321987518 1.2828901140631936 0.07749188459601813
1.0176750661223184 1.1683685013648692 1.3631687608932828 0.0755587659265706
1.05404840869005 1.2367801812205181 1.4013722526817192 0.03509531418777792
0.9973967460565819 1.1947369539563022 1.3477894508328712 0.03660249581100351
1.0770372194394064 1.1962135655149058 1.3439401167717135 0.06301832406405367
1.088623807343374 1.1151128485136417 1.3400870040896027 0.08368613512046293
1.033888822220575 1.1550939391805708 1.212252842551433 -0.05977169957324365
1.0551308412773783 1.1759149156113273 1.306856248449462 -0.04295882440605134
1.1002242387647359 1.1074958951814777 1.3435548030333238 0.016132236332221613
1.0818718381451227 1.0753487552988639 1.3894817598859888 -0.0732542091975889
0.9954136461404206 1.180830352074398 1.2695026787222237 -0.01989353867464498
0.9904859132228362 1.1846499382788032 1.353184218878084 0.11677825206776278
1.022452403679861 1.235106560744526 1.2762276113518753 0.10766946143051254
1.0119399989028477 1.153667396219339 1.3110927571366127 0.03162386897398195
0.9859284136982248 1.1717154405311085 1.3640436801722993 0.05121790414184628
1.0238097763214669 1.1641335499589893 1.324153266658839 -0.0064635966221373185
1.0747721780146475 1.0896913241886235 1.380924135745386 -0.009889185433039523
1.0516662523143094 1.2439923028769262 1.3169528242539557 0.013378268221353923
1.0558203353725184 1.1520516465671449 1.3175673857366497 0.03897337435734201
0.9618066748791959 1.1081537168339028 1.298714473708665 0.061383297387146464
0.9532677370781658 1.2483528398783297 1.3972543190691362 3.77270916124695E-4
1.01138967605013 1.0958681659139486 1.3566242063595266 -0.051411903841926454
1.010034441663841 1.1324282573692748 1.3307578678311216 0.0628319977641213
1.079983986888752 1.1737589726545585 1.3253281274469502 0.04177906201931212
1.0220495598647226 1.169227715107715 1.2507380840812523 0.003259992176368983
1.0037575374488918 1.1716667583951914 1.4150264446175587 0.14608098182848256
0.9489962620980914 1.1660656355766847 1.2653536076906546 4.201063901761346E-4
1.0141713934842556 1.1446940257765632 1.2977125303179333 -0.07947032366379582
0.9767505181054509 1.1936201905143484 1.2851982870715573 -0.02181835070657832
0.9959084701005135 1.1854371746047623 1.3350694809775012 0.012945617131092267
1.0437025510558557 1.15744647273628 1.2961332362959845 0.16362269881598412
1.0187714643954229 1.164679000882456 1.405509941237591 0.015339046037100467
1.0451934515174683 1.1645712845214082 1.2872675112695546 0.11437969886771304
1.0444332658064743 1.1968614008770886 1.3108983395992089 -0.025442223023246266
0.9827260460235968 1.1209990556764733 1.2516478630510164 -0.030296708053221363
1.0054828711236066 1.185028834911901 1.3030448049812056 -0.12115728008268462
1.0049876440226209 1.2110907030240545 1.398854988786077 -0.09950798443868339
1.013664803354258 1.1817532712964633 1.2629196318364593 -0.054859019925477266
0.9761607991278379 1.1684824402881406 1.3568882520733856 0.07085865954748169
0.935120648250217 1.173110634650088 1.3545664473778807 -0.023208725001770212
1.0053845828466625 1.1364736000496662 1.2215375088856821 0.0631474333693969
1.0240970927146547 1.1657862229736176 1.3065565276046518 -0.06516837070845813
1.0701734202887119 1.1803960552439492 1.3808695403199298 -0.04355194602660226
1.0180522017060287 1.1119472475649064 1.3340037533358027 -0.04383585749372483
1.0753471417390812 1.1371260376717316 1.3013144764740787 0.0952722955832897
1.0990373852359057 1.103782023732078 1.2367717974811883 0.017516890998003864
0.9755947838373991 1.2359849342683202 1.3906585982572726 0.05081837426050001
1.0735302425335858 1.146688670475356 1.3055261792163397 -0.004265677057906906
1.0392955039115828 1.0679007938893519 1.3129862089628088 0.0036125937856348153
1.0562174919839924 1.2701042115795946 1.296868935795962 -0.08485696253313899
1.0813162932476186 1.190415542342811 1.2653693064740374 -0.12495281756355377
1.0450256573285865 1.10809668833166 1.305072911053421 0.013630917849736615
1.0696218470968117 1.2120689707721393 1.2675428333016188 0.06580902007397436
1.062789586232374 1.1873935909583009 1.3510041428686939 0.004126907971366881
1.0909654877469845 1.2831482934379783 1.3272057432597697 -0.019977465691709845
1.0694860416722118 1.1732562337299828 1.342969476402482 0.014423986061490372
1.0342097381224318 1.1868432017634374 1.2569493116824708 -0.04792917253550098
0.9881987434545583 1.2322948813745565 1.3693045489098998 -0.05106996676845499
1.0547737170967488 1.229351940670705 1.2832157345300217 0.15272106433365842
1.0689483478717463 1.1380150193575154 1.2719578085297327 -0.11598740380801899
1.0300789456739747 1.2602752213706052 1.409685237326084 0.041048856930487106
1.0010856034621434 1.1747615952559967 1.2859661031281515 0.01573808757552262
1.0252998669404418 1.2400872543057095 1.2880629114009317 -0.08424302202554527
1.0171801777204394 1.2331035473800211 1.3330786044602752 0.030276245939875723
1.0502193971096379 1.1960936010957124 1.291630898521869 -0.11850318880138218
1.013071456714189 1.1540951061072746 1.3021442958498401 -0.05374486383089308
1.060219986998626 1.1995822878469309 1.3115913903196235 -0.020957265187930736
1.0343746175585304 1.1862495076608717 1.3112459049421723 0.0556602020435939
1.06850729349957 1.2320565884379686 1.303571567373387 0.03927366319888238
1.1155079751956056 1.1736773297256107 1.2942364025277733 -0.03647751678780303
0.9726984097996241 1.213146914590027 1.3665403708767765 -0.09341144960155832
0.9723617103132893 1.1572005151070555 1.3560591683841776 0.06139950166581627
0.9439907125742495 1.1850035333296192 1.323955232026312 -0.08876582421977111
1.0096502914285512 1.1668172314080016 1.3365685491492298 0.018122374181233653
1.0608251825041646 1.1683386150754296 1.337585058948073 0.0583353637453252
0.9928294822944894 1.1880164280702916 1.3711367216588537 -0.06316390397183237
0.9816178957093474 1.1650823141389761 1.407533373877564 0.09247883814112633
0.991032078133984 1.2759940719139362 1.3282976508417026 -0.013220527386692247
1.1160176431316704 1.223128393218266 1.3882211795440087 0.08836734869893248
1.0797048158649853 1.137541657600223 1.3043245891508402 -0.06988370938573837
1.0063701026288647 1.211226745283839 1.2567462960895164 -0.07571592885370017
0.9819717026358451 1.1862292175719162 1.3604453387198046 0.05444507373111277
1.047185064532644 1.217387797182658 1.319728470330944 0.01575857341509438
1.0127753976429383 1.0888783167498504 1.267182075718717 0.039147877358493226
1.0411552113925726 1.1892209932832578 1.2702775307392087 -0.005155272545752076
1.0322642576119274 1.1774718957807933 1.3162179018063263 -0.023105402269605144
1.0883881311504122 1.1998856222785883 1.3074970764336185 -0.16692161414450535
1.022760694874494 1.2114013382562154 1.3139057395541929 -0.010938770903014998
1.0419805488178129 1.1925033560125393 1.3361144047631588 0.049714097293121165
0.9127136464336608 1.1828088848208989 1.2916841980069154 -0.059079693093809865
0.9846629497041314 1.1486446311888991 1.242786560536234 0.003845386194774974
0.9762288742237727 1.1901680886915202 1.3011245584847848 0.08709444270628938
1.0188744625961081 1.2442084500987596 1.3476921764092833 0.09900356728900184
1.088521683780448 1.1413039824918796 1.4020646810477184 0.07041159121758077
1.0522227175064887 1.2282449540495093 1.2463175257956263 0.0024751288751959704
1.0764097426833865 1.2145599521566157 1.451779326171 0.019644166940733725
1.0694272091418806 1.2094528918517873 1.3878314679140853 -0.10480621751048966
0.9910237727656266 1.194682358165946 1.3186767663896837 0.017494344452982646
1.043928435841484 1.1641623697903811 1.2668671874751498 -0.05733845667526077
1.0899022721204845 1.2698429974735144 1.3561722691821005 0.08721214226135247
1.0179982232494484 1.1981436646061865 1.2705486263714187 0.023540830724863404
0.9241135904022099 1.2096833002730292 1.344048465008188 0.008674257130709403
0.9642306331833548 1.248567516973633 1.3549440980179994 -0.01694106319036403
0.9993000096176815 1.1956998999140416 1.3834516584259404 0.014631860349660165
1.0033093414086278 1.2185684158091177 1.3388510543814547 0.02416178659477226
0.9727477391882918 1.2274149091379003 1.3540811896863703 0.03041828789822556
0.9518258601135345 1.1616065384279854 1.2744422588877593 -0.025266951074923525
1.0413284423707414 1.1524350676665243 1.3334402043031954 0.02433441289504746
1.0081936268472007 1.2623659937992373 1.3077621107116353 -0.05023779023817559
1.0535502419248448 1.2426036868374197 1.3939305735285794 0.06742728803630828
0.9647636596927056 1.2449865774562185 1.390804864629183 0.010997549281731215
1.022394909128908 1.2134002055459112 1.3513132350069874 0.087088114064245
1.1077204532599687 1.2600871292261986 1.375530429345102 0.0407487242593786
1.001367393365042 1.2416372008091263 1.2551923817134678 -0.012964884921956726
1.0645219005253452 1.1937326591438557 1.3258100234384804 0.006360573977551365
1.0406329959354719 1.1576008655789964 1.3567780723853335 0.1315002468020111
1.016521771095873 1.188107867007453 1.2999239706287145 -0.03430806010541887
1.0627168466014225 1.2363214711278718 1.2628596288000662 0.07342202690997672
1.0782778693926927 1.2374575896346554 1.2761967593243648 0.12472912579502507
0.9566392665397079 1.2497178835411265 1.3475125214715014 0.06907871436201683
1.021828342558394 1.1963655424876092 1.3536973649127662 0.037664075420930594
1.0647764143658418 1.2118581392826957 1.3680083548140354 0.014186869141700031
0.9771728162500871 1.2129079606167827 1.3609611150693848 -0.060976038033510385
0.9693392183453804 1.2299959187603875 1.3967226510552737 0.028231813572982753
0.9627713542289668 1.254510873704417 1.3212417485545598 0.12327869271857672
1.0614493140019514 1.217658311727742 1.345482811098912 0.10145575709988743
0.9735025120476922 1.263414077742988 1.3352881296968244 -0.09974882919971015
1.0832079856083303 1.16724733839928 1.392574017090088 0.11017396039951118
1.042428626809848 1.1754614643568606 1.3105027799695992 0.09409552302090658
1.0087595659396627 1.2226296179643252 1.2705783091958394 0.10637947836530598
0.9705585511049438 1.2426232431033792 1.4007806581824052 0.01007357141824102
1.0291308513805324 1.2725437708054932 1.3939459803665772 -0.03085514747985424
0.9879527204381694 1.2024500287917494 1.3331363043901558 0.004652851421303932
1.0881066248081859 1.2308351289106179 1.366501213598679 0.2048121426664493
1.05317360084161 1.2588253183305458 1.306164710510958 0.04105586603134768
1.1248828185379174 1.2420305554294293 1.397389361611824 -0.01069033462088
0.9712731688474944 1.2844438544629504 1.3953229692497628 0.01028301219250327
1.0089025373249256 1.2581689443522213 1.3259002940456874 0.13355995532710535
1.0420341501432984 1.1872124826306434 1.38547231259356 0.0791853677371067
1.076633116088946 1.2553895200619225 1.3049274296747824 -0.13818389782086285
1.0154737208441913 1.2811151571695218 1.381277475212421 -0.007222117139547997
1.0828398236504109 1.2112896996407174 1.357586320010414 0.0162791828361729
1.036549192881926 1.2577759417732521 1.354032203648892 0.03223637898557894
1.0540243314525402 1.2049669674165941 1.3748812214127408 0.05413024029979181
1.0481771975250695 1.2588583760872545 1.308895435363959 -0.0014628064898733683
0.982141126289673 1.3285931395821418 1.364578638801031 0.014419446137496097
1.0101478138483653 1.2254148280370154 1.364811849509264 -0.12418499604378569
0.9440915715214666 1.207438667863104 1.3470596673661877 0.02157324996076398
1.0195357575064798 1.1105573472354386 1.35744327003438 0.015162663714331523
0.9996069249644967 1.2488067018695874 1.420979975392086 0.04434552276013925
1.0384574151287722 1.2102367755449226 1.3739489368063138 -0.06072868267798793
1.0179930201024439 1.2267239496711144 1.3210565925602904 -0.07671829697411783
0.9943361412292635 1.1822786583136986 1.4560980394852172 -0.04013143280110687
1.0477542850085342 1.2146601815886326 1.4318765139613705 0.15048773403962876
1.1439119184112403 1.3312681116391103 1.3877055856250275 -0.017550427414897117
1.0689702677024746 1.1765594817986473 1.3470938583426109 0.07131984185295337
0.9490368630959642 1.2279901164401217 1.276233556238493 0.018625519645205472
1.0129389679111167 1.2052668246455778 1.330746121421074 0.1037884877796047
1.011508646476375 1.2779473731524065 1.4297729155251573 -0.03965783107071789
1.004484894628556 1.2823079822021515 1.3605540385437662 0.01768864496788894
1.066541131899771 1.2445390049856544 1.3185429100048482 -0.04897134307126737
1.1170819443416962 1.237364555396609 1.3999227364460904 -0.011522194443351343
1.0496780792218314 1.2391357067344186 1.3350050466485486 0.1327047270146289
0.9739030379488937 1.200021811263862 1.366452288353363 0.040557205573244125
1.0508982532595703 1.2913068134434602 1.4306790888557788 0.006667078795078628
0.9783536709251026 1.2844673599786856 1.3425926002233173 0.04409498697998002
1.018393298938477 1.2540340569889799 1.2772575892120672 0.14995212179529846
1.0822042813320567 1.2653913559052745 1.3978202415759633 0.11711150845245634
0.9760451249921662 1.156749213948901 1.354371034880341 0.027381835716942363
1.0560509114244696 1.1676064101961454 1.2844992572407032 0.03297781826266384
0.9887494522077045 1.216245960888222 1.306846578480252 -0.10229552525854206
1.0594887862083362 1.2677632755983053 1.261571618866708 -0.0050040109730373344
1.0003702253602713 1.2182529488125184 1.2982473264459853 0.08258078975469554
1.0926969496666523 1.2563177693662502 1.3624631267412817 0.07841236153610835
1.010518495342965 1.2244076753820556 1.406350778923017 -0.08265846415373786
0.9291931585705857 1.1045918041720924 1.3092160229660317 0.0030035714183788953
1.0893593041217908 1.270261139795374 1.3042652746792809 0.06674795093840916
1.153105823776133 1.2514463019378899 1.3631081913756773 -0.061003130654884205
1.0240163238985298 1.1709626306671683 1.2678562694697357 -0.010043012643824751
0.9887738355217094 1.232591319814277 1.325669416083382 -0.046074873968631726
1.06470283142358 1.2253916213754446 1.3371413712331357 0.015864531759835345
1.0239332773010814 1.3074390959289663 1.3688266175366006 0.005757325870699043
1.0601209995090595 1.235645435670709 1.411719213387649 0.006095867249012088
1.0986620291530418 1.2284352156074072 1.3388964619806298 0.039298201906715416
1.082940655395832 1.2959332923339641 1.355785327358045 0.05611698698859021
1.049296609293718 1.2252884998883793 1.2321882552785082 0.04664932660834575
1.021092726499544 1.274239738257717 1.4208752375544447 -0.03489815485676166
1.018698703475772 1.2628007895326774 1.3220650493108614 0.0436772288928583
0.9947946915973815 1.2501763031119364 1.3085819841202446 -0.008129446340966765
1.0584322341755437 1.2121809935451844 1.2788576381152859 0.03322000065628774
1.0232633664281243 1.2139156062726202 1.3678196162435097 0.012920358765580455
1.03537149517923 1.202122667807645 1.2956407558766003 0.10671748717639257
1.0396002151282528 1.2773648742203498 1.3690522930529587 0.033346116716980255
1.063319514159258 1.271244227567263 1.3201404425779668 -0.033014183005737066
0.9403880130849074 1.3211433032514486 1.4159448121747193 -0.06434305824918647
1.0218435510623616 1.2266756947183344 1.318969501525228 -0.015155747074088994
1.0121549549904998 1.2195718930844102 1.3887365016999307 -0.04919329776970265
1.0113457524618552 1.22973057374635 1.280782376027264 0.027610711739996983
0.9767547392853827 1.2755893716106785 1.3394537239176343 0.025526044483443814
1.0110442337224625 1.1349427930306792 1.27577438750719 -0.10441904325693008
0.9926613544996613 1.1849543705191987 1.3808916579364479 0.022111457680332652
1.0640444160397418 1.272323581369256 1.3784793723602091 0.050294041187161416
1.096837652708344 1.1985409712082724 1.3851766042061773 0.034849118213994286
1.0234321468734764 1.2186461476932189 1.239889616285268 0.01817255750408913
1.02656348611365 1.3024035286229982 1.3564572560299528 -0.07998193891761718
1.0212427242440254 1.1717487389935455 1.339218857125871 -0.005415946735451643
1.0647180649480448 1.1452552194882812 1.33226028187565 0.03473609952664317
1.0516457369093943 1.27495267698889 1.3153832047210863 -0.016033307417723387
0.9565549127098404 1.2425127607745539 1.3269437689496264 0.12015987016798549
0.988322690795138 1.2263133407513627 1.3544133422527282 -0.01242642942576359
1.0009008565964042 1.2309022576149153 1.4230064204967363 0.03245830656968581
0.97796619035228 1.2493772290752654 1.3468874473133683 -0.02525061222367192
1.0485821661838528 1.3155201517120243 1.3980602742468928 0.13686991578250324
0.9383735251564121 1.2545387261069627 1.2800399759427203 0.17471388955504893
1.0697549458092412 1.2123909653641403 1.3058822814436313 0.07787371816618156
1.0013014132479152 1.2195970764260413 1.4179430930627277 0.04128624750333272
1.027580280195659 1.3136423490699727 1.3477837758132187 0.05894378509180336
0.9332733068204432 1.2714018973677685 1.3414245608274673 0.013271279027735627
0.9069932766998927 1.2408411080791124 1.340670497901391 0.0443766587423708
1.056270466778336 1.2588896874715656 1.274131563987294 0.057360924121343144
0.9835841559407918 1.3312060029064465 1.4149559490594834 0.04719451528692527
1.0358281191223655 1.1756649306275908 1.3437798277274484 0.06785621073537354
0.9948799641963388 1.242085643356229 1.326626690091899 -0.12637540271518527
0.9768394922124642 1.3597996156681007 1.25610332503618 0.0034628625913732565
1.039236103914442 1.184253149970268 1.323279926173227 0.09118086813153095
1.1067829211440754 1.2182308452946269 1.3237711478291503 0.09266734044413179
1.0025032874754949 1.2212756069268063 1.386629107280545 5.849348904027809E-4
1.089046859707167 1.2287885766618365 1.4136316701475282 -0.09249662966191419
1.0504171924185515 1.1695803463537573 1.3763472140213622 -0.03554139375035041
1.070761121390641 1.3128143708057693 1.3320707488980075 -0.1210133330222548
1.0603173257545706 1.3096201404180245 1.3608184082454933 0.10295010540043734
1.02232706639976 1.314386248128018 1.2830017138759164 0.07544068454332829
0.9716387158818983 1.2714456426821819 1.4101974331581153 -0.06991597427686859
1.0860769461970095 1.2487330181128067 1.3357842771528854 0.006559339192564683
0.9773594666059318 1.2681943205511623 1.3168973166907099 0.050749929469273015
1.0630299728303942 1.2367245470280677 1.4192977529464812 -0.043473464220341054
1.0498389755637252 1.2304966164067541 1.392973987759978 0.07956156081764977
1.0823258018942334 1.3388400669127056 1.3007280881309848 -0.03312462173473307
1.0709234352754946 1.3024828675099231 1.4256362051587752 0.0026392458622375606
0.9697331342867442 1.2520155626805787 1.434083921820508 0.03136601055323723
1.0466512593887964 1.287268607352537 1.3102541998705832 -0.018462505884583705
1.0084365571785807 1.249029997597803 1.354637498276406 0.08507581574939221
1.079947241464164 1.2364556434664076 1.3844116897037781 -0.02603337508837256
0.9914148097735903 1.2508787294537567 1.3607062284575946 -0.0334790157625707
0.9479984281587635 1.284547584750141 1.3920745966166121 -0.06541603961446404
1.0655400598358629 1.2464653296217656 1.3678753279996503 0.07286532693875826
1.0393029674925698 1.2671581650500021 1.342725220699846 0.08269180254064444
0.9948397114726258 1.2056230950993496 1.3454123489074632 -0.06902325084495689
1.1473345071096925 1.3509348179492642 1.468018325495805 0.12169256564146815
0.980699871377675 1.2042427470116126 1.4188281480047988 -0.05054208885059963
1.0821285409974652 1.3627418052247426 1.3737324979403047 0.024533238905798584
1.014821985969773 1.2887317714104383 1.3660632986719627 0.028286166991047246
1.089791014155698 1.2169539198674688 1.307578580775742 0.12122838437676405
0.9085987824346087 1.2424141108936408 1.2786135093240683 -0.05382830223091223
1.10148836593236 1.2851748918515968 1.3787900420347656 0.11726412769358749
1.0447212604429132 1.3076978397105374 1.3749021128932668 0.05823902049357129
1.0645916958412234 1.2588784067028151 1.3740287792701555 6.187863427142375E-4
1.0143175327650173 1.3014832861431032 1.4694357362697268 0.059371540268947816
1.0820466375899873 1.2877246436014773 1.3913340676544546 -0.0016667191977279342
0.9860348666869482 1.323057781774069 1.3561129727429946 0.03678308419097151
0.9888247574634158 1.2774322940378757 1.4129228888659255 -0.0329519952036756
0.9976083202657806 1.2770806882287355 1.3646204837763565 -0.08435424729878552
1.017966852917002 1.3235101900463908 1.4128240439176958 0.004993348884080673
1.0646623572164824 1.3008770733218422 1.2822222508789096 -0.08561788832909233
1.018251108130026 1.2496056744093498 1.3997791373159583 -0.011926006049713472
1.006511229882869 1.223247867383943 1.4088415674556534 0.09726207809569933
1.0197282078881886 1.3240594826620113 1.3816782480030398 0.02290506949907331
1.0549339886197944 1.280663079232263 1.440194082824224 0.0317734518908808
1.0374701484159536 1.2321983226536717 1.3018260122351144 -0.06034071265927839
0.9858178613824337 1.2155426794140525 1.3577540589140211 0.05423055707926573
0.9765456035593857 1.3342955897845823 1.4132002049272434 0.1922603861463423
1.0204014799625873 1.211916925865491 1.3272170453840157 -0.02735412331397938
1.0736429062664903 1.2674565274620329 1.3798769666544906 -0.026543722719933206
1.0432216469679216 1.2529109336227708 1.3991909905580955 0.08157787712362723
1.0342651621088916 1.2100849118895574 1.3575936895899807 0.06793488314992814
0.9795651913512442 1.290623416741592 1.4004956931998467 -0.11937843614056318
1.0332568656224597 1.2977473454491486 1.368457964547029 -0.03915351317097725
1.0228839725574914 1.262721601709272 1.4129887949068347 0.07287791213858161
1.0416072675762937 1.286110059919485 1.3727498039939077 -0.027262824528328913
0.9985933798841266 1.2220712869496015 1.308715780109342 -0.020499838047658855
0.9796134688549131 1.2091982892790776 1.3988847819011554 -0.043180926613181965
0.986906070573696 1.3272557282755253 1.2628056874800726 0.08688910870682413
1.0766751729347634 1.3191858737811974 1.4059440229121125 0.01678141942765714
1.048402557235964 1.3050832881119414 1.293975403499569 -0.04970571466530204
1.017632976747225 1.2277936093302875 1.35648937197058 0.028409391146682603
0.9835034386368726 1.2186471425288117 1.3274427888764537 0.0654337065624655
1.0224344430468906 1.2735976557782152 1.3912429761387402 -0.03493221538596845
1.0147579092103325 1.3228204629475495 1.3749729500954013 -0.06939944727606924
0.9696364918663434 1.3054955320276314 1.340436345609394 6.078558798972589E-5
1.0550913484335418 1.284651444008902 1.2730720506570892 -0.08586378564153785
1.0149100297255216 1.3099561874452137 1.284863263267681 -0.029210935261611472
0.9463311329289529 1.2571129990246463 1.3476062179601238 -0.06864622285295827
1.0917182448508 1.2926948123167978 1.3693031600265446 0.08981667895968552
1.0948636354337018 1.3431079664914587 1.3706232030788001 0.08356746867682997
1.0047011873913827 1.1476888717956615 1.3325744471256602 0.03784837182083613
0.9885907215317519 1.3343019575732402 1.4210929692555185 -0.12264375882557677
1.0123720860215992 1.242567472005597 1.4057207334447528 0.05317074580676184
1.0101858226043376 1.273674522527071 1.3757156526438756 -0.02217641552653792
1.0245672543341084 1.2183365547621434 1.3264680732670506 -0.04733908782060726
0.9914865658901055 1.3054063209729367 1.3236573217265726 0.010171536021792849
1.0194046722664285 1.1957128182023966 1.3880647809493003 -0.02503824385505483
0.9976074435056748 1.3183303646912707 1.2229168001000248 -0.09118959199792433
1.0170287086311354 1.157680432277136 1.3948181528197743 -0.022648748265179538
1.0939158212673683 1.3064994785359432 1.3827883989504306 0.04968215420394624
1.0830494667566373 1.2629485784432104 1.2953359040607948 -0.08001414113082102
1.06723784845836 1.2567827019811029 1.2849943097375793 -0.016634767601730525
1.004061993773621 1.260392141589726 1.3271687715578027 -0.023800371911747078
1.008884723967237 1.290031797843907 1.3092720701342964 0.17082222276809098
1.0132824498701754 1.311236140276717 1.3861453828805763 -0.046071295239022474
0.9941323198071014 1.2420100403793457 1.3127123223514428 0.009425687362241529
1.0286703490950744 1.316153708338922 1.4344181392032507 0.07298731857646468
1.0243691595315614 1.2610662927426313 1.4770271272475672 -0.030050567007018237
1.0511974667380946 1.2026548346979358 1.3269697242266418 0.07202705512952416
1.0867749240437288 1.377168390253162 1.3510167446354309 0.03283960636996271
1.0648383784335036 1.3003313177984586 1.2927215367202807 0.04525600071598041
1.0450607774785858 1.230698682911373 1.3739748724917753 0.00782860877132754
1.0032694726269946 1.2710897992358015 1.3706366922182305 -0.0248226341683717
1.0861715956432423 1.221517348428845 1.3098284452080202 0.05884427443405459
0.9929251029830344 1.25710527947414 1.3747975555374485 0.028378699101802823
0.993887036846187 1.3306866622443076 1.3329076657276377 -0.008849476130678739
1.0668759179347993 1.2143155701563335 1.3454970373518165 -0.10363286012564937
1.044667482529265 1.2274263482307126 1.364187694147663 -0.10304106433850789
0.9734959737415667 1.2487243859291466 1.3797103326929967 -0.07789493236017206
1.0596569763398709 1.2471772800284586 1.4078748871047173 0.07565590753160648
1.0453644367899115 1.281394580430563 1.429034530977198 -0.03986450715531677
1.0219562901364438 1.3080243939049947 1.3290211581208653 -0.06916722901021118
1.01311386593979 1.265948134738948 1.4070557985486134 0.0024106005927996684
1.0577124482708926 1.3475775746406742 1.3651505493948566 -0.023855527118200597
1.0722877747595676 1.2969313905199877 1.3607039793861442 0.06414565776857373
0.986190041110916 1.2858597315128455 1.3248005809763013 -0.020971712836442058
0.9875645618819417 1.2111715319601495 1.4001302655406378 -0.042288790127733476
0.984290699927426 1.2594015432818428 1.3268562292134374 0.09131389430638828
0.9363147432858714 1.1742263310343912 1.408737504577054 0.008234725635699028
1.0328106465389888 1.2453545138651014 1.327730788218783 -0.047967460226792186
1.0846652722331118 1.2852650353049904 1.3419159778480279 0.05637768673739528
1.029511289318933 1.2792796042618093 1.3372973195413103 0.04618353399916619
1.0668893116638904 1.2791259020907377 1.3036865974564664 0.0674121410636514
0.9897711928240216 1.2056340586343721 1.4747944476092523 0.007305204899176959
1.0358770902832706 1.3438856566341444 1.3535718899246265 -0.021532922249224956
1.05426392635326 1.1785580153866557 1.4192419149586626 -0.10905481448404497
0.9765589888615688 1.2883259449963713 1.4159482527517517 -0.010273690664750834
1.017849111827447 1.272794105180067 1.3065311570637268 0.06498784871710146
1.0265604054062296 1.3249512855417998 1.3989527437553455 0.08949289080506528
1.011768817330438 1.2799096597964033 1.31470472607761 0.059981638617626704
1.0799190495118172 1.277858190373321 1.451808769392386 0.08315557773056165
1.0627496799359144 1.2038860542827692 1.4038924975721874 -0.04578537830765364
1.0446081866132608 1.332720819757211 1.4031175648493255 0.033621321770404784
1.0375738990568621 1.3427601511542413 1.367968817911958 -0.07521674859095456
1.0796863246221617 1.368798855243636 1.3654709458895664 -0.022617202000769963
1.0981077118925666 1.3295552868353375 1.351459597147173 0.0576671684873128
0.9658322492721682 1.3049145878879527 1.3546956125249363 -0.004510471974444696
1.02205466745273 1.3140550087974454 1.3461756610157714 -0.051887429501677206
1.0039670619686534 1.3729948145617008 1.3298091534081413 -0.03763822316273975
1.0400741319396989 1.36623046274074 1.397908122467332 -0.00554800381842847
1.0036643285073465 1.3358741913175467 1.3719427928697179 0.13092712971310855
0.9931101066852699 1.289479302664025 1.3256639082238622 -0.03898920718804187
0.9985216180785973 1.2890128225945154 1.3638572711907075 0.056213688831664436
1.0347247297555853 1.2548076976638136 1.3295393438785357 0.016374748519129973
0.9569847934008614 1.2984012436441672 1.44071026933613 -0.01983960875650272
1.0526303848816774 1.2968206963353708 1.4134353570200437 0.03810732356141891
1.0021917013243904 1.2485274420558568 1.3466607226331482 0.06728169428837008
1.0402208974926626 1.3125572694548875 1.3323219350536952 0.05660243879726781
1.0001897273084186 1.3350383862184716 1.3359189265334126 0.08270970970894155
1.094690666889666 1.3153204973256918 1.2522902798138449 -0.041362586176587175
1.0553587516787195 1.1817459453347 1.3493635350150142 0.008814984097150168
0.9635079117072516 1.2884527734041982 1.2824307076635564 0.009378583323451546
0.9824082226207537 1.2345669787690878 1.4698312929058948 0.022368216696740544
1.0425328615631406 1.211286128406619 1.3832803936254416 -0.042143500028519514
1.0331521047340262 1.2992863708869151 1.3006952640655076 0.050054930754062206
1.0447267807751186 1.3631976970569466 1.3615441402621582 -0.1092924317866852
0.983827293416813 1.3651777167260486 1.329693488882338 0.07112222625376975
1.0622116848719159 1.2638578697519272 1.4226935623965937 0.01604709274612081
1.0179289611184261 1.2637076711299968 1.3293722971304667 0.14531441264783052
1.048718459858164 1.2397464978183923 1.3256239915442432 0.08504547738075376
1.0427419211782847 1.3978066956276716 1.3894888702711972 -0.01855859462215386
1.0223250217775741 1.2459910270576684 1.3886574224665573 0.004156504356142071
1.011445414259229 1.3506212611474215 1.3089895304091221 0.045287010939718125
0.9445462072195407 1.3205803893569223 1.283090899769086 -0.10077196136064834
1.0637660485330696 1.316510471446254 1.328318459785199 0.049042099815304
1.0377084398183365 1.2341769731930863 1.338559629590378 -0.0539774469250194
1.0146938501067604 1.2890777416862713 1.2736986903400167 -0.045453244949543926
0.9353354538485104 1.243098518026498 1.3117127669175481 0.06714011478282762
0.9303208978575548 1.2410022443278335 1.4053535829144073 0.09301337265805874
0.9882210215518706 1.2252613096659708 1.3920425210130771 -0.024394917330308564
0.9947294039189232 1.2948898020471336 1.4287709842009069 -0.046496737421561546
1.0035737860612535 1.2707105552594335 1.420409447288898 -0.015488214212353461
0.9786043683082969 1.2806669217052864 1.3650021603018967 -2.3937457038977338E-4
1.106417345064438 1.34009961635518 1.3650631003552007 0.12498301088193606
0.9762734606418525 1.2789662110683533 1.4518050184708329 0.07187414678797036
0.9926848992780515 1.2325546215031253 1.3772306459629735 -0.03896269436527446
1.0418024396212522 1.2926912161790918 1.3910991345153492 0.0512742351792616
1.0671823937460858 1.3141169082791293 1.440413875557517 -0.017502625288285875
1.0808041092605598 1.3075828703091679 1.3467804588620682 0.0724607220642118
1.0063051779155965 1.3058258386601984 1.307708354462802 0.09761591408486912
1.0521693869409237 1.256520402155268 1.3126713460457688 0.0022161761307395327
0.9943321185245484 1.3527952891651054 1.3459503295454511 -0.09802254205718683
0.9879251493542044 1.3404126662211036 1.4645460096698113 0.1424969359853656
1.058013076871978 1.263584417822934 1.3909315216120144 0.058219169941064956
0.9994639006592466 1.2032148167298833 1.348287472296528 0.04653910425477903
1.0156091092047512 1.321619841430887 1.2696056231991324 0.09340701698424693
1.0005421655266593 1.3284637204806131 1.4235880432599426 0.0923259171422035
0.9624007191048837 1.3225655138835573 1.284500991067191 0.010990226284662527
1.038957190895774 1.244918783143655 1.3628194250521954 -0.06927096613858812
0.9844731545810272 1.2342984945007092 1.3183469229717306 -0.08293056325708223
0.9748173933124591 1.3001083057145109 1.3732674049599543 0.08466758167982578
1.0688448075707546 1.354735533416747 1.327142168363536 -0.01219254905407854
1.0972534583211615 1.301120203154489 1.3156423564207995 0.07575500612499234
1.0775945336588202 1.2933412555342765 1.4606399935709624 -0.13737921994558333
1.0114564782245674 1.3365885956643146 1.4548090512390093 -0.04168323223868815
0.9468194197706812 1.2879995895233525 1.283231349925693 -0.005760389378245067
1.0933110105445036 1.247812474065957 1.3338141658111304 -0.038861763083294865
0.9735872397844654 1.2231941719028614 1.4152921250244759 -0.04526175184024937
1.0451333025681346 1.3238948469676488 1.3977457137916944 0.10369381184070064
0.9901192106494425 1.2291247367162135 1.4033645106501893 -0.03528084805608777
1.0339318700953084 1.2967067694156889 1.3500241725294946 0.018405482040266864
1.082093541367725 1.3174758088811376 1.3640899132701476 -0.015079582343338947
1.029398256950115 1.286092117235309 1.363315667350205 0.019451232444468097
0.9563065631586468 1.2953358952493472 1.3894887190566259 0.020863862926808623
1.0311856945763311 1.3000090252485716 1.3429449385969352 0.09803350609041171
1.014645790243033 1.1880090383928037 1.39718832559181 -0.013997443386277411
1.030614299462884 1.247511575479433 1.319130486953193 0.11664081540200436
1.0226784351817357 1.2931388368591983 1.4484558405468115 -0.07781552878018232
1.0261675281572014 1.3362312449111007 1.4294345127544275 0.08855082293225881
1.1557707021807873 1.3361167300134509 1.3836234091833597 -0.034833887729710834
0.962834463657786 1.3776617685258603 1.4871479368364076 0.026519281176697686
1.0188483353599642 1.291644248585023 1.4140551627014146 -0.07229544994619434
1.0435808941475866 1.2050431593611775 1.3994219904575018 0.06058703340784022
1.0137776319954261 1.3199658069255948 1.4277498963448 0.09080124353576402
1.0191760106500836 1.359961506912257 1.3140788171230173 0.05708543188355919
1.042488721477108 1.2228153229798324 1.3415802520414042 -0.037427372409396066
1.0865032711125109 1.2727028188993945 1.3147637191538992 0.015404272526780895
1.081021470220797 1.2665705077894431 1.4501992455620687 0.045494749561282466
0.9791154249527314 1.3411175095005263 1.3002397361447666 -0.05314121525439538
0.9647482498718877 1.2929040857902017 1.427477555320213 -0.053208448813883126
1.0670929723918463 1.2500447010239664 1.4285690266021174 0.08834487533689635
1.092833779763913 1.3614251598761076 1.3343623671997316 -0.04036174493767102
0.9359808528832235 1.2895242970308771 1.4153200829431143 -0.015569474127865282
1.071547738258435 1.339274326019796 1.3161907990005006 -0.016302041914372952
1.0181083381210854 1.2998407346588179 1.3342126826463323 -0.012867935217898207
1.043125133717998 1.3343525909916572 1.4444423518857286 0.15072415422291952
0.9715410811440436 1.3844375509906655 1.3540554831604221 0.05727997631653822
1.0552010476056621 1.243186911358186 1.299807535540072 -0.002812835818038811
1.062667330465534 1.2558420994046204 1.406970768907201 -0.05570300308536423
1.045617414815793 1.2899938671077666 1.4019931681224416 0.05017903133596283
1.1272682000148593 1.267994616243189 1.3550978665450297 0.010711684035488035
0.9993355083688187 1.275689168408329 1.3691211850475697 0.040509420352342534
1.0511176291337723 1.2572506160422474 1.3970278537364216 0.03966722540237318
1.0723202389090514 1.2685417975793536 1.4232250049595454 0.09003381957107491
1.036157254330532 1.265874648886858 1.4182408618584605 -0.045255871776753345
0.9676857752761576 1.353710431360899 1.4008223501610604 0.005024880183913508
1.0966038441667723 1.273040937177805 1.225712478881514 0.05961180742543356
0.968387332997067 1.2615611410478058 1.3731564415247988 0.0198848254973829
1.0464268120644562 1.2969278903312025 1.3888691785368097 -0.027110993903784665
1.0268510511315847 1.240348800007094 1.3708800293265042 0.02354637058755879
0.9812822681113217 1.3490573538588588 1.3825916984671673 0.09717000044043272
0.9991429143118786 1.2303545564743843 1.2809973725850465 -0.005248806784069797
0.9634823358657163 1.378839092669208 1.4239297362828323 -0.0227702576789909
1.0201646044724515 1.2440096428789629 1.389947071144721 0.07049434203166423
1.0215363237515114 1.3047384062776104 1.3303885987893018 -0.0010012259069468348
1.0301983581924348 1.2828247421827639 1.3420460606775466 -0.08062516743314455
0.9415411174125535 1.303739492457668 1.31361367295889 0.042484545766835316
1.0500119700559591 1.2468085132673647 1.3297872854027029 -0.007538521235092881
0.9948175349676942 1.364020314968002 1.4472542420620162 -0.01681055048801051
1.0249982012687369 1.2716580015497738 1.3771379686971834 0.01757502451795866
1.0668096566774807 1.2167123135457125 1.3912733467525824 -0.032392516123625245
0.9783314113041272 1.287210828316461 1.3752879513874792 -0.0960702297672103
1.0620873749914967 1.2875276810593743 1.2121271239004243 0.044100156560353404
0.9622231107294217 1.3276582078756543 1.232214274418552 -0.02223255927336826
1.022119562762745 1.3787888472404537 1.423793998338785 -0.004166870526177352
1.0440316763640332 1.2958607397783668 1.4203124349483427 0.08532184645895365
1.0078727099331881 1.3148201434436517 1.3199047031965585 0.054701836774508614
1.0177759344453259 1.2356616200454464 1.3305809476716433 0.016863689156467306
1.0493507141103575 1.2957207215225597 1.3277149770095122 0.13261805494047857
1.028466092508126 1.3363283733636009 1.4662990448875006 -0.011492507890979662
1.0428990961538653 1.3406058451306022 1.3980610290562108 0.03952690725952869
1.0194217469399314 1.1789974780763557 1.2507057646334159 -0.09733606659343667
0.9416466891616114 1.3248771233635455 1.4039160156232142 -0.02369630714088737
1.019915130736418 1.3556654447904535 1.355050603288922 0.16919043916055876
0.9517029809530623 1.2955205804322012 1.3908266487188927 -0.012859793025867488
1.0178551136515765 1.208221554118685 1.3391609552482515 -0.0831235878072549
0.9949933112922283 1.280646166410341 1.397098767979679 -0.0016730496187543726
0.9979196914294606 1.2756988193081824 1.385637602702247 -0.06348538113387622
1.0412180692232929 1.2286233178407322 1.403466809277024 0.10439613094421336
1.0758751687568686 1.308559140044768 1.4803517519854872 -0.04738591574208521
1.0386647954230108 1.2761236517007122 1.2765296046121495 -0.07969540823963209
1.0393987805273543 1.3043957874610002 1.283630437148847 -0.0017271019394991423
1.0126632182228184 1.3591947322517919 1.38433577483647 0.0772270441697784
1.0386462866054589 1.298387909773403 1.3245731253696877 -0.06212610080804479
1.0459995774840525 1.33558252980871 1.4288332924758647 0.027560938007929622
0.9256250548697862 1.290477975644579 1.4087093692610801 0.12236602982035052
0.9776161698064121 1.357972276781495 1.3770816822475986 -0.034518859729131095
0.9767464038867459 1.2861050858645109 1.3776739065098362 0.14790220971413134
1.039814025571321 1.3145336177993658 1.3818902713663925 -0.018001221907622676
1.0878181196795667 1.282587196600315 1.345232153466513 0.14498010815135692
1.018471746871293 1.3380980929207253 1.4320191761371373 -0.04149724087075729
1.022866362555507 1.274343338899719 1.4390511047952383 -0.042337190645832495
0.9858014726495229 1.290003909662662 1.3653755124643057 -0.03511253219053029
1.0733715905893262 1.2546611436000872 1.3613284489360267 0.05748324457093321
0.9860258939003655 1.242820919318847 1.3677420009282821 -0.09896622807114364
1.0591863222367588 1.2697575556529481 1.3327252834282477 -0.061904131189608996
1.02620280790058 1.3523224477614957 1.348830266576453 -6.531520733855002E-4
1.102355722857021 1.3185577453134387 1.4266170226691692 0.0725030854917009
1.0546851654530522 1.2163653917375985 1.4074762301681765 0.0010168824033940172
0.9276202540237704 1.213363095937744 1.386705658215144 0.07609152334490217
1.050662632914606 1.3490485917667254 1.3741056315434033 0.06732392340990784
0.9697573330276128 1.29365045109143 1.3686828589566504 0.06640849983120604
1.0173603186286835 1.3700084068486726 1.358749440492197 0.024463391914975915
1.0284852336790349 1.2645835165677526 1.3102017260844703 -0.0843498734091196
0.9934377314888728 1.363818133309979 1.3170571823076869 0.011907999469010925
1.0004113179831569 1.2669963738782601 1.3542150849311732 0.061614445541981706
0.9778356108687059 1.2919054005923325 1.2764868495945192 -0.017064724556892275
1.0305159711413479 1.2243143126119385 1.3524475197737613 0.1939331609845871
0.9916586664848304 1.2790387558388112 1.3409222165743555 0.0015643643357239596
1.017434932521603 1.382946725823347 1.3514035831210562 0.024329476769747456
0.9810702514266424 1.3997476146791703 1.3666321713586964 0.07672869943981249
0.9491887925802117 1.288062535454105 1.3976699548036364 0.0541812702490841
1.0385153039124844 1.3049377976661594 1.4427671841960075 0.07202896962947683
1.0067925884295337 1.2024957177547244 1.3459202985778653 6.132058825318712E-4
0.9595504855481696 1.239468489149539 1.4513879132850085 0.06044638199268228
0.9996302094112157 1.3299365098249336 1.3915873291843806 0.05652138787339255
1.0570903906604272 1.3222121874073942 1.3324574286084914 -0.10482283578667287
1.0448909764449335 1.3056010010918948 1.3383415141993402 0.024104814303365536
1.0310911076754024 1.3590285800375839 1.354755597021816 -0.011589860518850184
0.9790055989217749 1.3272773006166285 1.3982400080845294 0.04902408494370825
1.08032750718716 1.2204027322383961 1.3806549275954847 0.04828967064366128
1.059847548890028 1.349501103761191 1.3527804909669265 0.012968020411056052
1.058724835823859 1.2875143629327208 1.3489356443222122 0.02758829935003804
1.024366697711094 1.3498342660201499 1.226142795460581 -0.03387577580532501
0.9557382569214952 1.3144467198081529 1.351022322589787 -0.046473772823422285
1.0212964797089779 1.336305353713402 1.3360038005926398 0.10304420182402746
1.0422579676528385 1.2957068710311483 1.3204003784394107 0.0023367186461825773
1.0093645232235025 1.3341142037225975 1.363769419937221 0.015834637357297947
1.005730025615522 1.3807868643280772 1.3078697299413125 0.017741032908130117
0.9836474801488236 1.3664350775894256 1.360903052122228 0.044113532651154586
0.9513166092432606 1.3510413128967758 1.3929893859020257 -0.07296663247146062
1.101515615465482 1.3229270736820975 1.428093263859617 0.009962904820251698
1.0376874119154103 1.259575662240774 1.3515425971382793 0.031103838084706268
1.0225755887990977 1.343748884790071 1.428620810370538 0.004091229238648148
1.0077399294909128 1.248614159516296 1.359883747753831 0.01871913352847993
0.9808182662347429 1.3265480817478303 1.3567408099894844 0.004288556724183848
1.0646399383445935 1.1976734892708207 1.3327456155600916 0.022322090945686462
1.0322949539133186 1.3633407941733167 1.3082113748959625 0.06847494257205429
1.02810465335958 1.2816458216838822 1.389586798711231 0.017320818425659898
0.937040591686018 1.30025504117951 1.3962569894348864 0.08504943503312408
1.018551390233899 1.3252759294036824 1.2927310662806009 0.03817897437261898
0.9982530728110041 1.274242159017282 1.436473248889456 -0.0015905903166875462
1.1393126503629298 1.3033394614086957 1.394118023150482 -0.04811783059037384
0.9839796774103805 1.3271985653547416 1.324776511910171 0.03395619181796499
1.031702164181611 1.3638282396705188 1.4002944866428049 -0.053536770613840205
1.1065578264900076 1.3753912610099468 1.3923204428410962 0.06331937138014984
0.9616251385803697 1.2666963311583148 1.4268757169342319 0.020386831744968987
0.9989507432954801 1.2629089158486355 1.4038651805829685 -0.0067065865437784915
1.1024983923285967 1.316964451179281 1.4283203461910328 -0.02450408194587087
1.0566972272425075 1.31804007564126 1.2629687168181327 -0.1318546924567484
1.073124684204142 1.390976402693617 1.4260972269410102 0.08021011382603462
1.0047020479830253 1.302257327940431 1.3147075348254111 0.12819561693890796
0.999858416868549 1.3506479134922968 1.2695660392326227 -0.11024660530157496
1.057942588902008 1.3775920566261373 1.3864766217309212 0.05608065356377665
1.0179582170989494 1.2631218558286603 1.342453849364703 2.8215848872569627E-4
0.992855080990654 1.2536056268763587 1.3576431371783304 0.04466369245772616
1.025983594616617 1.2907315590190842 1.39231405742543 0.03341904478749871
1.0293238114064605 1.2811304151735905 1.4292493699843365 0.023074608071821198
0.9530120985774495 1.312947439747789 1.3159366593671364 -0.004945332254640871
1.0469535907392546 1.3401155189326155 1.364626430241624 0.030241327752691557
0.9317948324533382 1.347342016457512 1.3086151866126048 0.09685757616712391
0.9686019829961253 1.354759167807855 1.38772267916576 0.11545256439284404
0.9788006303225825 1.2367305339828911 1.3455556018130088 0.08245387668798876
1.100187751449508 1.3199304054776746 1.37925529061005 -0.023369632516885046
1.059184723139794 1.2374187958905176 1.4105552458570796 -0.007237638986748503
0.9824153675854692 1.2850214495989118 1.3532337225081827 -0.03374370045557833
1.0469188231064448 1.326800431304339 1.35386036432312 0.07018443037091304
1.0056963885806451 1.3091918683722044 1.369495198594967 -0.07709679277970073
0.9560546270955778 1.2972282495605068 1.430280574892302 0.005396862402223439
0.9380954514153642 1.300370457194817 1.3011267464858285 0.014662191981540095
0.9679729689283175 1.3245537156780107 1.2646436334542024 0.0027137385865429716
1.0407570681211218 1.2654086037737853 1.3037659132890915 0.095385986329953
1.0477664572251926 1.3744758573163884 1.425866241392526 0.02969078884991834
1.0181459703866462 1.2834218988280557 1.347022851754607 0.042901394474355516
1.0077791367761837 1.340099235395195 1.2607749508769652 -0.005725106566588467
1.0655307890722931 1.3744917367123584 1.4625916848594305 0.049816032279969204
1.0362152982523185 1.3945876521316751 1.485181045228292 -0.0826540211016727
1.0632011061845938 1.3300131776439645 1.287741924784981 -0.14182716112744262
0.9947284039523793 1.3848045252172716 1.2525025809350923 0.07803104685163681
1.0615601014027523 1.308337405069415 1.384752641934893 0.026318360590180858
1.063913354514151 1.3847872888775001 1.3912048170190323 0.02489301349110444
1.0400732588019954 1.3678545783343665 1.4407136258555027 0.044215107899128775
1.0126177043522748 1.2636217178925033 1.3639096421349386 -0.04492638727389677
0.9633210898298464 1.3558281627035211 1.4251261249565976 0.03783189585691041
0.9890128730455395 1.3138530351952928 1.2619108143635793 0.12183209161178497
1.0110335518243836 1.1867780473032314 1.334924926962549 0.10676111691099065
0.9760117841420863 1.2980849393063403 1.422544081289589 0.015981868158842213
1.066763265635516 1.3134974083846243 1.4091822278884703 -0.0746384657542018
1.0160844573972658 1.3218776177913676 1.3669820868344826 0.04238327708583281
0.9989278965492039 1.2729325541125989 1.474920441111002 0.02116446566378718
0.9406783638904045 1.2975720202530325 1.3385153127720621 -0.03921718787063714
1.0656832133764031 1.3889891078623666 1.3869623861430114 0.07316479744881912
1.0338186958647795 1.3236619168077315 1.4045116366650514 -0.04463218555058553
1.032839019530579 1.4115612052864637 1.461823152816411 -0.08721739057830748
1.0449535465789637 1.2908276755665071 1.379421737107124 -5.944634203719321E-4
0.9857615256390111 1.3159818813468425 1.3067178512880235 0.02976006936742168
1.0734130470489083 1.325691057742724 1.4360220002231199 0.027361021929079198
0.9479736659998333 1.3380253715902903 1.3354812513017762 -0.045202876669201676
1.0368653346077186 1.2855722538683887 1.3981800357499183 0.13377680055268723
1.0103468714071404 1.2777998621318034 1.3870979687856602 -0.1142941807289395
1.0575275507841575 1.3951087485583515 1.3150561436552322 0.08112950277828736
1.0940789075594326 1.2387353691130827 1.4970276930856428 0.1437039093155516
1.0676041363125313 1.4047835885808186 1.4260349595970176 -0.03073573505902429
1.0686890395499626 1.298701231935048 1.2844272446004301 0.03518565417501285
1.0266807053130254 1.2789440371250556 1.4871968557180355 0.006230675110417107
0.98600457533781 1.3416576220069567 1.4212571300933803 0.012985713090778854
1.0079697291179321 1.3364089586158017 1.4557858168764801 -0.07993808788756293
1.067064693239461 1.3288686218577312 1.36042361752703 -0.024877028340813078
1.118347454161387 1.2595642278134132 1.357614678403581 0.06299165672511069
1.0405020400883755 1.3341336981271807 1.3116133119279287 0.005304806653238922
1.0261129564079539 1.3685509127982423 1.416704468342838 0.05095006377487998
0.9974197889918701 1.384560171825117 1.391657703108504 0.049916455701993434
1.0644932140787267 1.4060144958415044 1.408727404561972 0.09977750156067522
0.9961793474723099 1.2822806701971785 1.4231593392229522 0.008512736757351466
1.0373821578443865 1.277936033809757 1.3843794267736051 0.06693749231854312
1.026696980645344 1.2985054466526837 1.4178725424974838 0.06566858484369306
1.0311169576294301 1.2637528954678559 1.347908715935492 0.08456078190173923
1.026197602471485 1.333369085060582 1.3123586993676262 0.04387894014052327
1.0391320105880617 1.3061132533406614 1.4079181925093525 0.05679308512606525
1.0500927843445105 1.3113758431877898 1.3665521031081982 -0.023172851662869007
1.0524822274844516 1.378037062768874 1.3193230913584153 0.09081584866719593
1.0410011448424281 1.30750450007393 1.4433502885528802 0.0078106040666661
1.0481405457935713 1.4006303038712702 1.4759543577884633 -5.951748922869199E-4
0.9993395841339691 1.3041150643816048 1.4821606775769511 -0.033068537166121265
1.0492509184654957 1.3944032682711391 1.3339267836574529 0.02654190612504826
0.9795193815224364 1.3426033296755762 1.3505393879683225 0.08060285708308448
0.9637618499046812 1.3616940600796439 1.3670622169926412 -0.02657118255184656
1.061629119853509 1.2880501865499179 1.3771498740706196 0.0316194711457044
1.0262841753798673 1.3365184997165203 1.3061905503426814 -0.06642423580501057
0.9744953300457851 1.301831981966381 1.346821807323186 -0.020814045029927262
1.1423379978310093 1.330654288910854 1.3799174219485573 0.03882124004721456
1.0102353883238293 1.366442646034158 1.3932933547755613 -0.050176021332747664
1.0060613138394485 1.2649375753462848 1.2665864210197317 -0.04755019390009352
0.989760366240214 1.34500919667031 1.397769527430355 0.019334925017710575
1.0308088125577264 1.3584348294330766 1.396661712850873 -0.04942253129483319
0.9693039993711923 1.4088132811579555 1.3461847688819677 -0.04769452138516463
1.0413082031086909 1.2590419272926345 1.2903095502223805 0.11174380560501739
1.066893731393568 1.352026103748189 1.4186520237022957 -0.08061244760292943
0.9715804525914268 1.370461873060319 1.3484842767193879 -0.11321715311365947
0.9798100579524793 1.2697974598829969 1.3252508899267983 -0.04060381734090145
1.0529945926329758 1.2968264391134166 1.3412878719970198 -0.006419763024048666
0.9857563597250154 1.232808271928627 1.4514962368170479 -0.028482043906885458
1.0167188713143018 1.299719433067623 1.3873646033980116 0.09958056746838165
1.0816817029697663 1.3392249761117228 1.4677636259972087 -0.014874856181976932
0.9855865353990135 1.3304765878534897 1.320173939883872 -0.010155778599646892
0.9896909353526778 1.360495428928728 1.3838881644367145 -0.12863341310913914
0.9986859668021456 1.3267122868054135 1.3882905416507747 0.08261149524308393
0.9793861003851345 1.3462647778184194 1.3932150840266477 -0.10048511340865718
1.0350176923369923 1.3306220194054652 1.3839001802335706 -0.0410883242799405
1.0747779186223037 1.3174859879430416 1.3754650340291212 -0.12724548967960034
1.0865228768605086 1.2861676735259993 1.4304287404626128 -0.05291404878250405
0.9820739486526313 1.3123272453578134 1.4179006253226238 -0.0021613027559937836
0.9988765530078464 1.3407146300111399 1.420557178799717 -0.0631683699211755
1.009912231772054 1.322740067982853 1.4031201235010282 -0.012556051745056482
1.0597328522305207 1.4066688891496428 1.346366103569722 -0.08100700081320816
0.9878611376434634 1.3563892822268226 1.4276978866642862 0.04486727460494097
1.0617517916350334 1.3033502456456798 1.4531213406857255 0.09269855061307476
1.0393682447582349 1.3486792392829723 1.4299080519941858 0.056114796704446065
1.0117614402677109 1.3749321269558037 1.3579235434931753 -0.02868937861489346
1.0701117874293147 1.3305734943685148 1.4625826710047118 0.08727271692292171
1.0107821118549336 1.3700130602354066 1.3815203016692004 0.17583077806831654
1.007328747793664 1.3348088811007985 1.3885308575039483 0.032428185884952596
1.0528888073094527 1.3257191593490256 1.2940408398708771 -0.008629392701709024
0.9859943118061001 1.2858052324418523 1.3481326320887448 0.03766720434316351
1.0410610731843306 1.32646408760191 1.408289702675875 0.02512311515133692
0.9975022934428937 1.3814901360020275 1.2977809873683814 0.033640187366937906
1.0516075380115442 1.3722426033058122 1.3298000279790982 0.030582238324932683
1.0128730863305366 1.3726819197975395 1.3797720238956328 0.0302327588563019
0.9496515975560316 1.323444317332291 1.342407402851815 -0.0013274711141866972
0.9479994436486512 1.3173704880563708 1.4072406224239256 -0.07676139270089381
1.0509858111389454 1.359807008697348 1.3253303759010642 0.10755594200004091
1.0612973474573721 1.4102937130900872 1.3604699993595284 0.00953955926254206
1.0546308856513011 1.4279862884667778 1.3059385084225945 0.057882518663553116
1.0482003868675949 1.376170440507235 1.4149204998062508 0.05716176656943371
0.976662457783979 1.2834417932864541 1.3547052943901705 0.1279552641152705
1.0451667143636805 1.388665101208297 1.253458770603483 0.018313139554639885
0.9834574249407639 1.3343771106993108 1.333931202610621 -0.06137501843417329
0.9642293579573171 1.243812241171262 1.3488590047671607 -0.06498699065965866
0.9117219189085388 1.3359010041543624 1.361413408440722 0.028556209069380355
1.0250638139748727 1.3971026291167667 1.391714775902727 0.074440287042664
1.009556868663592 1.323651407179038 1.3976698218826842 -0.029047090242575492
0.9540167674476816 1.3116322415236845 1.3760739052310995 -0.07280627171902547
1.0056873956583068 1.3004192935393415 1.3787550449761237 0.06105287164922697
1.0474857870417134 1.3555450029231644 1.352125372835882 0.07097800842412282
0.9790050876546068 1.329103102981962 1.3013816272736405 -0.03778541512235666
0.9887991027287726 1.321481882537697 1.3417333815337111 0.10260951968276363
1.0676289373936887 1.3182422296576923 1.3932442534825258 0.04410067117140666
1.0156599160436381 1.2788740078416259 1.4064760255740223 -0.05916907687215169
1.023464793802834 1.3724270247636787 1.369495009661065 -0.07957354342445404
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment